Adjust docstring for sync/async Paginator
authorLanqing Huang <lqhuang@outlook.com>
Tue, 25 Oct 2022 02:29:39 +0000 (10:29 +0800)
committerLanqing Huang <lqhuang@outlook.com>
Tue, 25 Oct 2022 02:29:39 +0000 (10:29 +0800)
tweepy/asynchronous/pagination.py
tweepy/pagination.py

index 59d5596b5f45ecd11648df4536dd59196d587b00..94aff26d81f507cdd907ce26280c49ac3281e19a 100644 (file)
@@ -13,8 +13,6 @@ class AsyncPaginator:
     """:class:`AsyncPaginator` can be used to paginate for any
     :class:`AsyncClient` methods that support pagination
 
-    .. versionadded:: 4.11
-
     .. note::
 
         When the returned response from the method being passed is of type
@@ -22,6 +20,8 @@ class AsyncPaginator:
         the pagination tokens, likely negating any potential performance
         benefits from using a :class:`aiohttp.ClientResponse` return type.
 
+    .. versionadded:: 4.11
+
     Parameters
     ----------
     method
index fd4d95e746ad369aa60b3ded0421a7972ba2d999..91abc8d6774a0fc53753145ca0ae8abfc7dec52c 100644 (file)
@@ -13,8 +13,6 @@ class Paginator:
     """:class:`Paginator` can be used to paginate for any :class:`Client`
     methods that support pagination
 
-    .. versionadded:: 4.0
-
     .. note::
 
         When the returned response from the method being passed is of type
@@ -22,6 +20,8 @@ class Paginator:
         the pagination tokens, likely negating any potential performance
         benefits from using a :class:`requests.Response` return type.
 
+    .. versionadded:: 4.0
+
     Parameters
     ----------
     method