]> granicus.if.org Git - python/commitdiff
Merge #11675
authorMark Dickinson <mdickinson@enthought.com>
Sat, 26 Mar 2011 10:21:20 +0000 (10:21 +0000)
committerMark Dickinson <mdickinson@enthought.com>
Sat, 26 Mar 2011 10:21:20 +0000 (10:21 +0000)
1  2 
Lib/test/test_multiprocessing.py
Misc/NEWS

Simple merge
diff --cc Misc/NEWS
index 7a73054b5ae84a643ec018a573fc11049dfe5f8b,6825931972bf43c576d1939bd9b7fd563ad798dc..bfc138869c63ec73726f5b63a1ae86b252ca4a9b
+++ b/Misc/NEWS
@@@ -10,20 -10,13 +10,24 @@@ What's New in Python 3.2.1
  Core and Builtins
  -----------------
  
 -- 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).
+ - 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
 +  stdout mode is binary and the length is greater than 66,000 bytes (or less,
 +  depending on heap usage).
 +
 +- Issue #11320: fix bogus memory management in Modules/getpath.c, leading to
 +  a possible crash when calling Py_SetPath().
 +
 +- Issue #11510: Fixed optimizer bug which turned "a,b={1,1}" into "a,b=(1,1)".
 +
 +- Issue #11432: A bug was introduced in subprocess.Popen on posix systems with
 +  3.2.0 where the stdout or stderr file descriptor being the same as the stdin
 +  file descriptor would raise an exception. webbrowser.open would fail. fixed.
  
  - Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when
    there are many tags (e.g. when using mq).  Patch by Nadeem Vawda.