From: Julien Bouquillon Date: Wed, 29 May 2013 09:57:49 +0000 (+0300) Subject: Update quickstart.rst X-Git-Tag: 2.0~19^2~14^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=340931ba8edbbfcd3bc7def1bebc989650b6d05d;p=services%2Fpython-requests.git Update quickstart.rst rephrase misleading info about `raise_for_status` --- diff --git a/docs/user/quickstart.rst b/docs/user/quickstart.rst index cb4ef57..1e36587 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')