From 19c5233303f2a5b2da3d7f7da6887daf46c13443 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Mon, 30 May 2011 23:50:04 +0200 Subject: [PATCH] Issue #1195: fix the issue number of the NEWS entry --- Misc/NEWS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Misc/NEWS b/Misc/NEWS index 17ba290e3de..5b3cc5cd856 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,7 +10,7 @@ What's New in Python 3.2.1 release candidate 2? 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.