diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-04-19 16:56:57 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-04-19 16:56:57 (GMT) |
commit | 3583761bcd3ebc85207f555017e06f2007cd0db0 (patch) | |
tree | 2ead936be019af64ca6bb6e3795505243e11d995 /Misc | |
parent | 0aa685a33c49ebb731c565348355b6c9a756b831 (diff) | |
download | cpython-3583761bcd3ebc85207f555017e06f2007cd0db0.zip cpython-3583761bcd3ebc85207f555017e06f2007cd0db0.tar.gz cpython-3583761bcd3ebc85207f555017e06f2007cd0db0.tar.bz2 |
#17413: make sure settrace funcs get passed exception instances for 'value'.
Patch by Ingrid Cheung and Brendan McLoughlin.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 2 | ||||
-rw-r--r-- | Misc/NEWS | 4 |
2 files changed, 6 insertions, 0 deletions
@@ -208,6 +208,7 @@ David Chaum Nicolas Chauvat Jerry Chen Michael Chermside +Ingrid Cheung Albert Chin-A-Young Adal Chiriliuc Matt Chisholm @@ -786,6 +787,7 @@ Chris McDonough Greg McFarlane Alan McIntyre Michael McLay +Brendan McLoughlin Mark Mc Mahon Gordon McMillan Andrew McNamara @@ -12,6 +12,10 @@ What's New in Python 3.3.2? Core and Builtins ----------------- +- Issue #17413: sys.settrace callbacks were being passed a string instead of an + exception instance for the 'value' element of the arg tuple if the exception + originated from C code; now an exception instance is always provided. + - Issue #17782: Fix undefined behaviour on platforms where ``struct timespec``'s "tv_nsec" member is not a C long. |