mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
bpo-34108: Fix double carriage return in 2to3 on Windows (#8271)
* Add test capturing failure. * Honor newlines as present in the original file.
This commit is contained in:
parent
379e9d639a
commit
cafaf0447b
3 changed files with 3 additions and 1 deletions
|
@ -514,7 +514,7 @@ class RefactoringTool(object):
|
|||
set.
|
||||
"""
|
||||
try:
|
||||
fp = io.open(filename, "w", encoding=encoding)
|
||||
fp = io.open(filename, "w", encoding=encoding, newline='')
|
||||
except OSError as err:
|
||||
self.log_error("Can't create %s: %s", filename, err)
|
||||
return
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue