summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-05-22 14:19:41 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-05-22 14:19:41 (GMT)
commit43e145b6a47a85ed06e0e719238f3fc0e3fd9eef (patch)
tree225d0bd48b75e46c14214e2e928ff1256e275c12
parent549681c79bcda4826e730be174c61e23efc3025c (diff)
downloadcpython-43e145b6a47a85ed06e0e719238f3fc0e3fd9eef.zip
cpython-43e145b6a47a85ed06e0e719238f3fc0e3fd9eef.tar.gz
cpython-43e145b6a47a85ed06e0e719238f3fc0e3fd9eef.tar.bz2
Move a NEWS entity to a correct place.
-rw-r--r--Misc/NEWS6
1 files changed, 3 insertions, 3 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index adf99fb..8bd5e0b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,9 +10,6 @@ What's New in Python 3.4.0 Alpha 1?
Core and Builtins
-----------------
-- Issue #17812: Fixed quadratic complexity of base64.b32encode().
- Optimize base64.b32encode() and base64.b32decode() (speed up to 3x).
-
- Issue #17937: Try harder to collect cyclic garbage at shutdown.
- Issue #12370: Prevent class bodies from interfering with the __class__
@@ -107,6 +104,9 @@ Library
- Issue #17914: Add os.cpu_count(). Patch by Yogesh Chaudhari, based on an
initial patch by Trent Nelson.
+- Issue #17812: Fixed quadratic complexity of base64.b32encode().
+ Optimize base64.b32encode() and base64.b32decode() (speed up to 3x).
+
- Issue #17980: Fix possible abuse of ssl.match_hostname() for denial of
service using certificates with many wildcards (CVE-2013-2099).