remove the jar references
authorKenneth Reitz <me@kennethreitz.com>
Thu, 10 Nov 2011 05:36:34 +0000 (21:36 -0800)
committerKenneth Reitz <me@kennethreitz.com>
Thu, 10 Nov 2011 05:36:34 +0000 (21:36 -0800)
docs/user/advanced.rst
docs/user/quickstart.rst

index d3e62dcdb4c83397200c808fd07d707fc38d549c..34c934a392d1e6462284e2111bd390c9527f0700 100644 (file)
@@ -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.
 
index 17e503a2262a9a0880eea32fc99b6fba89b2af8d..93feb4d7ea0528aed26c16e38e936dad308e4fed 100644 (file)
@@ -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
-    <cookielib.CookieJar>
-
 To send your own cookies to the server, you can use the ``cookies``
 parameter::