diff options
author | Brett Cannon <bcannon@gmail.com> | 2004-07-03 03:52:35 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2004-07-03 03:52:35 (GMT) |
commit | cc4e935ea593cede10cb1316e3faeabd708abca7 (patch) | |
tree | 20a9aaa0e9aff4daacc2b6ac350ccdc18a4700fc /Misc | |
parent | f9bfdd850cd00e00c0895b3f73afd019b7a9dfdb (diff) | |
download | cpython-cc4e935ea593cede10cb1316e3faeabd708abca7.zip cpython-cc4e935ea593cede10cb1316e3faeabd708abca7.tar.gz cpython-cc4e935ea593cede10cb1316e3faeabd708abca7.tar.bz2 |
threading.Thread objects will now print a traceback for an exception raised
during interpreter shutdown instead of masking it with another traceback about
accessing a NoneType when trying to print the exception out in the first place.
Closes bug #754449 (using patch #954922).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -360,6 +360,9 @@ Extension modules Library ------- +- Bug #754449: threading.Thread objects will now print out a traceback even + when an exception is raised in a thread during interpreter shutdown. + - Added Decimal.py per PEP 327. - Bug #981299: rsync is now a recognized protocol in urlparse that uses a |