summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-03-15 20:08:05 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-03-15 20:08:05 (GMT)
commitffd1f483063834531b6105b6ba0b71e482a8d555 (patch)
treeb4ef4d7d9b4cf98eda4b8eb930484433da034080 /Misc/NEWS
parent485119eb1e351f1f142a06275c6b3b3182c38bf4 (diff)
parentd3967d4ccaf50576b8d8976701ed52245d1a77d0 (diff)
downloadcpython-ffd1f483063834531b6105b6ba0b71e482a8d555.zip
cpython-ffd1f483063834531b6105b6ba0b71e482a8d555.tar.gz
cpython-ffd1f483063834531b6105b6ba0b71e482a8d555.tar.bz2
merge heads
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 168aed8..3ce5379 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ 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.