Commit f6ccc40b authored by Robert Bradshaw's avatar Robert Bradshaw

change include to import for python.pxd

parent 85fee25b
...@@ -118,32 +118,28 @@ ...@@ -118,32 +118,28 @@
# just to be sure you understand what is going on. # just to be sure you understand what is going on.
# #
################################################################# #################################################################
cdef extern from "Python.h":
ctypedef void PyObject
ctypedef void PyTypeObject
ctypedef struct FILE
include 'python_ref.pxi' from python_ref cimport *
include 'python_exc.pxi' from python_exc cimport *
include 'python_module.pxi' from python_module cimport *
include 'python_mem.pxi' from python_mem cimport *
include 'python_tuple.pxi' from python_tuple cimport *
include 'python_list.pxi' from python_list cimport *
include 'python_object.pxi' from python_object cimport *
include 'python_sequence.pxi' from python_sequence cimport *
include 'python_mapping.pxi' from python_mapping cimport *
include 'python_iterator.pxi' from python_iterator cimport *
include 'python_type.pxi' from python_type cimport *
include 'python_number.pxi' from python_number cimport *
include 'python_int.pxi' from python_int cimport *
include 'python_bool.pxi' from python_bool cimport *
include 'python_long.pxi' from python_long cimport *
include 'python_float.pxi' from python_float cimport *
include 'python_complex.pxi' from python_complex cimport *
include 'python_string.pxi' from python_string cimport *
include 'python_dict.pxi' from python_dict cimport *
include 'python_instance.pxi' from python_instance cimport *
include 'python_function.pxi' from python_function cimport *
include 'python_method.pxi' from python_method cimport *
include 'python_set.pxi' from python_set cimport *
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