diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-04-21 16:05:19 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-04-21 16:05:19 (GMT) |
commit | d73aca769f1f6eebb46faa9161cbebe806db3659 (patch) | |
tree | d257c03a998c63a1a89b9e36bb820c43b1beb0db /Misc | |
parent | 6de708fd46207f6af67d4c0e8902f0d56ea4495c (diff) | |
download | cpython-d73aca769f1f6eebb46faa9161cbebe806db3659.zip cpython-d73aca769f1f6eebb46faa9161cbebe806db3659.tar.gz cpython-d73aca769f1f6eebb46faa9161cbebe806db3659.tar.bz2 |
do not call into python api if an exception is set (#24022)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -10,6 +10,8 @@ Release date: tba Core and Builtins ----------------- +- Issue #24022: Fix tokenizer crash when processing undecodable source code. + - Issue #23309: Avoid a deadlock at shutdown if a daemon thread is aborted while it is holding a lock to a buffered I/O object, and the main thread tries to use the same I/O object (typically stdout or stderr). A fatal |