diff options
author | Raymond Hettinger <python@rcn.com> | 2011-03-15 21:50:16 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-03-15 21:50:16 (GMT) |
commit | 29dcaad6eb47d27fc2d450ae6d81cdf1d740be38 (patch) | |
tree | 2ec6c0e148255b045c302b554ac96fe57d1587e1 /Misc | |
parent | 729c5e203da8adc06acddaa3e7ea472d9c255774 (diff) | |
download | cpython-29dcaad6eb47d27fc2d450ae6d81cdf1d740be38.zip cpython-29dcaad6eb47d27fc2d450ae6d81cdf1d740be38.tar.gz cpython-29dcaad6eb47d27fc2d450ae6d81cdf1d740be38.tar.bz2 |
Issue 11510: Fix BUILD_SET optimizer bug.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -10,6 +10,8 @@ What's New in Python 3.2.1? Core and Builtins ----------------- +- 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. |