]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Moved hmac.compare_digest Misc/NEWS entry from Core and Builtins to Library.
authorLarry Hastings <larry@hastings.org>
Mon, 25 Jun 2012 11:51:59 +0000 (04:51 -0700)
committerLarry Hastings <larry@hastings.org>
Mon, 25 Jun 2012 11:51:59 +0000 (04:51 -0700)
Misc/NEWS

index 7f4a29494ac0840ab00b4e8db6ae5612f43ee0d8..55b9a126311cf706c8b7d4d09016c27bd6b05d55 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,10 +10,6 @@ What's New in Python 3.3.0 Beta 1?
 Core and Builtins
 -----------------
 
-- Issue #15061: Re-implemented hmac.compare_digest() in C to prevent further
-  timing analysis and to support all buffer protocol aware objects as well as
-  ASCII only str instances safely.
-
 - Issue #14815: Use Py_ssize_t instead of long for the object hash, to
   preserve all 64 bits of hash on Win64.
 
@@ -64,6 +60,10 @@ Library
 - Issue #15176: Clarified behavior, documentation, and implementation
   of os.listdir().
   
+- Issue #15061: Re-implemented hmac.compare_digest() in C to prevent further
+  timing analysis and to support all buffer protocol aware objects as well as
+  ASCII only str instances safely.
+
 - Issue #15164: Change return value of platform.uname() from a
   plain tuple to a collections.namedtuple.