Update documentation for API.lists_all
authorHarmon <Harmon758@gmail.com>
Wed, 4 Sep 2019 06:18:45 +0000 (01:18 -0500)
committerHarmon <Harmon758@gmail.com>
Wed, 4 Sep 2019 06:18:45 +0000 (01:18 -0500)
docs/api.rst

index fe139456ce41ff2ebbd9eb9023499e2b76082f5e..fd775482352ae8bc1493995118c4395a46a39d68 100644 (file)
@@ -811,12 +811,20 @@ List Methods
    :rtype: :class:`List` object
 
 
-.. method:: API.lists_all([cursor])
+.. method:: API.lists_all([screen_name], [user_id])
 
-   List the lists of the specified user. Private lists will be included if the
-   authenticated users is the same as the user who's lists are being returned.
+   Returns all lists the authenticating or specified user subscribes to,
+   including their own. The user is specified using the ``user_id`` or
+   ``screen_name`` parameters. If no user is given, the authenticating user is
+   used.
 
-   :param cursor: |cursor|
+   A maximum of 100 results will be returned by this call. Subscribed lists are
+   returned first, followed by owned lists. This means that if a user
+   subscribes to 90 lists and owns 20 lists, this method returns 90
+   subscriptions and 10 owned lists.
+
+   :param screen_name: |screen_name|
+   :param user_id: |user_id|
    :rtype: list of :class:`List` objects