diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-02-23 12:10:23 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-02-23 12:10:23 (GMT) |
commit | 02bfdb3f791a007801f2d14ed11b21bd6498ff9c (patch) | |
tree | 86835246c57c673166e4fe00911101195326428c /Misc | |
parent | 9f6cbe09cc88be914600306b34ac3d0025738465 (diff) | |
download | cpython-02bfdb3f791a007801f2d14ed11b21bd6498ff9c.zip cpython-02bfdb3f791a007801f2d14ed11b21bd6498ff9c.tar.gz cpython-02bfdb3f791a007801f2d14ed11b21bd6498ff9c.tar.bz2 |
Merged revisions 88530 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r88530 | victor.stinner | 2011-02-23 13:07:37 +0100 (mer., 23 févr. 2011) | 4 lines
Issue #11272: Fix input() and sys.stdin for Windows newline
On Windows, input() strips '\r' (and not only '\n'), and sys.stdin uses
universal newline (replace '\r\n' by '\n').
........
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.2.1? Core and Builtins ----------------- +- Issue #11272: On Windows, input() strips '\r' (and not only '\n'), and + sys.stdin uses universal newline (replace '\r\n' by '\n'). + - Check for NULL result in PyType_FromSpec. Library @@ -26,7 +29,7 @@ Library 32-bit Windows. - Issue #11089: Fix performance issue limiting the use of ConfigParser() - with large config files. + with large config files. - Issue #10276: Fix the results of zlib.crc32() and zlib.adler32() on buffers larger than 4GB. Patch by Nadeem Vawda. |