Commit 8512993a authored by Stefan Behnel's avatar Stefan Behnel

partially re-enabled the numpy import function hack - only import_umath() is problematic

parent d093dcc0
# (disabled) hack to avoid C compiler warnings about unused functions in the NumPy header files
# hack to avoid C compiler warnings about unused functions in the NumPy header files
##cdef extern from *:
## bint FALSE "0"
## void import_array()
## void import_umath1(void* ret)
##
##if FALSE:
## import_array()
## import_umath1(NULL)
cdef extern from *:
bint FALSE "0"
void import_array()
# void import_umath()
if FALSE:
import_array()
# import_umath()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment