From: Mark Dickinson Date: Sun, 27 Mar 2011 14:50:04 +0000 (+0100) Subject: Move misplaced Misc/NEWS item (merge from 3.1) X-Git-Tag: v3.2.1b1~196 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ea8e2083f85ded16d5bee1c0b9f4ed89dda31a25;p=python Move misplaced Misc/NEWS item (merge from 3.1) --- ea8e2083f85ded16d5bee1c0b9f4ed89dda31a25 diff --cc Misc/NEWS index a8ec6e7e38,72da1ac5f2..d3c01e3580 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,24 -10,9 +10,20 @@@ 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 #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 #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. @@@ -53,7 -44,11 +49,11 @@@ 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 #7639: Fix short file name generation in bdist_msi - Issue #11659: Fix ResourceWarning in test_subprocess introduced by #11459. Patch by Ben Hayden.