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
Xavier Thompson
cython
Commits
f5447b76
Commit
f5447b76
authored
Jul 05, 2019
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '0.29.x'
parents
edf66a93
bc5ae161
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
4 deletions
+20
-4
CHANGES.rst
CHANGES.rst
+17
-1
Cython/Compiler/Code.py
Cython/Compiler/Code.py
+1
-1
Cython/Utility/ObjectHandling.c
Cython/Utility/ObjectHandling.c
+2
-2
No files found.
CHANGES.rst
View file @
f5447b76
...
@@ -150,13 +150,29 @@ Other changes
...
@@ -150,13 +150,29 @@ Other changes
*
Support
for
Python
2.6
was
removed
.
*
Support
for
Python
2.6
was
removed
.
0.29.12
(
2019
-
07
-??)
====================
Bugs
fixed
----------
*
Fix
compile
error
in
CPython
3.8
b2
regarding
the
``
PyCode_New
()``
signature
.
(
Github
issue
#
3031
)
*
Fix
a
C
compiler
warning
about
a
missing
``
int
``
downcast
.
(
Github
issue
#
3028
)
*
Fix
reported
error
positions
of
undefined
builtins
and
constants
.
Patch
by
Orivej
Desh
.
(
Github
issue
#
3030
)
0.29.11
(
2019
-
06
-
30
)
0.29.11
(
2019
-
06
-
30
)
====================
====================
Bugs
fixed
Bugs
fixed
----------
----------
*
Fix
compile
error
in
CPython
3.8
b2
.
*
Fix
compile
error
in
CPython
3.8
b2
regarding
the
``
PyCode_New
()``
signature
.
Patch
by
Nick
Coghlan
.
(
Github
issue
#
3009
)
Patch
by
Nick
Coghlan
.
(
Github
issue
#
3009
)
*
Invalid
C
code
generated
for
lambda
functions
in
cdef
methods
.
*
Invalid
C
code
generated
for
lambda
functions
in
cdef
methods
.
...
...
Cython/Compiler/Code.py
View file @
f5447b76
...
@@ -2339,7 +2339,7 @@ class CCodeWriter(object):
...
@@ -2339,7 +2339,7 @@ class CCodeWriter(object):
def
error_goto
(
self
,
pos
):
def
error_goto
(
self
,
pos
):
lbl
=
self
.
funcstate
.
error_label
lbl
=
self
.
funcstate
.
error_label
self
.
funcstate
.
use_label
(
lbl
)
self
.
funcstate
.
use_label
(
lbl
)
if
not
pos
:
if
pos
is
None
:
return
'goto %s;'
%
lbl
return
'goto %s;'
%
lbl
return
"__PYX_ERR(%s, %s, %s)"
%
(
return
"__PYX_ERR(%s, %s, %s)"
%
(
self
.
lookup_filename
(
pos
[
0
]),
self
.
lookup_filename
(
pos
[
0
]),
...
...
Cython/Utility/ObjectHandling.c
View file @
f5447b76
...
@@ -2192,12 +2192,12 @@ static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args,
...
@@ -2192,12 +2192,12 @@ static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args,
//#elif PY_MAJOR_VERSION >= 3
//#elif PY_MAJOR_VERSION >= 3
#if PY_MAJOR_VERSION >= 3
#if PY_MAJOR_VERSION >= 3
result
=
PyEval_EvalCodeEx
((
PyObject
*
)
co
,
globals
,
(
PyObject
*
)
NULL
,
result
=
PyEval_EvalCodeEx
((
PyObject
*
)
co
,
globals
,
(
PyObject
*
)
NULL
,
args
,
nargs
,
args
,
(
int
)
nargs
,
k
,
(
int
)
nk
,
k
,
(
int
)
nk
,
d
,
(
int
)
nd
,
kwdefs
,
closure
);
d
,
(
int
)
nd
,
kwdefs
,
closure
);
#else
#else
result
=
PyEval_EvalCodeEx
(
co
,
globals
,
(
PyObject
*
)
NULL
,
result
=
PyEval_EvalCodeEx
(
co
,
globals
,
(
PyObject
*
)
NULL
,
args
,
nargs
,
args
,
(
int
)
nargs
,
k
,
(
int
)
nk
,
k
,
(
int
)
nk
,
d
,
(
int
)
nd
,
closure
);
d
,
(
int
)
nd
,
closure
);
#endif
#endif
...
...
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