summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-08-19 19:13:41 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-08-19 19:13:41 (GMT)
commit828607170da3986af909defe99f956e5762e4dd0 (patch)
tree6951965e9b6f5af373180d2ec13349221462929d /Misc
parent6b962860e2bd2d08d8d5d38969ed4864f8c1219a (diff)
downloadcpython-828607170da3986af909defe99f956e5762e4dd0.zip
cpython-828607170da3986af909defe99f956e5762e4dd0.tar.gz
cpython-828607170da3986af909defe99f956e5762e4dd0.tar.bz2
Issue #15595: Fix subprocess.Popen(universal_newlines=True)
for certain locales (utf-16 and utf-32 family). Patch by Chris Jerdonek.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 86b178b..52e297c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -104,6 +104,9 @@ Core and Builtins
Library
-------
+- Issue #15595: Fix subprocess.Popen(universal_newlines=True)
+ for certain locales (utf-16 and utf-32 family). Patch by Chris Jerdonek.
+
- Issue #15477: In cmath and math modules, add workaround for platforms whose
system-supplied log1p function doesn't respect signs of zeros.