From fad1c665a640701c588924f8c9606f69b0662322 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 9 Nov 2011 21:36:34 -0800 Subject: [PATCH] remove the jar references --- docs/user/advanced.rst | 4 ++-- docs/user/quickstart.rst | 5 ----- 2 files changed, 2 insertions(+), 7 deletions(-) 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:: -- 2.7.4