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
64c51006
Commit
64c51006
authored
9 years ago
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '0.23.x'
parents
bc88b4ae
9d5ee4fa
Changes
2
Show 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
...
...
This diff is collapsed.
Click to expand it.
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
(
...
...
This diff is collapsed.
Click to expand it.
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