summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-04-19 16:57:54 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-04-19 16:57:54 (GMT)
commitf097f175dd3385e6e43842680932b32cbc50365d (patch)
tree9f0792a864e03c4e1ed58bb4f0819bfb40be2d0f /Misc
parent24aa15959b0f8b540dc4c2eacf31755e506ab3b5 (diff)
parent3583761bcd3ebc85207f555017e06f2007cd0db0 (diff)
downloadcpython-f097f175dd3385e6e43842680932b32cbc50365d.zip
cpython-f097f175dd3385e6e43842680932b32cbc50365d.tar.gz
cpython-f097f175dd3385e6e43842680932b32cbc50365d.tar.bz2
Merge #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/ACKS2
-rw-r--r--Misc/NEWS4
2 files changed, 6 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 36b98b0..64c2d61 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -211,6 +211,7 @@ David Chaum
Nicolas Chauvat
Jerry Chen
Michael Chermside
+Ingrid Cheung
Albert Chin-A-Young
Adal Chiriliuc
Matt Chisholm
@@ -802,6 +803,7 @@ Chris McDonough
Greg McFarlane
Alan McIntyre
Michael McLay
+Brendan McLoughlin
Mark Mc Mahon
Gordon McMillan
Andrew McNamara
diff --git a/Misc/NEWS b/Misc/NEWS
index 28b5d66..c7a5414 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.4.0 Alpha 1?
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.