Minor docstring fixes

This commit is contained in:
Tyler Hobbs
2014-05-07 11:37:32 -05:00
parent 6b592536e9
commit 4a702209fd

View File

@@ -2516,8 +2516,8 @@ class ResponseFuture(object):
class QueryExhausted(Exception): class QueryExhausted(Exception):
""" """
Raised when :meth:`.ResultSet.start_fetching_next_page()` is called and Raised when :meth:`.ResponseFuture.start_fetching_next_page()` is called and
there are no more pages. You can check :attr:`.ResultSet.has_more_pages` there are no more pages. You can check :attr:`.ResponseFuture.has_more_pages`
before calling to avoid this. before calling to avoid this.
""" """
pass pass
@@ -2538,7 +2538,7 @@ class PagedResult(object):
... process_user(user_row) ... process_user(user_row)
Whenever there are no more rows in the current page, the next page will Whenever there are no more rows in the current page, the next page will
be fetched transparently. However, note that it _is_ possible for be fetched transparently. However, note that it *is* possible for
an :class:`Exception` to be raised while fetching the next page, just an :class:`Exception` to be raised while fetching the next page, just
like you might see on a normal call to ``session.execute()``. like you might see on a normal call to ``session.execute()``.
""" """