diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-04-09 13:59:25 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-04-09 13:59:25 (GMT) |
commit | a870e35a7dff135a9c1075ab2ea068c9f7b2f379 (patch) | |
tree | e75606dc5dc040c4f3695db93000847e2ff97aec /Misc | |
parent | 80221ed0c0f3c73ee13c5d2c64a9b0273933a0ce (diff) | |
parent | 52c950f229199fa14bd75e1709183d0b08e90182 (diff) | |
download | cpython-a870e35a7dff135a9c1075ab2ea068c9f7b2f379.zip cpython-a870e35a7dff135a9c1075ab2ea068c9f7b2f379.tar.gz cpython-a870e35a7dff135a9c1075ab2ea068c9f7b2f379.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')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -10,6 +10,10 @@ What's New in Python 3.2.1? 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 #11395: io.FileIO().write() clamps the data length to 32,767 bytes on Windows if the file is a TTY to workaround a Windows bug. The Windows console returns an error (12: not enough space error) on writing into stdout if |