Commit 53c184fd authored by Stefan Behnel's avatar Stefan Behnel

fix cimports of PyObject type in cpython capi pxd files

parent bdb11ae2
from cpython.ref cimport PyObject from .object cimport PyObject
cdef extern from "Python.h": cdef extern from "Python.h":
ctypedef struct va_list ctypedef struct va_list
......
from cpython.ref cimport PyObject
cdef extern from "Python.h": cdef extern from "Python.h":
......
from cpython.ref cimport PyObject from cpython.object cimport PyObject
cdef extern from "Python.h": cdef extern from "Python.h":
ctypedef struct PyTypeObject: ctypedef struct PyTypeObject:
......
from cpython.ref cimport PyObject from .object cimport PyObject
cdef extern from "Python.h": cdef extern from "Python.h":
......
from cpython.ref cimport PyObject from .object cimport PyObject
cdef extern from "Python.h": cdef extern from "Python.h":
......
from cpython.ref cimport PyObject from .object cimport PyObject
cdef extern from "Python.h": cdef extern from "Python.h":
......
from cpython.ref cimport PyObject
cdef extern from "Python.h": cdef extern from "Python.h":
##################################################################### #####################################################################
......
from cpython.ref cimport PyObject from .object cimport PyObject
cdef extern from "Python.h": cdef extern from "Python.h":
......
from .object cimport PyObject
cdef extern from "Python.h": cdef extern from "Python.h":
ctypedef void PyObject
############################################################################ ############################################################################
# 7.5.4 Method Objects # 7.5.4 Method Objects
############################################################################ ############################################################################
......
from cpython.ref cimport PyObject from .object cimport PyObject
cdef extern from "Python.h": cdef extern from "Python.h":
ctypedef struct _inittab ctypedef struct _inittab
......
from cpython.ref cimport PyObject from .object cimport PyObject
cdef extern from "Python.h": cdef extern from "Python.h":
......
from cpython.ref cimport PyObject
# available since Python 3.1! # available since Python 3.1!
......
# Thread and interpreter state structures and their interfaces # Thread and interpreter state structures and their interfaces
from cpython.ref cimport PyObject from .object cimport PyObject
cdef extern from "Python.h": cdef extern from "Python.h":
......
from cpython.ref cimport PyObject from .object cimport PyObject
cdef extern from "Python.h": cdef extern from "Python.h":
......
from cpython.ref cimport PyObject from .object cimport PyObject
cdef extern from "Python.h": cdef extern from "Python.h":
ctypedef struct va_list ctypedef struct va_list
......
from cpython.ref cimport PyObject from .object cimport PyObject
cdef extern from "Python.h": cdef extern from "Python.h":
......
from cpython.ref cimport PyObject from .object cimport PyObject
cdef extern from "Python.h": cdef extern from "Python.h":
......
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