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
Kirill Smelkov
cython
Commits
60f1e618
Commit
60f1e618
authored
Apr 10, 2015
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '0.22.x'
parents
8d707e05
bf69c410
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
Cython/Utility/ObjectHandling.c
Cython/Utility/ObjectHandling.c
+1
-1
Cython/Utility/Optimize.c
Cython/Utility/Optimize.c
+3
-2
No files found.
Cython/Utility/ObjectHandling.c
View file @
60f1e618
...
@@ -430,7 +430,7 @@ static CYTHON_INLINE int __Pyx_DelItem_Generic(PyObject *o, PyObject *j) {
...
@@ -430,7 +430,7 @@ static CYTHON_INLINE int __Pyx_DelItem_Generic(PyObject *o, PyObject *j) {
}
}
static
CYTHON_INLINE
int
__Pyx_DelItemInt_Fast
(
PyObject
*
o
,
Py_ssize_t
i
,
static
CYTHON_INLINE
int
__Pyx_DelItemInt_Fast
(
PyObject
*
o
,
Py_ssize_t
i
,
CYTHON_
NCP_
UNUSED
int
is_list
,
CYTHON_NCP_UNUSED
int
wraparound
)
{
CYTHON_UNUSED
int
is_list
,
CYTHON_NCP_UNUSED
int
wraparound
)
{
#if CYTHON_COMPILING_IN_PYPY
#if CYTHON_COMPILING_IN_PYPY
if
(
is_list
||
PySequence_Check
(
o
))
{
if
(
is_list
||
PySequence_Check
(
o
))
{
return
PySequence_DelItem
(
o
,
i
);
return
PySequence_DelItem
(
o
,
i
);
...
...
Cython/Utility/Optimize.c
View file @
60f1e618
...
@@ -311,8 +311,9 @@ static CYTHON_INLINE PyObject* __Pyx_dict_iterator(PyObject* iterable, int is_di
...
@@ -311,8 +311,9 @@ static CYTHON_INLINE PyObject* __Pyx_dict_iterator(PyObject* iterable, int is_di
return
PyObject_GetIter
(
iterable
);
return
PyObject_GetIter
(
iterable
);
}
}
static
CYTHON_INLINE
int
__Pyx_dict_iter_next
(
PyObject
*
iter_obj
,
Py_ssize_t
orig_length
,
Py_ssize_t
*
ppos
,
static
CYTHON_INLINE
int
__Pyx_dict_iter_next
(
PyObject
**
pkey
,
PyObject
**
pvalue
,
PyObject
**
pitem
,
int
source_is_dict
)
{
PyObject
*
iter_obj
,
CYTHON_NCP_UNUSED
Py_ssize_t
orig_length
,
CYTHON_NCP_UNUSED
Py_ssize_t
*
ppos
,
PyObject
**
pkey
,
PyObject
**
pvalue
,
PyObject
**
pitem
,
int
source_is_dict
)
{
PyObject
*
next_item
;
PyObject
*
next_item
;
#if !CYTHON_COMPILING_IN_PYPY
#if !CYTHON_COMPILING_IN_PYPY
if
(
source_is_dict
)
{
if
(
source_is_dict
)
{
...
...
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