diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-30 21:47:01 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-30 21:47:01 (GMT) |
commit | 0c9f31b4c0d9bc910a7a4fce453a9768f2c9441b (patch) | |
tree | 9baeb22447387477b875ef010b764b054e4e00fd /Misc | |
parent | f47fa58b62e6702f840625bff9fc8a07cef3408f (diff) | |
parent | 4f71101eeda6fb0b55805ebcb12d11124ab3b567 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |