From: Kenneth Reitz Date: Thu, 10 Nov 2011 05:36:34 +0000 (-0800) Subject: remove the jar references X-Git-Tag: v0.8.0~43 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fad1c665a640701c588924f8c9606f69b0662322;p=services%2Fpython-requests.git remove the jar references --- diff --git a/docs/user/advanced.rst b/docs/user/advanced.rst index d3e62dc..34c934a 100644 --- a/docs/user/advanced.rst +++ b/docs/user/advanced.rst @@ -10,8 +10,8 @@ Session Objects --------------- The Session object allows you to persist certain parameters across -requests. It also establishes a CookieJar and passes it along -to any requests made from the Session instance. +requests. It also perstists cookies across all requests made from the +Session instance. A session object has all the methods of the main Requests API. diff --git a/docs/user/quickstart.rst b/docs/user/quickstart.rst index 17e503a..93feb4d 100644 --- a/docs/user/quickstart.rst +++ b/docs/user/quickstart.rst @@ -122,11 +122,6 @@ If a response contains some Cookies, you can get quick access to them:: >>> print r.cookies {'requests-is': 'awesome'} -The underlying CookieJar is also available for more advanced handling:: - - >>> r.request.cookiejar - - To send your own cookies to the server, you can use the ``cookies`` parameter::