From: Ian Cordasco Date: Tue, 23 Sep 2014 02:08:29 +0000 (-0500) Subject: Correct redirection introduction X-Git-Tag: v2.4.2~9^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=671ba85d410febab91ac580eab8282a485c89108;p=services%2Fpython-requests.git Correct redirection introduction The history attribute contains responses, not requests. Thanks to Yang Yang for reporting this to me via email --- diff --git a/docs/user/quickstart.rst b/docs/user/quickstart.rst index 1a4b271..1e852c9 100644 --- a/docs/user/quickstart.rst +++ b/docs/user/quickstart.rst @@ -369,9 +369,9 @@ HEAD. We can use the ``history`` property of the Response object to track redirection. The :meth:`Response.history ` list contains the -:class:`Request ` objects that were created in order to +:class:`Response ` objects that were created in order to complete the request. The list is sorted from the oldest to the most recent -request. +response. For example, GitHub redirects all HTTP requests to HTTPS::