summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2012-08-03 23:37:32 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2012-08-03 23:37:32 (GMT)
commit90ef747e04ee586ef475b8ef03d3548e5059b105 (patch)
tree2be3b143ad927947a40c287a2b47234a035162da /Misc/NEWS
parent401e17d0f06dd6594835424c5544689abdc0cc9f (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d5e3113..dbaf864 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.