[Python-checkins] r87835 - python/branches/py3k/Misc/NEWS

antoine.pitrou python-checkins at python.org
Fri Jan 7 22:47:02 CET 2011


Author: antoine.pitrou
Date: Fri Jan  7 22:47:02 2011
New Revision: 87835

Log:
Put NEWS entry in the right section.



Modified:
   python/branches/py3k/Misc/NEWS

Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS	(original)
+++ python/branches/py3k/Misc/NEWS	Fri Jan  7 22:47:02 2011
@@ -8,6 +8,10 @@
 Core and Builtins
 -----------------
 
+- Issue #8020: Avoid a crash where the small objects allocator would read
+  non-Python managed memory while it is being modified by another thread.
+  Patch by Matt Bandy.
+
 - Issue #10841: On Windows, set the binary mode on stdin, stdout, stderr and
   all io.FileIO objects (to not translate newlines, \r\n <=> \n). The Python
   parser translates newlines (\r\n => \n).
@@ -36,10 +40,6 @@
 Library
 -------
 
-- Issue #8020: Avoid a crash where the small objects allocator would read
-  non-Python managed memory while it is being modified by another thread.
-  Patch by Matt Bandy.
-
 - Issue #10827: Changed the rules for 2-digit years.  The time.asctime
   function will now format any year when ``time.accept2dyear`` is
   false and will accept years >= 1000 otherwise.  The year range


More information about the Python-checkins mailing list