diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2011-03-26 10:19:03 (GMT) |
---|---|---|
committer | Mark Dickinson <mdickinson@enthought.com> | 2011-03-26 10:19:03 (GMT) |
commit | 89461ef8fcc87996791a383f1973542a3487ce4f (patch) | |
tree | 812ba093d8d39f811ed3ea68c6ab36223b77f16a /Misc/NEWS | |
parent | 211643b67320b253a2f4f723ece4423559d28ebf (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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). |