summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Dickinson <mdickinson@enthought.com>2011-03-27 15:50:04 +0100
committerMark Dickinson <mdickinson@enthought.com>2011-03-27 15:50:04 +0100
commitea8e2083f85ded16d5bee1c0b9f4ed89dda31a25 (patch)
tree8fff69586c62a6dca3903799441803e8fc1d277b
parent8a6a198abff504067fb74b669c672901a97a44b6 (diff)
parentccd2283c6fa83a7759a84605810e28713e9f1755 (diff)
downloadcpython-git-ea8e2083f85ded16d5bee1c0b9f4ed89dda31a25.tar.gz
Move misplaced Misc/NEWS item (merge from 3.1)
-rw-r--r--Misc/NEWS8
1 files changed, 4 insertions, 4 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a8ec6e7e38..d3c01e3580 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,10 +10,6 @@ What's New in Python 3.2.1?
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 #11395: io.FileIO().write() clamps the data length to 32,767 bytes on
Windows if the file is a TTY to workaround a Windows bug. The Windows console
returns an error (12: not enough space error) on writing into stdout if
@@ -53,6 +49,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.