summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-05-30 21:50:34 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-05-30 21:50:34 (GMT)
commit4f1252dfbe4d7ad9f65568e0fb37d12c2ad766dc (patch)
tree659a4cdb62ad631d80a9aca4a262647e00237822
parent0c9f31b4c0d9bc910a7a4fce453a9768f2c9441b (diff)
parent19c5233303f2a5b2da3d7f7da6887daf46c13443 (diff)
downloadcpython-4f1252dfbe4d7ad9f65568e0fb37d12c2ad766dc.zip
cpython-4f1252dfbe4d7ad9f65568e0fb37d12c2ad766dc.tar.gz
cpython-4f1252dfbe4d7ad9f65568e0fb37d12c2ad766dc.tar.bz2
(Merge 3.2) Issue #1195: fix the issue number of the NEWS entry
-rw-r--r--Misc/NEWS2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 68e81f0..ea6fe78 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,7 +10,7 @@ What's New in Python 3.3 Alpha 1?
Core and Builtins
-----------------
-- Issue #12016: my_fgets() now always clears errors before calling fgets(). Fix
+- Issue #1195: 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.