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
3ee7625d
Commit
3ee7625d
authored
Nov 01, 2019
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '0.29.x'
parents
c75ed142
bfcaf163
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
11 deletions
+16
-11
CHANGES.rst
CHANGES.rst
+14
-1
tests/compile/fused_redeclare_T3111.pyx
tests/compile/fused_redeclare_T3111.pyx
+2
-10
No files found.
CHANGES.rst
View file @
3ee7625d
...
...
@@ -166,12 +166,15 @@ Other changes
*
Support
for
Python
2.6
was
removed
.
0.29.14
(
2019
-
??-??
)
0.29.14
(
2019
-
11
-
01
)
====================
Bugs
fixed
----------
*
The
generated
code
failed
to
initialise
the
``
tp_print
``
slot
in
CPython
3.8
.
Patches
by
Pablo
Galindo
and
Orivej
Desh
(
Github
issues
#
3171
,
#
3201
).
*
``?``
for
``
bool
``
was
missing
from
the
supported
NumPy
dtypes
.
Patch
by
Max
Klein
.
(
Github
issue
#
2675
)
...
...
@@ -185,6 +188,16 @@ Bugs fixed
*
An
incorrect
compiler
warning
was
fixed
in
automatic
C
++
string
conversions
.
Patch
by
Gerion
Entrup
.
(
Github
issue
#
3108
)
*
Error
reports
in
the
Jupyter
notebook
showed
unhelpful
stack
traces
.
Patch
by
Matthew
Edwards
(
Github
issue
#
3196
).
*
``
Python
.
h
``
is
now
also
included
explicitly
from
``
public
``
header
files
.
(
Github
issue
#
3133
).
*
Distutils
builds
with
``--
parallel
``
did
not
work
when
using
Cython
's
deprecated ``build_ext`` command.
Patch by Alphadelta14 (Github issue #3187).
Other changes
-------------
...
...
tests/compile/fused_redeclare_T3111.pyx
View file @
3ee7625d
...
...
@@ -22,18 +22,10 @@ def foo(dtype_t[:] a, dtype_t_out[:, :] b):
# "__pyxutil:16:4: '___pyx_npy_uint8' redeclared". The remaining warnings are
# unrelated to this test.
_WARNINGS
=
"""
2
2
:10: 'cpdef_method' redeclared
3
3
:10: 'cpdef_cname_method' redeclared
2
0
:10: 'cpdef_method' redeclared
3
1
:10: 'cpdef_cname_method' redeclared
446:72: Argument evaluation order in C function call is undefined and may not be as expected
446:72: Argument evaluation order in C function call is undefined and may not be as expected
749:34: Argument evaluation order in C function call is undefined and may not be as expected
749:34: Argument evaluation order in C function call is undefined and may not be as expected
943:27: Ambiguous exception value, same as default return value: 0
943:27: Ambiguous exception value, same as default return value: 0
974:29: Ambiguous exception value, same as default return value: 0
974:29: Ambiguous exception value, same as default return value: 0
1002:46: Ambiguous exception value, same as default return value: 0
1002:46: Ambiguous exception value, same as default return value: 0
1092:29: Ambiguous exception value, same as default return value: 0
1092:29: Ambiguous exception value, same as default return value: 0
"""
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