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
Kirill Smelkov
cython
Commits
53c184fd
Commit
53c184fd
authored
Apr 04, 2015
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix cimports of PyObject type in cpython capi pxd files
parent
bdb11ae2
Changes
17
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
15 additions
and
17 deletions
+15
-17
Cython/Includes/cpython/bytes.pxd
Cython/Includes/cpython/bytes.pxd
+1
-1
Cython/Includes/cpython/cobject.pxd
Cython/Includes/cpython/cobject.pxd
+0
-1
Cython/Includes/cpython/datetime.pxd
Cython/Includes/cpython/datetime.pxd
+1
-1
Cython/Includes/cpython/dict.pxd
Cython/Includes/cpython/dict.pxd
+1
-1
Cython/Includes/cpython/exc.pxd
Cython/Includes/cpython/exc.pxd
+1
-1
Cython/Includes/cpython/function.pxd
Cython/Includes/cpython/function.pxd
+1
-1
Cython/Includes/cpython/getargs.pxd
Cython/Includes/cpython/getargs.pxd
+0
-1
Cython/Includes/cpython/list.pxd
Cython/Includes/cpython/list.pxd
+1
-1
Cython/Includes/cpython/method.pxd
Cython/Includes/cpython/method.pxd
+2
-1
Cython/Includes/cpython/module.pxd
Cython/Includes/cpython/module.pxd
+1
-1
Cython/Includes/cpython/number.pxd
Cython/Includes/cpython/number.pxd
+1
-1
Cython/Includes/cpython/pycapsule.pxd
Cython/Includes/cpython/pycapsule.pxd
+0
-1
Cython/Includes/cpython/pystate.pxd
Cython/Includes/cpython/pystate.pxd
+1
-1
Cython/Includes/cpython/sequence.pxd
Cython/Includes/cpython/sequence.pxd
+1
-1
Cython/Includes/cpython/string.pxd
Cython/Includes/cpython/string.pxd
+1
-1
Cython/Includes/cpython/tuple.pxd
Cython/Includes/cpython/tuple.pxd
+1
-1
Cython/Includes/cpython/weakref.pxd
Cython/Includes/cpython/weakref.pxd
+1
-1
No files found.
Cython/Includes/cpython/bytes.pxd
View file @
53c184fd
from
cpython.ref
cimport
PyObject
from
.object
cimport
PyObject
cdef
extern
from
"Python.h"
:
ctypedef
struct
va_list
...
...
Cython/Includes/cpython/cobject.pxd
View file @
53c184fd
from
cpython.ref
cimport
PyObject
cdef
extern
from
"Python.h"
:
...
...
Cython/Includes/cpython/datetime.pxd
View file @
53c184fd
from
cpython.
ref
cimport
PyObject
from
cpython.
object
cimport
PyObject
cdef
extern
from
"Python.h"
:
ctypedef
struct
PyTypeObject
:
...
...
Cython/Includes/cpython/dict.pxd
View file @
53c184fd
from
cpython.ref
cimport
PyObject
from
.object
cimport
PyObject
cdef
extern
from
"Python.h"
:
...
...
Cython/Includes/cpython/exc.pxd
View file @
53c184fd
from
cpython.ref
cimport
PyObject
from
.object
cimport
PyObject
cdef
extern
from
"Python.h"
:
...
...
Cython/Includes/cpython/function.pxd
View file @
53c184fd
from
cpython.ref
cimport
PyObject
from
.object
cimport
PyObject
cdef
extern
from
"Python.h"
:
...
...
Cython/Includes/cpython/getargs.pxd
View file @
53c184fd
from
cpython.ref
cimport
PyObject
cdef
extern
from
"Python.h"
:
#####################################################################
...
...
Cython/Includes/cpython/list.pxd
View file @
53c184fd
from
cpython.ref
cimport
PyObject
from
.object
cimport
PyObject
cdef
extern
from
"Python.h"
:
...
...
Cython/Includes/cpython/method.pxd
View file @
53c184fd
from
.object
cimport
PyObject
cdef
extern
from
"Python.h"
:
ctypedef
void
PyObject
############################################################################
# 7.5.4 Method Objects
############################################################################
...
...
Cython/Includes/cpython/module.pxd
View file @
53c184fd
from
cpython.ref
cimport
PyObject
from
.object
cimport
PyObject
cdef
extern
from
"Python.h"
:
ctypedef
struct
_inittab
...
...
Cython/Includes/cpython/number.pxd
View file @
53c184fd
from
cpython.ref
cimport
PyObject
from
.object
cimport
PyObject
cdef
extern
from
"Python.h"
:
...
...
Cython/Includes/cpython/pycapsule.pxd
View file @
53c184fd
from
cpython.ref
cimport
PyObject
# available since Python 3.1!
...
...
Cython/Includes/cpython/pystate.pxd
View file @
53c184fd
# Thread and interpreter state structures and their interfaces
from
cpython.ref
cimport
PyObject
from
.object
cimport
PyObject
cdef
extern
from
"Python.h"
:
...
...
Cython/Includes/cpython/sequence.pxd
View file @
53c184fd
from
cpython.ref
cimport
PyObject
from
.object
cimport
PyObject
cdef
extern
from
"Python.h"
:
...
...
Cython/Includes/cpython/string.pxd
View file @
53c184fd
from
cpython.ref
cimport
PyObject
from
.object
cimport
PyObject
cdef
extern
from
"Python.h"
:
ctypedef
struct
va_list
...
...
Cython/Includes/cpython/tuple.pxd
View file @
53c184fd
from
cpython.ref
cimport
PyObject
from
.object
cimport
PyObject
cdef
extern
from
"Python.h"
:
...
...
Cython/Includes/cpython/weakref.pxd
View file @
53c184fd
from
cpython.ref
cimport
PyObject
from
.object
cimport
PyObject
cdef
extern
from
"Python.h"
:
...
...
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