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
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
64c51006
Commit
64c51006
authored
Oct 04, 2015
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '0.23.x'
parents
bc88b4ae
9d5ee4fa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
Cython/Compiler/Optimize.py
Cython/Compiler/Optimize.py
+1
-1
tests/run/min_max_optimization.pyx
tests/run/min_max_optimization.pyx
+10
-0
No files found.
Cython/Compiler/Optimize.py
View file @
64c51006
...
...
@@ -1739,7 +1739,7 @@ class EarlyReplaceBuiltinCalls(Visitor.EnvTransform):
if
len
(
args
)
<=
1
:
if
len
(
args
)
==
1
and
args
[
0
].
is_sequence_constructor
:
args
=
args
[
0
].
args
if
len
(
args
)
<
1
:
if
len
(
args
)
<
=
1
:
# leave this to Python
return
node
...
...
tests/run/min_max_optimization.pyx
View file @
64c51006
...
...
@@ -8,6 +8,16 @@ class loud_list(list):
# max()
def
test_max1
(
x
):
"""
>>> test_max1([1, 2, 3])
3
>>> test_max1([2])
2
"""
return
max
(
x
)
@
cython
.
test_assert_path_exists
(
'//PrintStatNode//CondExprNode'
)
@
cython
.
test_fail_if_path_exists
(
...
...
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