diff options
author | Brett Cannon <bcannon@gmail.com> | 2003-06-13 23:44:35 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2003-06-13 23:44:35 (GMT) |
commit | 4e64d78bbb961672ee324db234c70320ed4db6d5 (patch) | |
tree | c5aa27b4e8b98693b93bfdf01e42ea1ac007c608 /Misc | |
parent | 93e8e5492402d55e0c0c4b08ff213783f5891561 (diff) | |
download | cpython-4e64d78bbb961672ee324db234c70320ed4db6d5.zip cpython-4e64d78bbb961672ee324db234c70320ed4db6d5.tar.gz cpython-4e64d78bbb961672ee324db234c70320ed4db6d5.tar.bz2 |
dummy_thread modified to have interrupt_main and to behave appropriately when
called.
Added announcement in Misc/NEWS for thread.interrupt_main and mention of
dummy_thread's change.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -55,6 +55,9 @@ Core and builtins Extension modules ----------------- +- thread.interrupt_main() raises KeyboardInterrupt in the main thread. + dummy_thread has also been modified to try to simulate the behavior. + - array.array.insert() now treats negative indices as being relative to the end of the array, just like list.insert() does. (SF bug #739313) |