Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
mercurial-devel
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mercurial
mercurial-devel
Commits
102e6ef5
Commit
102e6ef5
authored
8 years ago
by
Martijn Pieters
Browse files
Options
Downloads
Patches
Plain Diff
py3: use namedtuple._replace to produce new tokens
parent
42337729
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
mercurial/__init__.py
+5
-11
5 additions, 11 deletions
mercurial/__init__.py
with
5 additions
and
11 deletions
mercurial/__init__.py
+
5
−
11
View file @
102e6ef5
...
...
@@ -233,9 +233,7 @@
"""
st
=
tokens
[
j
]
if
st
.
type
==
token
.
STRING
and
st
.
string
.
startswith
((
"'"
,
'"'
)):
rt
=
tokenize
.
TokenInfo
(
st
.
type
,
'
u%s
'
%
st
.
string
,
st
.
start
,
st
.
end
,
st
.
line
)
tokens
[
j
]
=
rt
tokens
[
j
]
=
st
.
_replace
(
string
=
'
u%s
'
%
st
.
string
)
for
i
,
t
in
enumerate
(
tokens
):
# Convert most string literals to byte literals. String literals
...
...
@@ -266,8 +264,7 @@
continue
# String literal. Prefix to make a b'' string.
yield
tokenize
.
TokenInfo
(
t
.
type
,
'
b%s
'
%
s
,
t
.
start
,
t
.
end
,
t
.
line
)
yield
t
.
_replace
(
string
=
'
b%s
'
%
t
.
string
)
continue
# Insert compatibility imports at "from __future__ import" line.
...
...
@@ -287,10 +284,8 @@
for
u
in
tokenize
.
tokenize
(
io
.
BytesIO
(
l
).
readline
):
if
u
.
type
in
(
tokenize
.
ENCODING
,
token
.
ENDMARKER
):
continue
yield
tokenize
.
TokenInfo
(
u
.
type
,
u
.
string
,
(
r
,
c
+
u
.
start
[
1
]),
(
r
,
c
+
u
.
end
[
1
]),
''
)
yield
u
.
_replace
(
start
=
(
r
,
c
+
u
.
start
[
1
]),
end
=
(
r
,
c
+
u
.
end
[
1
]))
continue
# This looks like a function call.
...
...
@@ -322,8 +317,7 @@
# It changes iteritems to items as iteritems is not
# present in Python 3 world.
elif
fn
==
'
iteritems
'
:
yield
tokenize
.
TokenInfo
(
t
.
type
,
'
items
'
,
t
.
start
,
t
.
end
,
t
.
line
)
yield
t
.
_replace
(
string
=
'
items
'
)
continue
# Emit unmodified token.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment