summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-05-09 22:21:26 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-05-09 22:21:26 (GMT)
commit00c592553343c4cfa002071d6dc5cc1078e13f85 (patch)
tree32d0e9baa9f3abb5df320f644577f8bbad9993dd /Misc
parentf2231160016bfc1c855ee602f6c73e22cc10f88b (diff)
parentdb932786afdd569bbf2d6b84cfd5cdcb16cb4f27 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 97d6e0d..5953d30 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.