summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-05-09 22:22:59 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-05-09 22:22:59 (GMT)
commit2c585f607e9164e4e416414010cbd09a6f361801 (patch)
tree1fd31cb0372e3f3c69abfe844f80cbfb97d215f4 /Misc
parentb47553a19bcaf7b8dd5a2c7cbf0f64071c045504 (diff)
downloadcpython-2c585f607e9164e4e416414010cbd09a6f361801.zip
cpython-2c585f607e9164e4e416414010cbd09a6f361801.tar.gz
cpython-2c585f607e9164e4e416414010cbd09a6f361801.tar.bz2
(Merge 3.1) 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 1377865..369d0a3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -9,6 +9,9 @@ What's New in Python 2.7.2?
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 #8651: PyArg_Parse*() functions raise an OverflowError if the file
doesn't have PY_SSIZE_T_CLEAN define and the size doesn't fit in an int
(length bigger than 2^31-1 bytes).