Commit 3be412d9 authored by Antoine Pitrou's avatar Antoine Pitrou

Put NEWS entry in the right section.

parent b7fb2e25
...@@ -8,6 +8,10 @@ What's New in Python 3.2 Release Candidate 1 ...@@ -8,6 +8,10 @@ What's New in Python 3.2 Release Candidate 1
Core and Builtins 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 - 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 all io.FileIO objects (to not translate newlines, \r\n <=> \n). The Python
parser translates newlines (\r\n => \n). parser translates newlines (\r\n => \n).
...@@ -36,10 +40,6 @@ Core and Builtins ...@@ -36,10 +40,6 @@ Core and Builtins
Library 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 - Issue #10827: Changed the rules for 2-digit years. The time.asctime
function will now format any year when ``time.accept2dyear`` is function will now format any year when ``time.accept2dyear`` is
false and will accept years >= 1000 otherwise. The year range false and will accept years >= 1000 otherwise. The year range
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment