History log of /external/python/cpython2/Lib/cookielib.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
2d2e6be39a06a96e877b13f00acb85b01eb93bca 10-Jul-2016 Senthil Kumaran <senthil@uthcode.com> [port to 2.7] - Issue #27466: Change time format returned by
http.cookie.time2netscape, confirming the netscape cookie format.
/external/python/cpython2/Lib/cookielib.py
c72e66a0489ee53aaf89c677c5b709d30b359532 02-Nov-2015 Serhiy Storchaka <storchaka@gmail.com> Issue #25523: Backported a-to-an corrections.
/external/python/cpython2/Lib/cookielib.py
f249671d023d2529841f21294dc002273beb6f2f 13-Mar-2015 Serhiy Storchaka <storchaka@gmail.com> Issue #23138: Fixed parsing cookies with absent keys or values in cookiejar.
Patch by Demian Brecht.
/external/python/cpython2/Lib/cookielib.py
fc1ae6c67358a1937e0bdbefd106d2c1a673182e 22-Jul-2014 Serhiy Storchaka <storchaka@gmail.com> Fixed bugs in reprs of CookieJar and multiprocessing.dummy.Value.
/external/python/cpython2/Lib/cookielib.py
06efea3392e54b50f66e790735837e092585350f 26-Feb-2012 Éric Araujo <merwok@netwok.org> Use raw strings for docstrings with backslashes in ASCII diagrams
/external/python/cpython2/Lib/cookielib.py
1e87da16eac24f6e0fb6908906ab6400ce583fa0 19-Oct-2011 Ezio Melotti <ezio.melotti@gmail.com> Remove duplication.
/external/python/cpython2/Lib/cookielib.py
2a91ce8960d98fe2c98936a73d5e0e7a24856824 25-Jul-2010 Gregory P. Smith <greg@mad-scientist.com> Fixes issue #3704: cookielib was not properly handling URLs with a / in the
parameters.
/external/python/cpython2/Lib/cookielib.py
a19baf58e648705edb99013aa5bd23f6a0b65c8c 22-May-2010 Georg Brandl <georg@python.org> Underscore the name of an internal utility function.
/external/python/cpython2/Lib/cookielib.py
5d0ca2c8323b39e392c0c0bd31340cc3e1113c97 22-May-2010 Georg Brandl <georg@python.org> Issue #3924: Ignore cookies with invalid "version" field in cookielib.
/external/python/cpython2/Lib/cookielib.py
88f801d40944960f5bc7e0b8631674371a100f90 18-Aug-2008 Brett Cannon <bcannon@gmail.com> Update __all__ for cookielib, csv, os, and urllib2 for objects imported into
the module but exposed as part of the API.
/external/python/cpython2/Lib/cookielib.py
52f03c5d20426abfd1105cc8b3f9408dddab0b13 04-Aug-2008 Brett Cannon <bcannon@gmail.com> Remove a use of list.sort(cmp=) to silence a -3 DeprecationWarning in
cookielib.
/external/python/cpython2/Lib/cookielib.py
f733abb7831d6566cb0fccd0550d58ec3b7f05a4 30-Jan-2007 Tim Peters <tim.peters@gmail.com> Whitespace normalization.
/external/python/cpython2/Lib/cookielib.py
29ff461c832c6677f89aa644893e4ff679393b61 19-Dec-2006 Andrew M. Kuchling <amk@amk.ca> [Patch #1587139 by kxroberto] Protect lock acquisition/release with
try...finally to ensure the lock is always released. This could use
the 'with' statement, but the patch uses 'finally'.

2.5 backport candidate.
/external/python/cpython2/Lib/cookielib.py
b678ce5aa67d890bb080df19fa35a232a19dac65 18-May-2006 Neal Norwitz <nnorwitz@gmail.com> Little cleanup
/external/python/cpython2/Lib/cookielib.py
feb0a3bdbccc7b45bc8b960aa4c3434838b52d05 17-May-2006 Georg Brandl <georg@python.org> Add global debug flag to cookielib to avoid heavy dependency on the logging module.
Resolves #1484758.
/external/python/cpython2/Lib/cookielib.py
e854e765f40a7af814fc9ba0c57b7877eaeb21f9 08-May-2006 Georg Brandl <georg@python.org> Patch #1478993: take advantage of BaseException/Exception split in cookielib
/external/python/cpython2/Lib/cookielib.py
e58334ae9e4a635794ff0605f125eec459b9b98f 07-May-2006 Georg Brandl <georg@python.org> Patch #1483395: add new TLDs to cookielib
/external/python/cpython2/Lib/cookielib.py
536cf99536bce562cfcb44a856fac1c84b9de4c3 26-Dec-2005 Tim Peters <tim.peters@gmail.com> Whitespace normalization.
/external/python/cpython2/Lib/cookielib.py
71dad72ebe97e41394ff2969d9a2e45dcf197403 23-Dec-2005 Neal Norwitz <nnorwitz@gmail.com> SF patch #1157027, cookielib mis-handles RFC 2109 cookies in Netscape mode
/external/python/cpython2/Lib/cookielib.py
3e7de59bd2ac22f677f3a053ade22f44785f15f4 23-Dec-2005 Neal Norwitz <nnorwitz@gmail.com> Fix SF #1117398, cookielib LWPCookieJar and MozillaCookieJar exceptions

cookielib.LWPCookieJar and .MozillaCookieJar are documented to raise
cookielib.LoadError on attempt to load an invalid cookies file, but
raise IOError instead. Compromise by having LoadError subclass IOError.
/external/python/cpython2/Lib/cookielib.py
bc6a1953443deac59dc950f2f2b12c8b0a2e0338 04-Dec-2005 Andrew M. Kuchling <amk@amk.ca> [Bug #1372836] Remove unused code
/external/python/cpython2/Lib/cookielib.py
c5574e809b18d517f81e93542db76642662823cd 03-Mar-2005 Martin v. Löwis <martin@v.loewis.de> Patch #1117454: Remove code to special-case cookies without values
in LWPCookieJar. Backported to 2.4.
/external/python/cpython2/Lib/cookielib.py
4ea3eade518c6a48b0708736442deefe669fe287 03-Mar-2005 Martin v. Löwis <martin@v.loewis.de> Patch #1117339: Add cookielib special name tests.
Backported to 2.4.
/external/python/cpython2/Lib/cookielib.py
f715366f23f47832a4b9914c54d5a63b19f17eba 07-Feb-2005 Raymond Hettinger <python@rcn.com> Reduce the usage of the types module.
/external/python/cpython2/Lib/cookielib.py
dbecd93b7203cd187c1978de1207c29d3a9a686c 06-Feb-2005 Raymond Hettinger <python@rcn.com> Replace list of constants with tuples of constants.
/external/python/cpython2/Lib/cookielib.py
bab4143348f2185c1a9a778a281ef84d46307842 05-Feb-2005 Raymond Hettinger <python@rcn.com> SF patch #1116583: NameError in cookielib domain check
/external/python/cpython2/Lib/cookielib.py
2fa0b9d0bd7a6d2f72fd9eef51b720f59566e154 17-Oct-2004 Neal Norwitz <nnorwitz@gmail.com> Remove unnecessary imports
/external/python/cpython2/Lib/cookielib.py
ae40c2f795c038abbc5e6df05f050f3d8154c4a7 10-Jul-2004 Andrew M. Kuchling <amk@amk.ca> [Patch #969907] Add traceback to warning output
/external/python/cpython2/Lib/cookielib.py
504239fb38da8526bb48cf8b0778fe47e34554e5 01-Jun-2004 Martin v. Löwis <martin@v.loewis.de> Silence noise in regrtest.
/external/python/cpython2/Lib/cookielib.py
2a6ba9097ee3942ae328befaf074ce9722b93ca0 31-May-2004 Martin v. Löwis <martin@v.loewis.de> Patch #963318: Add support for client-side cookie management.
/external/python/cpython2/Lib/cookielib.py