commit | 7adbb5a35da601fc68255eeaf341ad734e86a9bf | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sat Oct 03 20:23:24 2009 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Sat Oct 03 20:23:24 2009 +0000 |
tree | 0b5505e6b465b27e5ecd5f523c9d9e7a6aa1b1c3 | |
parent | 3b34dd871a3d17aa382d4ca22488671afe0c4c03 [diff] |
#7050 fix a SystemError when using tuple unpacking and augmented assignment
diff --git a/Misc/NEWS b/Misc/NEWS index dc54329..bafb0ab 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -12,6 +12,9 @@ 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.