From 340931ba8edbbfcd3bc7def1bebc989650b6d05d Mon Sep 17 00:00:00 2001 From: Julien Bouquillon Date: Wed, 29 May 2013 12:57:49 +0300 Subject: [PATCH] Update quickstart.rst rephrase misleading info about `raise_for_status` --- docs/user/quickstart.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user/quickstart.rst b/docs/user/quickstart.rst index cb4ef579..1e365871 100644 --- a/docs/user/quickstart.rst +++ b/docs/user/quickstart.rst @@ -260,7 +260,7 @@ reference:: >>> r.status_code == requests.codes.ok True -If we made a bad request (non-200 response), we can raise it with +If we made a bad request (a 4XX client error or 5XX server error response), we can raise it with :class:`Response.raise_for_status()`:: >>> bad_r = requests.get('http://httpbin.org/status/404')