summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMark Dickinson <mdickinson@enthought.com>2011-03-26 10:19:03 (GMT)
committerMark Dickinson <mdickinson@enthought.com>2011-03-26 10:19:03 (GMT)
commit89461ef8fcc87996791a383f1973542a3487ce4f (patch)
tree812ba093d8d39f811ed3ea68c6ab36223b77f16a /Misc/NEWS
parent211643b67320b253a2f4f723ece4423559d28ebf (diff)
downloadcpython-89461ef8fcc87996791a383f1973542a3487ce4f.zip
cpython-89461ef8fcc87996791a383f1973542a3487ce4f.tar.gz
cpython-89461ef8fcc87996791a383f1973542a3487ce4f.tar.bz2
Issue #11675: Zero-out newly-created multiprocessing.[Raw]Array objects.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index fca77ef..6825931 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ 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).