diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2012-08-03 23:28:00 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2012-08-03 23:28:00 (GMT) |
commit | 7b3f0fa68e320253e7dc6987c54206272ffb182a (patch) | |
tree | 6d44a1a1153a2055b99f4817150bb380890d1aa1 /Misc | |
parent | d1f9352bd4b30ccfe665109b1341433a00dc6256 (diff) | |
download | cpython-7b3f0fa68e320253e7dc6987c54206272ffb182a.zip cpython-7b3f0fa68e320253e7dc6987c54206272ffb182a.tar.gz cpython-7b3f0fa68e320253e7dc6987c54206272ffb182a.tar.bz2 |
Close #13119: use "\r\n" newline for sys.stdout/err on Windows
sys.stdout and sys.stderr are now using "\r\n" newline on Windows, as Python 2.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.3.0 Beta 2? Core and Builtins ----------------- +- Issue #13119: sys.stdout and sys.stderr are now using "\r\n" newline on + Windows, as Python 2. + - Issue #15534: Fix the fast-search function for non-ASCII Unicode strings. - Issue #15508: Fix the docstring for __import__ to have the proper default |