diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/index.rst | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/docs/index.rst b/docs/index.rst index cdd03ee..120828e 100644 --- a/docs/index.rst +++ b/docs/index.rst | |||
@@ -104,10 +104,8 @@ The responses returned by paginated endpoints contain a "link" header that speci | |||
104 | which parameters to use to get the next and previous pages. Mastodon.py parses these | 104 | which parameters to use to get the next and previous pages. Mastodon.py parses these |
105 | and stores them (if present) in the first (for the previous page) and last (for the | 105 | and stores them (if present) in the first (for the previous page) and last (for the |
106 | next page) item of the returned list as _pagination_prev and _pagination_next. They | 106 | next page) item of the returned list as _pagination_prev and _pagination_next. They |
107 | are accessible only via attribute-style access, and are not considered in determining | 107 | are accessible only via attribute-style access. Note that this means that if you |
108 | dict equality (meaning their presence will not affect any tests of wheter two dicts | 108 | want to persist pagination info with your data, you'll have to take care of that |
109 | are the same, or whether a specific dict is in a list). Note that this also means that | ||
110 | if you want to persist pagination info with your data, you'll have to take care of that | ||
111 | manually (or persist objects, not just dicts). | 109 | manually (or persist objects, not just dicts). |
112 | 110 | ||
113 | There are convenience functions available for fetching the previous and next page of | 111 | There are convenience functions available for fetching the previous and next page of |