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
122904c4
Commit
122904c4
authored
Jan 21, 2015
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a couple of reversed iteration warnings.
parent
4b0a7274
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
6 deletions
+10
-6
Cython/Compiler/Optimize.py
Cython/Compiler/Optimize.py
+6
-2
tests/run/reversed_iteration.pyx
tests/run/reversed_iteration.pyx
+4
-4
No files found.
Cython/Compiler/Optimize.py
View file @
122904c4
...
...
@@ -680,7 +680,11 @@ class IterationTransform(Visitor.EnvTransform):
# evaluate the same expression as above at runtime
bound2_ref_node
=
UtilNodes
.
LetRefNode
(
bound2
)
spanning_type
=
PyrexTypes
.
spanning_type
(
bound1
.
type
,
bound2
.
type
)
spanning_step_type
=
PyrexTypes
.
spanning_type
(
spanning_type
,
step
.
type
)
if
step
.
type
.
is_int
and
abs
(
step_value
)
<
0x7FFF
:
# Avoid loss of integer precision warnings.
spanning_step_type
=
PyrexTypes
.
spanning_type
(
spanning_type
,
PyrexTypes
.
c_int_type
)
else
:
spanning_step_type
=
PyrexTypes
.
spanning_type
(
spanning_type
,
step
.
type
)
if
step_value
<
0
:
begin_value
=
bound2_ref_node
...
...
@@ -706,7 +710,7 @@ class IterationTransform(Visitor.EnvTransform):
type
=
spanning_step_type
),
operator
=
'*'
,
operand2
=
ExprNodes
.
DivNode
(
bound1
.
pos
,
bound1
.
pos
,
operand1
=
ExprNodes
.
SubNode
(
bound1
.
pos
,
operand1
=
ExprNodes
.
SubNode
(
...
...
tests/run/reversed_iteration.pyx
View file @
122904c4
...
...
@@ -301,7 +301,7 @@ def reversed_range_step3_py_obj_left(a, int b):
Traceback (most recent call last):
TypeError: an integer is required
"""
cdef
int
i
cdef
long
i
result
=
[]
for
i
in
reversed
(
range
(
a
,
b
,
3
)):
result
.
append
(
i
)
...
...
@@ -312,7 +312,7 @@ def reversed_range_step3_py_obj_right(int a, b):
Traceback (most recent call last):
TypeError: an integer is required
"""
cdef
int
i
cdef
long
i
result
=
[]
for
i
in
reversed
(
range
(
a
,
b
,
3
)):
result
.
append
(
i
)
...
...
@@ -323,7 +323,7 @@ def reversed_range_step3_neg_py_obj_left(a, int b):
Traceback (most recent call last):
TypeError: an integer is required
"""
cdef
int
i
cdef
long
i
result
=
[]
for
i
in
reversed
(
range
(
a
,
b
,
-
3
)):
result
.
append
(
i
)
...
...
@@ -334,7 +334,7 @@ def reversed_range_step3_neg_py_obj_right(int a, b):
Traceback (most recent call last):
TypeError: an integer is required
"""
cdef
int
i
cdef
long
i
result
=
[]
for
i
in
reversed
(
range
(
a
,
b
,
-
3
)):
result
.
append
(
i
)
...
...
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