Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
c127a86e
Commit
c127a86e
authored
Apr 17, 2018
by
Aaron Ang
Committed by
Łukasz Langa
Apr 17, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-11594: Ensure line-endings are respected when using 2to3 (GH-6483)
parent
36d56ea8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
35 additions
and
18 deletions
+35
-18
Lib/lib2to3/refactor.py
Lib/lib2to3/refactor.py
+1
-1
Lib/lib2to3/tests/data/crlf.py
Lib/lib2to3/tests/data/crlf.py
+3
-3
Lib/lib2to3/tests/test_refactor.py
Lib/lib2to3/tests/test_refactor.py
+30
-14
Misc/NEWS.d/next/Library/2018-04-16-08-42-03.bpo-11594.QLo4vv.rst
...S.d/next/Library/2018-04-16-08-42-03.bpo-11594.QLo4vv.rst
+1
-0
No files found.
Lib/lib2to3/refactor.py
View file @
c127a86e
...
...
@@ -314,7 +314,7 @@ class RefactoringTool(object):
encoding
=
tokenize
.
detect_encoding
(
f
.
readline
)[
0
]
finally
:
f
.
close
()
with
io
.
open
(
filename
,
"r"
,
encoding
=
encoding
)
as
f
:
with
io
.
open
(
filename
,
"r"
,
encoding
=
encoding
,
newline
=
''
)
as
f
:
return
f
.
read
(),
encoding
def
refactor_file
(
self
,
filename
,
write
=
False
,
doctests_only
=
False
):
...
...
Lib/lib2to3/tests/data/crlf.py
View file @
c127a86e
print
"hi"
print
"Like bad Windows newlines?"
print
"hi"
print
"Like bad Windows newlines?"
Lib/lib2to3/tests/test_refactor.py
View file @
c127a86e
...
...
@@ -180,32 +180,42 @@ from __future__ import print_function"""
def
check_file_refactoring
(
self
,
test_file
,
fixers
=
_2TO3_FIXERS
,
options
=
None
,
mock_log_debug
=
None
,
actually_write
=
True
):
tmpdir
=
tempfile
.
mkdtemp
(
prefix
=
"2to3-test_refactor"
)
self
.
addCleanup
(
shutil
.
rmtree
,
tmpdir
)
# make a copy of the tested file that we can write to
shutil
.
copy
(
test_file
,
tmpdir
)
test_file
=
os
.
path
.
join
(
tmpdir
,
os
.
path
.
basename
(
test_file
))
os
.
chmod
(
test_file
,
0o644
)
def
read_file
():
with
open
(
test_file
,
"rb"
)
as
fp
:
return
fp
.
read
()
old_contents
=
read_file
()
test_file
=
self
.
init_test_file
(
test_file
)
old_contents
=
self
.
read_file
(
test_file
)
rt
=
self
.
rt
(
fixers
=
fixers
,
options
=
options
)
if
mock_log_debug
:
rt
.
log_debug
=
mock_log_debug
rt
.
refactor_file
(
test_file
)
self
.
assertEqual
(
old_contents
,
read_file
(
))
self
.
assertEqual
(
old_contents
,
self
.
read_file
(
test_file
))
if
not
actually_write
:
return
rt
.
refactor_file
(
test_file
,
True
)
new_contents
=
read_file
(
)
new_contents
=
self
.
read_file
(
test_file
)
self
.
assertNotEqual
(
old_contents
,
new_contents
)
return
new_contents
def
init_test_file
(
self
,
test_file
):
tmpdir
=
tempfile
.
mkdtemp
(
prefix
=
"2to3-test_refactor"
)
self
.
addCleanup
(
shutil
.
rmtree
,
tmpdir
)
shutil
.
copy
(
test_file
,
tmpdir
)
test_file
=
os
.
path
.
join
(
tmpdir
,
os
.
path
.
basename
(
test_file
))
os
.
chmod
(
test_file
,
0o644
)
return
test_file
def
read_file
(
self
,
test_file
):
with
open
(
test_file
,
"rb"
)
as
fp
:
return
fp
.
read
()
def
refactor_file
(
self
,
test_file
,
fixers
=
_2TO3_FIXERS
):
test_file
=
self
.
init_test_file
(
test_file
)
old_contents
=
self
.
read_file
(
test_file
)
rt
=
self
.
rt
(
fixers
=
fixers
)
rt
.
refactor_file
(
test_file
,
True
)
new_contents
=
self
.
read_file
(
test_file
)
return
old_contents
,
new_contents
def
test_refactor_file
(
self
):
test_file
=
os
.
path
.
join
(
FIXER_DIR
,
"parrot_example.py"
)
self
.
check_file_refactoring
(
test_file
,
_DEFAULT_FIXERS
)
...
...
@@ -285,6 +295,12 @@ from __future__ import print_function"""
finally
:
os
.
linesep
=
old_sep
def
test_crlf_unchanged
(
self
):
fn
=
os
.
path
.
join
(
TEST_DATA_DIR
,
"crlf.py"
)
old
,
new
=
self
.
refactor_file
(
fn
)
self
.
assertIn
(
b"
\
r
\
n
"
,
old
)
self
.
assertIn
(
b"
\
r
\
n
"
,
new
)
def
test_refactor_docstring
(
self
):
rt
=
self
.
rt
()
...
...
Misc/NEWS.d/next/Library/2018-04-16-08-42-03.bpo-11594.QLo4vv.rst
0 → 100644
View file @
c127a86e
Ensure line-endings are respected when using lib2to3.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment