diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-07 21:47:02 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-07 21:47:02 (GMT) |
commit | 3be412d971091852eed7dfa271854f286e499f0b (patch) | |
tree | 11852d8001b517b848c8e195bdf513b49538b69a /Misc | |
parent | b7fb2e25fb826b5c654e5989183f1cca6b8ad450 (diff) | |
download | cpython-3be412d971091852eed7dfa271854f286e499f0b.zip cpython-3be412d971091852eed7dfa271854f286e499f0b.tar.gz cpython-3be412d971091852eed7dfa271854f286e499f0b.tar.bz2 |
Put NEWS entry in the right section.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -8,6 +8,10 @@ What's New in Python 3.2 Release Candidate 1 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 @@ Core and Builtins 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 |