]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Misc/NEWS entry for issue 11432
authorGregory P. Smith <greg@krypto.org>
Tue, 15 Mar 2011 20:04:15 +0000 (16:04 -0400)
committerGregory P. Smith <greg@krypto.org>
Tue, 15 Mar 2011 20:04:15 +0000 (16:04 -0400)
1  2 
Misc/NEWS

diff --cc Misc/NEWS
index 018c62d8c8b2b5b539ef7f684d070b428dbcf981,c110065035259b9e7c927ffa6621dd755409be47..2c4ecd6af3111e7240310d10c0f58c873c3acc63
+++ b/Misc/NEWS
@@@ -10,16 -10,10 +10,20 @@@ What's New in Python 3.3 Alpha 1
  Core and Builtins
  -----------------
  
 +- _ast.__version__ is now a Mercurial integer and hex revision.
 +
+ - 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 #9856: Change object.__format__ with a non-empty format string
 +  to be a DeprecationWarning. In 3.2 it was a PendingDeprecationWarning.
 +  In 3.4 it will be a TypeError.
 +
 +- Issue #11244: The peephole optimizer is now able to constant-fold
 +  arbitrarily complex expressions.  This also fixes a 3.2 regression where
 +  operations involving negative numbers were not constant-folded.
 +
  - 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.