summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-04-25 16:01:36 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-04-25 16:01:36 (GMT)
commitf0f7ceae3c94df171d94da1055236db1a93d85a9 (patch)
treef4ab400961df3124ee3ba8a9364793366b1ade24 /Misc
parent523809259251f5f2d3b7d1d291af850fd353b0eb (diff)
downloadcpython-f0f7ceae3c94df171d94da1055236db1a93d85a9.zip
cpython-f0f7ceae3c94df171d94da1055236db1a93d85a9.tar.gz
cpython-f0f7ceae3c94df171d94da1055236db1a93d85a9.tar.bz2
17830: preserve line endings of original file when updating keywords.
This fixes the test failures on Windows from the new tests, and includes test fixes as well as the module fix.
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 a7d7207..273f11c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -49,6 +49,9 @@ Core and Builtins
Library
-------
+- Issue #17830: When keyword.py is used to update a keyword file, it now
+ preserves the line endings of the original file.
+
- Issue #17272: Making the urllib.request's Request.full_url a descriptor.
Fixes bugs with assignment to full_url. Patch by Demian Brecht.