diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-04-09 14:09:08 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-04-09 14:09:08 (GMT) |
commit | 5de51ac4c00f36d0caa5bd99d0bfa0fdbad35627 (patch) | |
tree | 1949256074bc2feea586bf94e929c5984cea3cca /Misc/NEWS | |
parent | 5dbca9cc3f92167e686f4e4a44eef25a28f2977d (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |