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
9c5679d6
Commit
9c5679d6
authored
Jun 28, 2019
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '0.29.x'
parents
7d1e4787
f8cd55f2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
CHANGES.rst
CHANGES.rst
+6
-0
Cython/Utility/ModuleSetupCode.c
Cython/Utility/ModuleSetupCode.c
+1
-1
No files found.
CHANGES.rst
View file @
9c5679d6
...
...
@@ -162,6 +162,12 @@ Bugs fixed
*
Support
slice
handling
in
newer
Pythran
versions
.
(
Github
issue
#
2989
)
*
The
search
order
for
include
files
was
changed
.
Previously
it
was
``
include_directories
``,
``
Cython
/
Includes
``,
``
sys
.
path
``.
Now
it
is
``
include_directories
``,
``
sys
.
path
``,
``
Cython
/
Includes
``.
This
was
done
to
allow
third
-
party
``*.
pxd
``
files
to
override
the
ones
in
Cython
.
(
Github
issue
#
2905
)
0.29.10
(
2019
-
06
-
02
)
====================
...
...
Cython/Utility/ModuleSetupCode.c
View file @
9c5679d6
...
...
@@ -400,7 +400,7 @@ class __Pyx_FakeReference {
#if PY_VERSION_HEX < 0x030800A4
#define __Pyx_PyCode_New(a, p, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) \
PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)
#elif PY_VERSION_HEX >
0x030800B1
#elif PY_VERSION_HEX >
= 0x030800B2
#define __Pyx_PyCode_New(a, p, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) \
PyCode_NewWithPosOnlyArgs(a, p, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)
#else
...
...
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