From: Kwpolska Date: Sat, 20 Jul 2013 11:39:50 +0000 (+0200) Subject: session object should be uppercase X-Git-Tag: 2.0~16^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b738c97ec38c672a61ad91fe17405f18a4b80fbe;p=services%2Fpython-requests.git session object should be uppercase Signed-off-by: Kwpolska --- diff --git a/docs/user/advanced.rst b/docs/user/advanced.rst index de9beaa..7ed12a8 100644 --- a/docs/user/advanced.rst +++ b/docs/user/advanced.rst @@ -13,7 +13,7 @@ The Session object allows you to persist certain parameters across requests. It also persists cookies across all requests made from the Session instance. -A session object has all the methods of the main Requests API. +A Session object has all the methods of the main Requests API. Let's persist some cookies across requests:: @@ -27,7 +27,7 @@ Let's persist some cookies across requests:: Sessions can also be used to provide default data to the request methods. This -is done by providing data to the properties on a session object:: +is done by providing data to the properties on a Session object:: s = requests.Session() s.auth = ('user', 'pass')