summaryrefslogtreecommitdiff
path: root/requests/cookies.py
Commit message (Expand)AuthorAgeFilesLines
* preserve python2-like dict API for RequestCookieJarKonstantin Podshumok2013-12-181-13/+4
* fix regression with cookiejar.iteritems()Konstantin Podshumok2013-12-181-11/+29
* cookies: Fix bugs found during CIMichael Becker2013-12-061-1/+2
* cookies: Take a less cowardly approachMichael Becker2013-12-061-20/+17
* cookies: Replace type checks with try/exceptMichael Becker2013-12-061-1/+3
* remove unnecessary trydaftshady2013-11-261-5/+2
* double try statementdaftshady2013-11-261-2/+2
* update 'merge_cookies' not to create new instance.daftshady2013-11-261-7/+11
* modified 'merge_cookies' and update tests.daftshady2013-11-261-4/+7
* update 'merge_cookies'daftshady2013-11-261-3/+2
* added new method 'merge_cookies' and use it when merging session cookies with...daftshady2013-11-261-0/+19
* Small fix broken cookie parsenonm2013-11-181-1/+1
* Merge pull request #1660 from sigmavirus24/parse-cookies-when-users-set-host-...Kenneth Reitz2013-11-061-2/+13
|\
| * Fix typoIan Cordasco2013-10-111-1/+1
| * Comment our reasonsing for the special casesIan Cordasco2013-10-101-0/+4
| * Parse cookies when users set custom Host headerIan Cordasco2013-10-071-2/+9
* | added param to cookiejar_from_dict instead of creating new method.daftshady2013-09-291-18/+8
* | Fixed #1630daftshady2013-09-281-0/+16
|/
* Skip cookie extraction if necessaryIan Cordasco2013-08-161-0/+3
* Provide 'host' parameter to MockRequest.Cory Benfield2013-07-301-0/+4
* keep the double quotes, but don't escape themFlavio Curella2013-07-011-1/+1
* unquote double-quotes cookie valuesFlavio Curella2013-07-011-0/+5
* cookies.morsel_to_cookie morsel['expires'] can't be strtime, and max-age conv...wasw1002013-06-071-1/+10
* cookies.morsel_to_cookie(morsel) raise TypeError repaired.wasw1002013-06-061-4/+0
* Attempt a fix for @michaelhelmickIan Cordasco2013-05-201-0/+4
* Make sure session cookies do not overwrite explicit request cookiesChase Sterling2013-02-161-2/+4
* Remove ability to from RequestCookieJar __getitem__, __setitem__ to use cooki...Chase Sterling2013-02-141-4/+0
* Allow RequestsCookieJar to be updated with cookies from a CookieJarChase Sterling2013-02-141-0/+8
* Test and perfection for cookie handling.Ian Cordasco2013-02-101-0/+6
* nice and cleanupKenneth Reitz2012-12-171-7/+2
* cleanupKenneth Reitz2012-12-171-2/+2
* cookiesKenneth Reitz2012-12-151-1/+1
* MockRequest needs a type property for Py3.3Cory Benfield2012-11-171-1/+2
* Making the code more PEP8 compliantRadu Voicilas2012-10-091-6/+4
* declare the encodingtokuda1092012-10-091-0/+2
* Update: @property decorator instead of __getattr__yegle2012-10-091-3/+3
* Python 3.3 compatible updateyegle2012-10-091-0/+4
* Whitespace fixes following PEP8.Locker5372012-08-161-10/+20
* Send the original response url to `urlparse` rather than the `Response` objec...ig07742012-06-081-1/+1
* Removed print statements left over from debugging.Josh Imhoff2012-05-211-2/+0
* Wrote tests for new CookieJar functionality and made them pass.Josh Imhoff2012-05-211-23/+38
* In cookies.py, CookieConflictError is now thrown if there is more than one co...Josh Imhoff2012-05-211-19/+18
* Docstrings and bug fixes in cookies.pyJosh Imhoff2012-05-211-4/+36
* Defined keys(), values(), and items() in order to support dict-like client in...Josh Imhoff2012-05-181-0/+58
* Merge pull request #603 from benmao/developKenneth Reitz2012-05-101-1/+1
|\
| * get cookie like dict, such as self.cookies.get('test', 'no cookie')ben2012-05-101-1/+1
* | New implementation of safe_mode. Now, we throw exceptions in models.py regard...Josh Imhoff2012-05-091-7/+4
|/
* add Python 3 compatibilityShivaram Lingamneni2012-05-011-2/+2
* clarified documentation from e-mail discussionShivaram Lingamneni2012-05-011-8/+14
* fix usage of compat.urlparseShivaram Lingamneni2012-05-011-3/+3