summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2010-07-25 19:53:20 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2010-07-25 19:53:20 (GMT)
commit2c4973dd4a08be5aba88726b5872c95d3069c34b (patch)
tree71f63b133b9b5763f654e1ea79dfad49183959af /Misc
parent85edadb8ab9b7219aaaeaa16a442f672b80e03aa (diff)
downloadcpython-2c4973dd4a08be5aba88726b5872c95d3069c34b.zip
cpython-2c4973dd4a08be5aba88726b5872c95d3069c34b.tar.gz
cpython-2c4973dd4a08be5aba88726b5872c95d3069c34b.tar.bz2
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) ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c6777ce..833d0de 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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).