Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gwenaël Samain
cython
Commits
9470a79b
Commit
9470a79b
authored
Mar 24, 2018
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor code reformatting.
parent
cb440212
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
13 deletions
+14
-13
Cython/Compiler/Optimize.py
Cython/Compiler/Optimize.py
+14
-13
No files found.
Cython/Compiler/Optimize.py
View file @
9470a79b
...
...
@@ -1192,9 +1192,9 @@ class SwitchTransform(Visitor.EnvTransform):
if
common_var
is
None
:
self
.
visitchildren
(
node
)
return
node
cases
.
append
(
Nodes
.
SwitchCaseNode
(
pos
=
if_clause
.
pos
,
conditions
=
conditions
,
body
=
if_clause
.
body
))
cases
.
append
(
Nodes
.
SwitchCaseNode
(
pos
=
if_clause
.
pos
,
conditions
=
conditions
,
body
=
if_clause
.
body
))
condition_values
=
[
cond
for
case
in
cases
for
cond
in
case
.
conditions
]
...
...
@@ -1206,10 +1206,10 @@ class SwitchTransform(Visitor.EnvTransform):
return
node
common_var
=
unwrap_node
(
common_var
)
switch_node
=
Nodes
.
SwitchStatNode
(
pos
=
node
.
pos
,
test
=
common_var
,
cases
=
cases
,
else_clause
=
node
.
else_clause
)
switch_node
=
Nodes
.
SwitchStatNode
(
pos
=
node
.
pos
,
test
=
common_var
,
cases
=
cases
,
else_clause
=
node
.
else_clause
)
return
switch_node
def
visit_CondExprNode
(
self
,
node
):
...
...
@@ -1224,6 +1224,7 @@ class SwitchTransform(Visitor.EnvTransform):
or
self
.
has_duplicate_values
(
conditions
):
self
.
visitchildren
(
node
)
return
node
return
self
.
build_simple_switch_statement
(
node
,
common_var
,
conditions
,
not_in
,
node
.
true_val
,
node
.
false_val
)
...
...
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