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
8c7c5a47
Commit
8c7c5a47
authored
Apr 13, 2020
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '0.29.x'
parents
ce0806ec
b3c2e0d6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
11 deletions
+11
-11
CHANGES.rst
CHANGES.rst
+5
-6
Cython/Utility/CythonFunction.c
Cython/Utility/CythonFunction.c
+6
-5
No files found.
CHANGES.rst
View file @
8c7c5a47
...
...
@@ -116,8 +116,6 @@ Features added
* The Pythran ``shape`` attribute is supported.
Patch by Serge Guelton. (Github issue #3307)
* The ``@cython.binding`` decorator is available in Python code.
Bugs fixed
----------
...
...
@@ -130,10 +128,6 @@ Bugs fixed
``cython.locals()``.
Patch by David Woods. (Github issues #3391, #3142)
* Creating a fused function attached it to the garbage collector before it
was fully initialised, thus risking crashes in rare failure cases.
Original patch by achernomorov. (Github issue #3215)
* Diverging from the usual behaviour, ``len(memoryview)``, ``len(char*)``
and ``len(Py_UNICODE*)`` returned an unsigned ``size_t`` value. They now
return a signed ``Py_ssize_t``, like other usages of ``len()``.
...
...
@@ -246,10 +240,15 @@ Features added
Patch by Omer Ozarslan. (Github issue #2169)
* The ``@cython.binding`` decorator is available in Python code.
(Github issue #3505)
Bugs fixed
----------
* Creating a fused function attached it to the garbage collector before it
was fully initialised, thus risking crashes in rare failure cases.
Original patch by achernomorov. (Github issue #3215)
* The compilation cache in ``cython.inline("…")`` failed to take the language
level into account.
Patch by will-ca. (Github issue #3419)
...
...
Cython/Utility/CythonFunction.c
View file @
8c7c5a47
...
...
@@ -1156,7 +1156,6 @@ __pyx_FusedFunction_getitem(__pyx_FusedFunctionObject *self, PyObject *idx)
if
(
PyTuple_Check
(
idx
))
{
PyObject
*
list
=
PyList_New
(
0
);
Py_ssize_t
n
=
PyTuple_GET_SIZE
(
idx
);
PyObject
*
string
=
NULL
;
PyObject
*
sep
=
NULL
;
int
i
;
...
...
@@ -1164,19 +1163,21 @@ __pyx_FusedFunction_getitem(__pyx_FusedFunctionObject *self, PyObject *idx)
return
NULL
;
for
(
i
=
0
;
i
<
n
;
i
++
)
{
int
ret
;
PyObject
*
string
;
#if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS
PyObject
*
item
=
PyTuple_GET_ITEM
(
idx
,
i
);
#else
PyObject
*
item
=
PySequence_ITEM
(
idx
,
i
);
if
(
unlikely
(
!
item
))
goto
__pyx_err
or
;
PyObject
*
item
=
PySequence_ITEM
(
idx
,
i
);
if
(
unlikely
(
!
item
))
goto
__pyx_err
;
#endif
string
=
_obj_to_str
(
item
);
#if !(CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS)
Py_DECREF
(
item
);
#endif
if
(
unlikely
(
!
string
)
||
unlikely
(
PyList_Append
(
list
,
string
)
<
0
))
goto
__pyx_err
;
if
(
unlikely
(
!
string
))
goto
__pyx_err
;
ret
=
PyList_Append
(
list
,
string
);
Py_DECREF
(
string
);
if
(
unlikely
(
ret
<
0
))
goto
__pyx_err
;
}
sep
=
PyUnicode_FromString
(
"|"
);
...
...
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