summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-08-19 19:20:03 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-08-19 19:20:03 (GMT)
commita19de803e4661af947938df2db72d0cd5538f4a4 (patch)
tree2ee7a770a1529a23b0eddae70cc383361676d369 /Misc
parent377a152e0dab743b165236024f50602a325d8b93 (diff)
parent828607170da3986af909defe99f956e5762e4dd0 (diff)
downloadcpython-a19de803e4661af947938df2db72d0cd5538f4a4.zip
cpython-a19de803e4661af947938df2db72d0cd5538f4a4.tar.gz
cpython-a19de803e4661af947938df2db72d0cd5538f4a4.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 3b7576c..9f16caf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -16,6 +16,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.