summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-05-30 21:47:01 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-05-30 21:47:01 (GMT)
commit0c9f31b4c0d9bc910a7a4fce453a9768f2c9441b (patch)
tree9baeb22447387477b875ef010b764b054e4e00fd /Misc
parentf47fa58b62e6702f840625bff9fc8a07cef3408f (diff)
parent4f71101eeda6fb0b55805ebcb12d11124ab3b567 (diff)
downloadcpython-0c9f31b4c0d9bc910a7a4fce453a9768f2c9441b.zip
cpython-0c9f31b4c0d9bc910a7a4fce453a9768f2c9441b.tar.gz
cpython-0c9f31b4c0d9bc910a7a4fce453a9768f2c9441b.tar.bz2
(Merge 3.2) Issue #12016: my_fgets() now always clears errors before calling
fgets(). Fix the following case: sys.stdin.read() stopped with CTRL+d (end of file), raw_input() interrupted by CTRL+c.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6a32661..68e81f0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.3 Alpha 1?
Core and Builtins
-----------------
+- Issue #12016: my_fgets() now always clears errors before calling fgets(). Fix
+ the following case: sys.stdin.read() stopped with CTRL+d (end of file),
+ raw_input() interrupted by CTRL+c.
+
- Issue #12216: Allow unexpected EOF errors to happen on any line of the file.
- Issue #12199: The TryExcept and TryFinally and AST nodes have been unified