Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
cython
Commits
f6ccc40b
Commit
f6ccc40b
authored
Aug 13, 2008
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change include to import for python.pxd
parent
85fee25b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
27 deletions
+23
-27
Cython/Includes/python.pxd
Cython/Includes/python.pxd
+23
-27
No files found.
Cython/Includes/python.pxd
View file @
f6ccc40b
...
...
@@ -118,32 +118,28 @@
# 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'
include
'python_exc.pxi'
include
'python_module.pxi'
include
'python_mem.pxi'
include
'python_tuple.pxi'
include
'python_list.pxi'
include
'python_object.pxi'
include
'python_sequence.pxi'
include
'python_mapping.pxi'
include
'python_iterator.pxi'
include
'python_type.pxi'
include
'python_number.pxi'
include
'python_int.pxi'
include
'python_bool.pxi'
include
'python_long.pxi'
include
'python_float.pxi'
include
'python_complex.pxi'
include
'python_string.pxi'
include
'python_dict.pxi'
include
'python_instance.pxi'
include
'python_function.pxi'
include
'python_method.pxi'
include
'python_set.pxi'
from
python_ref
cimport
*
from
python_exc
cimport
*
from
python_module
cimport
*
from
python_mem
cimport
*
from
python_tuple
cimport
*
from
python_list
cimport
*
from
python_object
cimport
*
from
python_sequence
cimport
*
from
python_mapping
cimport
*
from
python_iterator
cimport
*
from
python_type
cimport
*
from
python_number
cimport
*
from
python_int
cimport
*
from
python_bool
cimport
*
from
python_long
cimport
*
from
python_float
cimport
*
from
python_complex
cimport
*
from
python_string
cimport
*
from
python_dict
cimport
*
from
python_instance
cimport
*
from
python_function
cimport
*
from
python_method
cimport
*
from
python_set
cimport
*
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment