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
94981010
Commit
94981010
authored
Mar 07, 2013
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
revert last two commits - does not work for negative indices
parent
90c32eb4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
14 deletions
+2
-14
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+2
-14
No files found.
Cython/Compiler/ExprNodes.py
View file @
94981010
...
...
@@ -3649,16 +3649,9 @@ class SliceIndexNode(ExprNode):
stop_code
,
code
.
error_goto_if_null
(
result
,
self
.
pos
)))
else
:
if
self
.
base
.
type
is
list_type
:
cfunc
=
'PyList_GetSlice'
elif
self
.
base
.
type
is
tuple_type
:
cfunc
=
'PyTuple_GetSlice'
else
:
cfunc
=
'__Pyx_PySequence_GetSlice'
code
.
putln
(
"%s =
%s
(%s, %s, %s); %s"
%
(
"%s =
__Pyx_PySequence_GetSlice
(%s, %s, %s); %s"
%
(
result
,
cfunc
,
self
.
base
.
py_result
(),
start_code
,
stop_code
,
...
...
@@ -3668,13 +3661,8 @@ class SliceIndexNode(ExprNode):
def
generate_assignment_code
(
self
,
rhs
,
code
):
self
.
generate_subexpr_evaluation_code
(
code
)
if
self
.
type
.
is_pyobject
:
if
self
.
base
.
type
is
list_type
:
cfunc
=
'PyList_SetSlice'
else
:
cfunc
=
'__Pyx_PySequence_SetSlice'
code
.
put_error_if_neg
(
self
.
pos
,
"%s(%s, %s, %s, %s)"
%
(
cfunc
,
"__Pyx_PySequence_SetSlice(%s, %s, %s, %s)"
%
(
self
.
base
.
py_result
(),
self
.
start_code
(),
self
.
stop_code
(),
...
...
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