History log of /external/python/cpython2/Lib/test/test_cookielib.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
a850ef698e55d07173051747e96207496c6f1bdb 28-Jul-2016 Martin Panter <vadmium+py@gmail.com> Issue #27626: Spelling fixes in docs, comments and internal names

Based on patch by Ville Skyttä.
/external/python/cpython2/Lib/test/test_cookielib.py
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/test/test_cookielib.py
b1d867f14965e2369d31a3fcdab5bca34b4d81b4 26-May-2016 Martin Panter <vadmium+py@gmail.com> Issue #27076: Doc, comment and test function name spelling fixes

Most fixes to Doc/ and Lib/ directories by Ville Skyttä.
/external/python/cpython2/Lib/test/test_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/test/test_cookielib.py
be1d3c1818840626c2d5a4f8e29a32c777537681 17-Nov-2013 Serhiy Storchaka <storchaka@gmail.com> Issue #19606: Use specific asserts in cookielib tests.
/external/python/cpython2/Lib/test/test_cookielib.py
419e23cbb07a624609a219919eaecd3c61d8e9b4 17-Aug-2013 Ezio Melotti <ezio.melotti@gmail.com> #18466: fix more typos. Patch by Févry Thibault.
/external/python/cpython2/Lib/test/test_cookielib.py
2623a37852153363335956afab010cb0beb7e74e 21-Nov-2010 Ezio Melotti <ezio.melotti@gmail.com> Merged revisions 86596 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line

#9424: Replace deprecated assert* methods in the Python test suite.
........
/external/python/cpython2/Lib/test/test_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/test/test_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/test/test_cookielib.py
a4f46e129294c686ef1effdd89c459bd9a624e6d 07-Feb-2010 Georg Brandl <georg@python.org> Remove unused imports in test modules.
/external/python/cpython2/Lib/test/test_cookielib.py
b0f5adc3f4e098b1744eeac65fc830fb1df2b8ab 24-Jan-2010 Ezio Melotti <ezio.melotti@gmail.com> use assert[Not]IsInstance where appropriate
/external/python/cpython2/Lib/test/test_cookielib.py
aa98058cc44ba20f35c106d20918c6196b737561 24-Jan-2010 Ezio Melotti <ezio.melotti@gmail.com> use assert[Not]In where appropriate
/external/python/cpython2/Lib/test/test_cookielib.py
5c8da86f3a515ce1a6d5f27fd15e3c5f4d8e931e 01-Jul-2009 Benjamin Peterson <benjamin@python.org> convert usage of fail* to assert*
/external/python/cpython2/Lib/test/test_cookielib.py
3e4caeb3bf2b2579861e9f3379e3508fbb30549c 21-Feb-2009 Mark Dickinson <dickinsm@gmail.com> Issue #5341: Fix a variety of spelling errors.
/external/python/cpython2/Lib/test/test_cookielib.py
0bfac6e5d8671f21327b1a8413d68cf23285105f 02-Jul-2008 Brett Cannon <bcannon@gmail.com> Revert r64673 and instead just change the file encoding.
/external/python/cpython2/Lib/test/test_cookielib.py
3bff9d269c8fece4126c4698e67e79362b53bfd1 02-Jul-2008 Brett Cannon <bcannon@gmail.com> FIx some Latin-1 characters to be UTF-8 as the file encoding specifies.

Closes issue #3261. THankjs Leo Soto for the bug report.
/external/python/cpython2/Lib/test/test_cookielib.py
a166a91659795b97144bbd9f1c2adf89c8adc694 08-May-2006 Georg Brandl <georg@python.org> Add test for rev. 45934.
/external/python/cpython2/Lib/test/test_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/test/test_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/test/test_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/test/test_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/test/test_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/test/test_cookielib.py