summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-10-03 20:23:24 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-10-03 20:23:24 (GMT)
commit7adbb5a35da601fc68255eeaf341ad734e86a9bf (patch)
tree0b5505e6b465b27e5ecd5f523c9d9e7a6aa1b1c3 /Misc/NEWS
parent3b34dd871a3d17aa382d4ca22488671afe0c4c03 (diff)
downloadcpython-7adbb5a35da601fc68255eeaf341ad734e86a9bf.zip
cpython-7adbb5a35da601fc68255eeaf341ad734e86a9bf.tar.gz
cpython-7adbb5a35da601fc68255eeaf341ad734e86a9bf.tar.bz2
#7050 fix a SystemError when using tuple unpacking and augmented assignment
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index dc54329..bafb0ab 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
+- Issue #7050: Fix a SystemError when trying to use unpacking and augmented
+ assignment.
+
- Issue #5329: Fix os.popen* regression from 2.5 with commands as a
sequence running through the shell. Patch by Jean-Paul Calderone
and Jani Hakala.