Link Python keywords with Python's documentation

This commit is contained in:
Lonami Exo
2019-07-06 12:10:25 +02:00
parent 42d5c0fe6d
commit 8e36bb4c4d
40 changed files with 238 additions and 238 deletions

View File

@@ -23,7 +23,7 @@ class RequestIter(abc.ABC):
be more efficient and fetch only as many items as they need.
Iterators may be used with ``reversed``, and their `reverse` flag will
be set to ``True`` if that's the case. Note that if this flag is set,
be set to `True` if that's the case. Note that if this flag is set,
`buffer` should be filled in reverse too.
"""
def __init__(self, client, limit, *, reverse=False, wait_time=None, **kwargs):
@@ -124,7 +124,7 @@ class RequestIter(abc.ABC):
It should extend the `buffer` with new items.
It should return ``True`` if it's the last chunk,
It should return `True` if it's the last chunk,
after which moment the method won't be called again
during the same iteration.
"""