Correct docstring for Response.ok

This commit is contained in:
Ian Cordasco
2017-02-16 07:15:37 -06:00
parent e674aa1c8c
commit 7a281e74ec
+7 -1
View File
@@ -672,7 +672,13 @@ class Response(object):
@property
def ok(self):
"""Returns true if :attr:`status_code` is 'OK'."""
"""Returns True if :attr:`status_code` is less than 400.
This attribute checks if the status code of the response is between
400 and 600 to see if there was a client error or a server error. If
the status code, is between 200 and 400, this will return True. This
is **not** a check to see if the response code is ``200 OK``.
"""
try:
self.raise_for_status()
except HTTPError: