Commit b1ea381c authored by Stefan Behnel's avatar Stefan Behnel

Fix include file: "pytime.h" is actually included by "Python.h" and should not...

Fix include file: "pytime.h" is actually included by "Python.h" and should not get included directly.
parent 7787142d
......@@ -5,7 +5,7 @@ Cython implementation of (parts of) the standard library time module.
from libc.stdint cimport int64_t
from cpython.exc cimport PyErr_SetFromErrno
cdef extern from "pytime.h":
cdef extern from "Python.h":
ctypedef int64_t _PyTime_t
_PyTime_t _PyTime_GetSystemClock() nogil
double _PyTime_AsSecondsDouble(_PyTime_t t) nogil
......
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