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
824a02c0
Commit
824a02c0
authored
Dec 13, 2014
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #22823: Use set literals in lib2to3.
parent
1512a65d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
Lib/lib2to3/fixer_util.py
Lib/lib2to3/fixer_util.py
+4
-4
Lib/lib2to3/fixes/fix_dict.py
Lib/lib2to3/fixes/fix_dict.py
+1
-1
Lib/lib2to3/patcomp.py
Lib/lib2to3/patcomp.py
+1
-1
Lib/lib2to3/refactor.py
Lib/lib2to3/refactor.py
+2
-2
No files found.
Lib/lib2to3/fixer_util.py
View file @
824a02c0
...
...
@@ -187,8 +187,8 @@ def parenthesize(node):
return
Node
(
syms
.
atom
,
[
LParen
(),
node
,
RParen
()])
consuming_calls
=
set
([
"sorted"
,
"list"
,
"set"
,
"any"
,
"all"
,
"tuple"
,
"sum"
,
"min"
,
"max"
,
"enumerate"
])
consuming_calls
=
{
"sorted"
,
"list"
,
"set"
,
"any"
,
"all"
,
"tuple"
,
"sum"
,
"min"
,
"max"
,
"enumerate"
}
def
attr_chain
(
obj
,
attr
):
"""Follow an attribute chain.
...
...
@@ -359,7 +359,7 @@ def touch_import(package, name, node):
root
.
insert_child
(
insert_pos
,
Node
(
syms
.
simple_stmt
,
children
))
_def_syms
=
set
([
syms
.
classdef
,
syms
.
funcdef
])
_def_syms
=
{
syms
.
classdef
,
syms
.
funcdef
}
def
find_binding
(
name
,
node
,
package
=
None
):
""" Returns the node which binds variable name, otherwise None.
If optional argument package is supplied, only imports will
...
...
@@ -402,7 +402,7 @@ def find_binding(name, node, package=None):
return
ret
return
None
_block_syms
=
set
([
syms
.
funcdef
,
syms
.
classdef
,
syms
.
trailer
])
_block_syms
=
{
syms
.
funcdef
,
syms
.
classdef
,
syms
.
trailer
}
def
_find
(
name
,
node
):
nodes
=
[
node
]
while
nodes
:
...
...
Lib/lib2to3/fixes/fix_dict.py
View file @
824a02c0
...
...
@@ -36,7 +36,7 @@ from ..fixer_util import Name, Call, LParen, RParen, ArgList, Dot
from
..
import
fixer_util
iter_exempt
=
fixer_util
.
consuming_calls
|
set
([
"iter"
])
iter_exempt
=
fixer_util
.
consuming_calls
|
{
"iter"
}
class
FixDict
(
fixer_base
.
BaseFix
):
...
...
Lib/lib2to3/patcomp.py
View file @
824a02c0
...
...
@@ -32,7 +32,7 @@ class PatternSyntaxError(Exception):
def
tokenize_wrapper
(
input
):
"""Tokenizes a string suppressing significant whitespace."""
skip
=
set
((
token
.
NEWLINE
,
token
.
INDENT
,
token
.
DEDENT
))
skip
=
{
token
.
NEWLINE
,
token
.
INDENT
,
token
.
DEDENT
}
tokens
=
tokenize
.
generate_tokens
(
io
.
StringIO
(
input
).
readline
)
for
quintuple
in
tokens
:
type
,
value
,
start
,
end
,
line_text
=
quintuple
...
...
Lib/lib2to3/refactor.py
View file @
824a02c0
...
...
@@ -57,7 +57,7 @@ def _get_head_types(pat):
# Always return leafs
if
pat
.
type
is
None
:
raise
_EveryNode
return
set
([
pat
.
type
])
return
{
pat
.
type
}
if
isinstance
(
pat
,
pytree
.
NegatedPattern
):
if
pat
.
content
:
...
...
@@ -133,7 +133,7 @@ def _detect_future_features(source):
def
advance
():
tok
=
next
(
gen
)
return
tok
[
0
],
tok
[
1
]
ignore
=
frozenset
(
(
token
.
NEWLINE
,
tokenize
.
NL
,
token
.
COMMENT
)
)
ignore
=
frozenset
(
{
token
.
NEWLINE
,
tokenize
.
NL
,
token
.
COMMENT
}
)
features
=
set
()
try
:
while
True
:
...
...
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