diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2012-08-03 23:37:32 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2012-08-03 23:37:32 (GMT) |
commit | 90ef747e04ee586ef475b8ef03d3548e5059b105 (patch) | |
tree | 2be3b143ad927947a40c287a2b47234a035162da /Misc/NEWS | |
parent | 401e17d0f06dd6594835424c5544689abdc0cc9f (diff) | |
download | cpython-90ef747e04ee586ef475b8ef03d3548e5059b105.zip cpython-90ef747e04ee586ef475b8ef03d3548e5059b105.tar.gz cpython-90ef747e04ee586ef475b8ef03d3548e5059b105.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/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.2.4 Core and Builtins ----------------- +- Issue #13119: sys.stdout and sys.stderr are now using "\r\n" newline on + Windows, as Python 2. + - Issue #14579: Fix CVE-2012-2135: vulnerability in the utf-16 decoder after error handling. Patch by Serhiy Storchaka. |