Skip to content
Snippets Groups Projects
Commit afb7b7116725 authored by Stefan Behnel's avatar Stefan Behnel
Browse files

work around missing relative cimport support in cythonize()

parent 568e05c3d342
No related branches found
No related tags found
No related merge requests found
# 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:
......
......@@ -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:
......
# 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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment