Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
my2to3
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Bryton Lacquement
my2to3
Commits
6ec5b62b
Commit
6ec5b62b
authored
May 29, 2020
by
Bryton Lacquement
🚪
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
trace_division: more support for multiline divisions
parent
e6472154
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
my2to3/fixes/fix_trace_division.py
my2to3/fixes/fix_trace_division.py
+4
-1
my2to3/tests/testFixTraceDivision.py
my2to3/tests/testFixTraceDivision.py
+7
-0
No files found.
my2to3/fixes/fix_trace_division.py
View file @
6ec5b62b
...
@@ -38,6 +38,9 @@ class FixTraceDivision(lib2to3.fixer_base.BaseFix):
...
@@ -38,6 +38,9 @@ class FixTraceDivision(lib2to3.fixer_base.BaseFix):
def
transform
(
self
,
node
,
results
):
def
transform
(
self
,
node
,
results
):
lineno
=
node
.
get_lineno
()
lineno
=
node
.
get_lineno
()
divisor
=
node
.
children
[
0
].
clone
()
if
node
.
prefix
==
divisor
.
prefix
:
divisor
.
prefix
=
''
comma
=
lib2to3
.
fixer_util
.
Comma
()
comma
=
lib2to3
.
fixer_util
.
Comma
()
comma
.
prefix
=
prefix
=
node
.
children
[
1
].
prefix
comma
.
prefix
=
prefix
=
node
.
children
[
1
].
prefix
...
@@ -47,7 +50,7 @@ class FixTraceDivision(lib2to3.fixer_base.BaseFix):
...
@@ -47,7 +50,7 @@ class FixTraceDivision(lib2to3.fixer_base.BaseFix):
args
=
(
args
=
(
lib2to3
.
fixer_util
.
Number
(
self
.
ids
[
lineno
]),
lib2to3
.
fixer_util
.
Number
(
self
.
ids
[
lineno
]),
lib2to3
.
fixer_util
.
Comma
(),
lib2to3
.
fixer_util
.
Comma
(),
node
.
children
[
0
].
clone
()
,
divisor
,
comma
,
comma
,
node
.
children
[
2
].
clone
(),
node
.
children
[
2
].
clone
(),
),
),
...
...
my2to3/tests/testFixTraceDivision.py
View file @
6ec5b62b
...
@@ -34,6 +34,13 @@ class testFixTraceDivision(FixerTestCase):
...
@@ -34,6 +34,13 @@ class testFixTraceDivision(FixerTestCase):
, y)"""
, y)"""
self
.
check
(
b
,
a
)
self
.
check
(
b
,
a
)
def
test_multiline_division_2
(
self
):
b
=
"""foo =
\
x / y"""
a
=
"""foo =
\
division_traced(0,x , y)"""
self
.
check
(
b
,
a
)
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
unittest
.
main
()
unittest
.
main
()
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