]> granicus.if.org Git - python/commitdiff
Move misplaced Misc/NEWS item (merge from 3.1)
authorMark Dickinson <mdickinson@enthought.com>
Sun, 27 Mar 2011 14:50:04 +0000 (15:50 +0100)
committerMark Dickinson <mdickinson@enthought.com>
Sun, 27 Mar 2011 14:50:04 +0000 (15:50 +0100)
1  2 
Misc/NEWS

diff --cc Misc/NEWS
index a8ec6e7e380ddcdb5f238d5bda4f9555b0d9ac78,72da1ac5f219c4764f8745ea0bcba0a89801e69e..d3c01e358032bf008db0409d9016a74a304050d0
+++ 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.
  Library
  -------
  
 -- Issue #7639: Fix short file name generation in bdist_msi.
+ - 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.
    Patch by Ben Hayden.