]> granicus.if.org Git - python/commitdiff
Issue #1195: Fix input() if it is interrupted by CTRL+d and then CTRL+c, clear
authorVictor Stinner <victor.stinner@haypocalc.com>
Mon, 9 May 2011 22:20:35 +0000 (00:20 +0200)
committerVictor Stinner <victor.stinner@haypocalc.com>
Mon, 9 May 2011 22:20:35 +0000 (00:20 +0200)
the end-of-file indicator after CTRL+d.

1  2 
Misc/NEWS
Parser/myreadline.c

diff --cc Misc/NEWS
index 6c942afba8c9d6a6744c170df3c2d7313c8c2915,951a136c40cecabddf1b93a677092fafb23f7635..4a4767ebe62cbeabeb900be3f65b09f678f76a6d
+++ b/Misc/NEWS
@@@ -10,10 -10,9 +10,13 @@@ What's New in Python 3.2.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.
 +
  - Issue #9756: When calling a method descriptor or a slot wrapper descriptor,
    the check of the object type doesn't read the __class__ attribute anymore.
    Fix a crash if a class override its __class__ attribute (e.g. a proxy of the
Simple merge