Merged revisions 82985 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r82985 | gregory.p.smith | 2010-07-19 16:17:22 -0700 (Mon, 19 Jul 2010) | 3 lines

  Fixes Issue #3704: http.cookiejar was not properly handling URLs with a / in
  the parameters.  (This is jjlee's issue3704.patch ported to py3k)
........
This commit is contained in:
Gregory P. Smith 2010-07-25 19:53:20 +00:00
parent 85edadb8ab
commit 2c4973dd4a
3 changed files with 47 additions and 35 deletions

View file

@ -78,6 +78,9 @@ C-API
Library
-------
- Issue #3704: http.cookiejar was not properly handling URLs with a / in the
parameters.
- Issue #4629: getopt raises an error if an argument ends with = whereas getopt
doesn't except a value (eg. --help= is rejected if getopt uses ['help='] long
options).