]> granicus.if.org Git - python/commitdiff
(Merge 3.2) Issue #11650: PyOS_StdioReadline() retries fgets() if it was
authorVictor Stinner <victor.stinner@haypocalc.com>
Sat, 9 Apr 2011 14:01:55 +0000 (16:01 +0200)
committerVictor Stinner <victor.stinner@haypocalc.com>
Sat, 9 Apr 2011 14:01:55 +0000 (16:01 +0200)
interrupted (EINTR), for example if the program is stopped with CTRL+z on Mac
OS X. Patch written by Charles-Francois Natali.

1  2 
Misc/NEWS

diff --cc Misc/NEWS
index fa03fc1a16c5a7046bf3666cc944fe20af359fef,39faa4b475b18b03028f554f165d9fd6b8857216..eb632a89d1032c150c6374f2b169557b8c04e049
+++ b/Misc/NEWS
@@@ -10,19 -10,10 +10,23 @@@ What's New in Python 3.3 Alpha 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 #9319: Include the filename in "Non-UTF8 code ..." syntax error.
 +
 +- Issue #10785: Store the filename as Unicode in the Python parser.
 +
 +- Issue #11619: _PyImport_LoadDynamicModule() doesn't encode the path to bytes
 +  on Windows.
 +
 +- Issue #10998: Remove mentions of -Q, sys.flags.division_warning and
 +  Py_DivisionWarningFlag left over from Python 2.
 +
 +- Issue #11244: Remove an unnecessary peepholer check that was preventing
 +  negative zeros from being constant-folded properly.
 +
  - 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