summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2010-07-19 23:17:22 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2010-07-19 23:17:22 (GMT)
commit41e6c3df8bd8e7f3990886c5269b2f446095de38 (patch)
treedc10cb4e2aa2eba5252e4848e72469a6c49c29a7 /Misc
parent79e17f6f666e6b41320b7355c34d8a292fa5b586 (diff)
downloadcpython-41e6c3df8bd8e7f3990886c5269b2f446095de38.zip
cpython-41e6c3df8bd8e7f3990886c5269b2f446095de38.tar.gz
cpython-41e6c3df8bd8e7f3990886c5269b2f446095de38.tar.bz2
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 665371c..e9dbc99 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -473,6 +473,9 @@ C-API
Library
-------
+- Issue #3704: http.cookiejar was not properly handling URLs with a / in the
+ parameters.
+
- Issue #9268: ``pickletools.dis()`` now has an optional *annotate*
argument which controls printing of opcode descriptions in ``dis()``
output.