Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
cython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenVMS
Python
Modules
cython
Commits
afb7b7116725
Commit
afb7b7116725
authored
12 years ago
by
Stefan Behnel
Browse files
Options
Downloads
Patches
Plain Diff
work around missing relative cimport support in cythonize()
parent
568e05c3d342
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
Cython/Includes/libc/locale.pxd
+1
-1
1 addition, 1 deletion
Cython/Includes/libc/locale.pxd
Cython/Includes/libc/stdio.pxd
+1
-1
1 addition, 1 deletion
Cython/Includes/libc/stdio.pxd
Cython/Includes/libc/stdlib.pxd
+1
-1
1 addition, 1 deletion
Cython/Includes/libc/stdlib.pxd
with
3 additions
and
3 deletions
Cython/Includes/libc/locale.pxd
+
1
−
1
View file @
afb7b711
# 7.11 Localization <locale.h>
# deprecated cimport for backwards compatibility:
from
.string
cimport
const_char
from
libc
.string
cimport
const_char
cdef
extern
from
"
locale.h
"
nogil
:
...
...
This diff is collapsed.
Click to expand it.
Cython/Includes/libc/stdio.pxd
+
1
−
1
View file @
afb7b711
...
...
@@ -2,7 +2,7 @@
# deprecated cimports for backwards compatibility:
from
.string
cimport
const_char
,
const_void
from
libc
.string
cimport
const_char
,
const_void
cdef
extern
from
"
stdio.h
"
nogil
:
...
...
This diff is collapsed.
Click to expand it.
Cython/Includes/libc/stdlib.pxd
+
1
−
1
View file @
afb7b711
# 7.20 General utilities <stdlib.h>
# deprecated cimports for backwards compatibility:
from
.string
cimport
const_char
,
const_void
from
libc
.string
cimport
const_char
,
const_void
cdef
extern
from
"
stdlib.h
"
nogil
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment