diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-18 14:40:50 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-18 14:40:50 (GMT) |
commit | 551ba20e8ea9a4a97cf63f28b47175e084eb63cd (patch) | |
tree | a4b28e975a3e3b7bef76a97e201d1f0631b1b3e6 /Misc | |
parent | 6bfecd1271b305afcbe3f3f68980f89aa44e1910 (diff) | |
download | cpython-551ba20e8ea9a4a97cf63f28b47175e084eb63cd.zip cpython-551ba20e8ea9a4a97cf63f28b47175e084eb63cd.tar.gz cpython-551ba20e8ea9a4a97cf63f28b47175e084eb63cd.tar.bz2 |
Issue #13188: When called without an explicit traceback argument,
generator.throw() now gets the traceback from the passed exception's
`__traceback__` attribute. Patch by Petri Lehtinen.
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 3.2.3? Core and Builtins ----------------- +- Issue #13188: When called without an explicit traceback argument, + generator.throw() now gets the traceback from the passed exception's + ``__traceback__`` attribute. Patch by Petri Lehtinen. + - Issue #7833: Extension modules built using distutils on Windows will no longer include a "manifest" to prevent them failing at import time in some embedded situations. |