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
Boxiang Sun
cython
Commits
c6177dfd
Commit
c6177dfd
authored
Sep 07, 2018
by
scoder
Committed by
GitHub
Sep 07, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2583 from cjgibson/2508-slicing-fixes
Support two-element slicing with literal None
parents
b1960185
459e108f
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
491 additions
and
16 deletions
+491
-16
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+40
-0
tests/run/slice2.pyx
tests/run/slice2.pyx
+72
-15
tests/run/typed_slice.pyx
tests/run/typed_slice.pyx
+379
-1
No files found.
Cython/Compiler/ExprNodes.py
View file @
c6177dfd
...
@@ -4794,10 +4794,50 @@ class SliceIndexNode(ExprNode):
...
@@ -4794,10 +4794,50 @@ class SliceIndexNode(ExprNode):
step
=
none_node
step
=
none_node
).
analyse_types
(
env
)
).
analyse_types
(
env
)
else
:
else
:
from
.UtilNodes
import
EvalWithTempExprNode
,
ResultRefNode
c_int
=
PyrexTypes
.
c_py_ssize_t_type
c_int
=
PyrexTypes
.
c_py_ssize_t_type
if
self
.
start
:
if
self
.
start
:
if
self
.
start
.
type
.
is_pyobject
:
start_ref
=
ResultRefNode
(
self
.
start
)
start_expr
=
CondExprNode
(
self
.
start
.
pos
,
true_val
=
IntNode
(
self
.
start
.
pos
,
value
=
'0'
,
constant_result
=
0
),
false_val
=
start_ref
,
test
=
PrimaryCmpNode
(
self
.
start
.
pos
,
operand1
=
start_ref
,
operator
=
'is'
,
operand2
=
NoneNode
(
self
.
start
.
pos
),
)
)
start_expr
=
start_expr
.
analyse_types
(
env
)
start_expr
=
start_expr
.
coerce_to
(
c_int
,
env
)
self
.
start
=
EvalWithTempExprNode
(
start_ref
,
start_expr
)
self
.
start
=
self
.
start
.
coerce_to
(
c_int
,
env
)
self
.
start
=
self
.
start
.
coerce_to
(
c_int
,
env
)
if
self
.
stop
:
if
self
.
stop
:
if
self
.
stop
.
type
.
is_pyobject
:
stop_ref
=
ResultRefNode
(
self
.
stop
)
stop_expr
=
CondExprNode
(
self
.
stop
.
pos
,
true_val
=
IntNode
(
self
.
stop
.
pos
,
value
=
'PY_SSIZE_T_MAX'
),
false_val
=
stop_ref
,
test
=
PrimaryCmpNode
(
self
.
stop
.
pos
,
operand1
=
stop_ref
,
operator
=
'is'
,
operand2
=
NoneNode
(
self
.
stop
.
pos
),
)
)
stop_expr
=
stop_expr
.
analyse_types
(
env
)
stop_expr
=
stop_expr
.
coerce_to
(
c_int
,
env
)
self
.
stop
=
EvalWithTempExprNode
(
stop_ref
,
stop_expr
)
self
.
stop
=
self
.
stop
.
coerce_to
(
c_int
,
env
)
self
.
stop
=
self
.
stop
.
coerce_to
(
c_int
,
env
)
self
.
is_temp
=
1
self
.
is_temp
=
1
return
self
return
self
...
...
tests/run/slice2.pyx
View file @
c6177dfd
# mode: run
# mode: run
# tag: slicing
# tag:
list, slice,
slicing
def
test_full
(
seq
):
def
test_full
(
seq
):
"""
"""
...
@@ -18,21 +18,24 @@ def test_full(seq):
...
@@ -18,21 +18,24 @@ def test_full(seq):
def
test_start
(
seq
,
start
):
def
test_start
(
seq
,
start
):
"""
"""
>>> test_start([1,2,3,4], 2)
>>> l = [1,2,3,4]
>>> test_start(l, 2)
[3, 4]
[3, 4]
>>> test_start(
[1,2,3,4]
, 3)
>>> test_start(
l
, 3)
[4]
[4]
>>> test_start(
[1,2,3,4]
, 4)
>>> test_start(
l
, 4)
[]
[]
>>> test_start(
[1,2,3,4]
, 8)
>>> test_start(
l
, 8)
[]
[]
>>> test_start(
[1,2,3,4]
, -3)
>>> test_start(
l
, -3)
[2, 3, 4]
[2, 3, 4]
>>> test_start([1,2,3,4], -4)
>>> test_start(l, -4)
[1, 2, 3, 4]
>>> test_start(l, -8)
[1, 2, 3, 4]
[1, 2, 3, 4]
>>> test_start(
[1,2,3,4], -8
)
>>> test_start(
l, 0
)
[1, 2, 3, 4]
[1, 2, 3, 4]
>>> test_start(
[1,2,3,4], 0
)
>>> test_start(
l, None
)
[1, 2, 3, 4]
[1, 2, 3, 4]
>>> try: test_start(42, 2, 3)
>>> try: test_start(42, 2, 3)
... except TypeError: pass
... except TypeError: pass
...
@@ -42,24 +45,52 @@ def test_start(seq, start):
...
@@ -42,24 +45,52 @@ def test_start(seq, start):
def
test_stop
(
seq
,
stop
):
def
test_stop
(
seq
,
stop
):
"""
"""
>>> test_stop([1,2,3,4], 3)
>>> l = [1,2,3,4]
>>> test_stop(l, 3)
[1, 2, 3]
[1, 2, 3]
>>> test_stop(
[1,2,3,4]
, -1)
>>> test_stop(
l
, -1)
[1, 2, 3]
[1, 2, 3]
>>> test_stop(
[1,2,3,4]
, -3)
>>> test_stop(
l
, -3)
[1]
[1]
>>> test_stop(
[1,2,3,4]
, -4)
>>> test_stop(
l
, -4)
[]
[]
>>> test_stop(
[1,2,3,4]
, -8)
>>> test_stop(
l
, -8)
[]
[]
>>> test_stop(
[1,2,3,4]
, 0)
>>> test_stop(
l
, 0)
[]
[]
>>> test_stop(l, None)
[1, 2, 3, 4]
>>> try: test_stop(42, 3)
>>> try: test_stop(42, 3)
... except TypeError: pass
... except TypeError: pass
"""
"""
obj
=
seq
[:
stop
]
obj
=
seq
[:
stop
]
return
obj
return
obj
def
test_step
(
seq
,
step
):
"""
>>> l = [1,2,3,4]
>>> test_step(l, -1)
[4, 3, 2, 1]
>>> test_step(l, 1)
[1, 2, 3, 4]
>>> test_step(l, 2)
[1, 3]
>>> test_step(l, 3)
[1, 4]
>>> test_step(l, -3)
[4, 1]
>>> test_step(l, None)
[1, 2, 3, 4]
>>> try: test_step(l, 0)
... except ValueError: pass
...
>>> try: test_step(42, 0)
... except TypeError: pass
...
"""
obj
=
seq
[::
step
]
return
obj
def
test_start_and_stop
(
seq
,
start
,
stop
):
def
test_start_and_stop
(
seq
,
start
,
stop
):
"""
"""
>>> l = [1,2,3,4]
>>> l = [1,2,3,4]
...
@@ -67,12 +98,38 @@ def test_start_and_stop(seq, start, stop):
...
@@ -67,12 +98,38 @@ def test_start_and_stop(seq, start, stop):
[3]
[3]
>>> test_start_and_stop(l, -3, -1)
>>> test_start_and_stop(l, -3, -1)
[2, 3]
[2, 3]
>>> test_start_and_stop(l, None, None)
[1, 2, 3, 4]
>>> try: test_start_and_stop(42, 2, 3)
>>> try: test_start_and_stop(42, 2, 3)
... except TypeError: pass
... except TypeError: pass
"""
"""
obj
=
seq
[
start
:
stop
]
obj
=
seq
[
start
:
stop
]
return
obj
return
obj
def
test_start_stop_and_step
(
seq
,
start
,
stop
,
step
):
"""
>>> l = [1,2,3,4,5]
>>> test_start_stop_and_step(l, 0, 5, 1)
[1, 2, 3, 4, 5]
>>> test_start_stop_and_step(l, 5, -1, -1)
[]
>>> test_start_stop_and_step(l, 5, None, -1)
[5, 4, 3, 2, 1]
>>> test_start_stop_and_step(l, 2, 5, 2)
[3, 5]
>>> test_start_stop_and_step(l, -100, 100, 1)
[1, 2, 3, 4, 5]
>>> test_start_stop_and_step(l, None, None, None)
[1, 2, 3, 4, 5]
>>> try: test_start_stop_and_step(l, None, None, 0)
... except ValueError: pass
...
>>> try: test_start_stop_and_step(42, 1, 2, 3)
... except TypeError: pass
"""
obj
=
seq
[
start
:
stop
:
step
]
return
obj
class
A
(
object
):
class
A
(
object
):
pass
pass
...
...
tests/run/typed_slice.pyx
View file @
c6177dfd
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