X Tutup
Skip to content

Commit b96b007

Browse files
committed
adds migration docs for changes to LookupFriendship
1 parent a19786e commit b96b007

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

doc/migration_v30.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ Changes to Existing Methods
3535
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
3636
* No longer accepts ``cursor`` parameter. If you require granular control over the paging of the twitter.list.List members, please user twitter.api.Api.GetListMembersPaged instead.
3737

38-
3938
:py:func:`twitter.api.Api.GetSearch`
4039
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
4140
* Adds ``raw_query`` method. See :ref:`raw_queries` for more information.
@@ -44,6 +43,13 @@ Changes to Existing Methods
4443
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
4544
* Parameter 'stall_warning' is now 'stall_warnings' in line with GetStreamFilter and Twitter's naming convention. This should now actually return stall warnings, whereas it did not have any effect previously.
4645

46+
47+
:py:func:`twitter.api.Api.LookupFriendship`
48+
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
49+
50+
* Method will now accept a list for either ``user_id`` or ``screen_name``. The list can contain either ints, strings, or :py:mod:`twitter.user.User` objects for either ``user_id`` or ``screen_name``.
51+
* Return value is a list of :py:mod:`twitter.user.UserStatus` objects.
52+
4753
:py:func:`twitter.api.Api.PostUpdate`
4854
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
4955
* Now accepts three new parameters: ``media``, ``media_additional_owners``, and ``media_category``. ``media`` can be a URL, a local file, or a file-like object (something with a ``read()`` method), or a list of any combination of the above.

0 commit comments

Comments
 (0)
X Tutup