summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Dickinson <mdickinson@enthought.com>2011-03-27 14:46:32 (GMT)
committerMark Dickinson <mdickinson@enthought.com>2011-03-27 14:46:32 (GMT)
commitccd2283c6fa83a7759a84605810e28713e9f1755 (patch)
tree9c122034278162eecb354bb39184012f0ec95205
parent9bad3a99dd9a9804abc47ae252176064214b29b4 (diff)
downloadcpython-ccd2283c6fa83a7759a84605810e28713e9f1755.zip
cpython-ccd2283c6fa83a7759a84605810e28713e9f1755.tar.gz
cpython-ccd2283c6fa83a7759a84605810e28713e9f1755.tar.bz2
Fix misplaced Misc/NEWS entry.
-rw-r--r--Misc/NEWS8
1 files changed, 4 insertions, 4 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0ae6946..72da1ac 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,10 +10,6 @@ What's New in Python 3.1.4?
Core and Builtins
-----------------
-- Issue #11675: multiprocessing.[Raw]Array objects created from an integer size
- are now zeroed on creation. This matches the behaviour specified by the
- documentation.
-
- Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file
doesn't have PY_SSIZE_T_CLEAN define and the size doesn't fit in an int
(length bigger than 2^31-1 bytes).
@@ -48,6 +44,10 @@ Core and Builtins
Library
-------
+- Issue #11675: multiprocessing.[Raw]Array objects created from an integer size
+ are now zeroed on creation. This matches the behaviour specified by the
+ documentation.
+
- Issue #7639: Fix short file name generation in bdist_msi.
- Issue #11659: Fix ResourceWarning in test_subprocess introduced by #11459.