diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-09 22:21:26 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-09 22:21:26 (GMT) |
commit | 00c592553343c4cfa002071d6dc5cc1078e13f85 (patch) | |
tree | 32d0e9baa9f3abb5df320f644577f8bbad9993dd /Misc | |
parent | f2231160016bfc1c855ee602f6c73e22cc10f88b (diff) | |
parent | db932786afdd569bbf2d6b84cfd5cdcb16cb4f27 (diff) | |
download | cpython-00c592553343c4cfa002071d6dc5cc1078e13f85.zip cpython-00c592553343c4cfa002071d6dc5cc1078e13f85.tar.gz cpython-00c592553343c4cfa002071d6dc5cc1078e13f85.tar.bz2 |
(Merge 3.2) Issue #1195: Fix input() if it is interrupted by CTRL+d and then
CTRL+c, clear the end-of-file indicator after CTRL+d.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.3 Alpha 1? Core and Builtins ----------------- +- Issue #1195: Fix input() if it is interrupted by CTRL+d and then CTRL+c, + clear the end-of-file indicator after CTRL+d. + - Issue #1856: Avoid crashes and lockups when daemon threads run while the interpreter is shutting down; instead, these threads are now killed when they try to take the GIL. |