diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-01-31 06:30:56 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-01-31 06:30:56 (GMT) |
commit | 0bb165ecc114fcf7ce1df454355c4cbbef8b63e9 (patch) | |
tree | 4e03ad7e9e730183126490418f54fa4e3a149630 /Misc | |
parent | 414f8b937f1ccab9a493b387fa42529416ea1a08 (diff) | |
download | cpython-0bb165ecc114fcf7ce1df454355c4cbbef8b63e9.zip cpython-0bb165ecc114fcf7ce1df454355c4cbbef8b63e9.tar.gz cpython-0bb165ecc114fcf7ce1df454355c4cbbef8b63e9.tar.bz2 |
Issue #4806: Avoid masking TypeError when *-unpacking a generator
Based on patch by Hagen Fürstenau.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -10,6 +10,10 @@ What's New in Python 2.7.12? Core and Builtins ----------------- +- Issue #4806: Avoid masking the original TypeError exception when using star + (*) unpacking and the exception was raised from a generator. Based on + patch by Hagen Fürstenau. + - Issue #26659: Make the builtin slice type support cycle collection. - Issue #26718: super.__init__ no longer leaks memory if called multiple times. |