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
Labels
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
my2to3
Commits
1b97b2ea
Commit
1b97b2ea
authored
Aug 28, 2020
by
Bryton Lacquement
🚪
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Typo fix
parent
767964c5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
my2to3/fixes/__init__.py
my2to3/fixes/__init__.py
+2
-2
No files found.
my2to3/fixes/__init__.py
View file @
1b97b2ea
...
@@ -13,7 +13,7 @@ class BaseStaticTraceFix(BaseFix):
...
@@ -13,7 +13,7 @@ class BaseStaticTraceFix(BaseFix):
def
__init__
(
self
,
*
args
,
**
kwargs
):
def
__init__
(
self
,
*
args
,
**
kwargs
):
super
(
BaseStaticTraceFix
,
self
).
__init__
(
*
args
,
**
kwargs
)
super
(
BaseStaticTraceFix
,
self
).
__init__
(
*
args
,
**
kwargs
)
# Note: id is used to differentiate
the divisions of
the same line.
# Note: id is used to differentiate
objects on
the same line.
self
.
insert_trace
=
create_table
(
self
.
basename
+
"_trace"
,
"filename"
,
"lineno"
,
"id"
,
*
self
.
traced_information
)
self
.
insert_trace
=
create_table
(
self
.
basename
+
"_trace"
,
"filename"
,
"lineno"
,
"id"
,
*
self
.
traced_information
)
def
start_tree
(
self
,
*
args
,
**
kwargs
):
def
start_tree
(
self
,
*
args
,
**
kwargs
):
...
@@ -70,7 +70,7 @@ class BaseSupportFix(BaseFix):
...
@@ -70,7 +70,7 @@ class BaseSupportFix(BaseFix):
def
__init__
(
self
,
*
args
,
**
kwargs
):
def
__init__
(
self
,
*
args
,
**
kwargs
):
super
(
BaseSupportFix
,
self
).
__init__
(
*
args
,
**
kwargs
)
super
(
BaseSupportFix
,
self
).
__init__
(
*
args
,
**
kwargs
)
# Note: id is used to differentiate
the divisions of
the same line.
# Note: id is used to differentiate
objects on
the same line.
self
.
insert_support
=
create_table
(
self
.
basename
+
"_support"
,
"filename"
,
"lineno"
,
"id"
,
"status"
)
self
.
insert_support
=
create_table
(
self
.
basename
+
"_support"
,
"filename"
,
"lineno"
,
"id"
,
"status"
)
def
analyze_data
(
self
,
filename
,
lineno
,
id_
):
def
analyze_data
(
self
,
filename
,
lineno
,
id_
):
...
...
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