diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2004-11-23 18:06:08 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2004-11-23 18:06:08 (GMT) |
commit | 4c79a83e0c0cb6c68a63c116857a18307cafd9c9 (patch) | |
tree | 8ad4c701e58032b1d996b992d8ae09fa6488d095 /Misc | |
parent | 8e6f2ded301055b3e8b61018175cd758ec4ad150 (diff) | |
download | cpython-4c79a83e0c0cb6c68a63c116857a18307cafd9c9.zip cpython-4c79a83e0c0cb6c68a63c116857a18307cafd9c9.tar.gz cpython-4c79a83e0c0cb6c68a63c116857a18307cafd9c9.tar.bz2 |
Hye-Shik Chang's fix for Bug 875692.
Improve signal handling, especially when using threads, by forcing an early
re-execution of PyEval_EvalFrame() "periodic" code when things_to_do is not
cleared by Py_MakePendingCalls().
M Misc/NEWS
M Python/ceval.c
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -4,6 +4,19 @@ Python News (editors: check NEWS.help for information about editing NEWS using ReST.) +What's New in Python 2.4 release candidate 2 +===================================================== + +*Release date: XX-NOV-2004* + +Core and builtins +----------------- + +- Bug 875692: Improve signal handling, especially when using threads, by + forcing an early re-execution of PyEval_EvalFrame() "periodic" code when + things_to_do is not cleared by Py_MakePendingCalls(). + + What's New in Python 2.4 (release candidate 1|beta 3) ===================================================== |