summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-04-09 14:09:08 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-04-09 14:09:08 (GMT)
commit5de51ac4c00f36d0caa5bd99d0bfa0fdbad35627 (patch)
tree1949256074bc2feea586bf94e929c5984cea3cca /Misc/NEWS
parent5dbca9cc3f92167e686f4e4a44eef25a28f2977d (diff)
downloadcpython-5de51ac4c00f36d0caa5bd99d0bfa0fdbad35627.zip
cpython-5de51ac4c00f36d0caa5bd99d0bfa0fdbad35627.tar.gz
cpython-5de51ac4c00f36d0caa5bd99d0bfa0fdbad35627.tar.bz2
(Merge 3.1) Issue #11650: PyOS_StdioReadline() retries fgets() if it was
interrupted (EINTR), for example if the program is stopped with CTRL+z on Mac OS X. Patch written by Charles-Francois Natali.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f460127..a4b32ae 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -9,6 +9,10 @@ What's New in Python 2.7.2?
Core and Builtins
-----------------
+- Issue #11650: PyOS_StdioReadline() retries fgets() if it was interrupted
+ (EINTR), for example if the program is stopped with CTRL+z on Mac OS X. Patch
+ written by Charles-Francois Natali.
+
- Issue #11144: Ensure that int(a_float) returns an int whenever possible.
Previously, there were some corner cases where a long was returned even
though the result was within the range of an int.