summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2011-03-29 20:04:24 (GMT)
committerGuido van Rossum <guido@python.org>2011-03-29 20:04:24 (GMT)
commitb885a5bbc85baca8406cf190f1f8641e74914608 (patch)
tree8833a51dedadcedaa662afabd735adbb03677fce /Misc
parent07ef62c47c14ea80e9fd0923e1693d222df506ff (diff)
parentb7ef35b582175f1403b32f0ec81364465200fb9f (diff)
downloadcpython-b885a5bbc85baca8406cf190f1f8641e74914608.zip
cpython-b885a5bbc85baca8406cf190f1f8641e74914608.tar.gz
cpython-b885a5bbc85baca8406cf190f1f8641e74914608.tar.bz2
Merge cleanup.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 3 insertions, 3 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c671107..9b68a72 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -16,9 +16,6 @@ Core and Builtins
- Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when
there are many tags (e.g. when using mq). Patch by Nadeem Vawda.
-- Issue #11662: Make urllib and urllib2 ignore redirections if the
- scheme is not HTTP, HTTPS or FTP (CVE-2011-1521).
-
- Issue #10451: memoryview objects could allow to mutate a readable buffer.
Initial patch by Ross Lagerwall.
@@ -50,6 +47,9 @@ Core and Builtins
Library
-------
+- Issue #11662: Make urllib and urllib2 ignore redirections if the
+ scheme is not HTTP, HTTPS or FTP (CVE-2011-1521).
+
- Issue #11256: Fix inspect.getcallargs on functions that take only keyword
arguments.