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
0ff8df7e
Commit
0ff8df7e
authored
Oct 24, 2009
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
missing weakref .pxd file, include all python_*.pxd files in python.pxd, test their cimport
parent
c8a8b35c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
61 additions
and
2 deletions
+61
-2
Cython/Includes/python.pxd
Cython/Includes/python.pxd
+14
-1
Cython/Includes/python_weakref.pxd
Cython/Includes/python_weakref.pxd
+42
-0
tests/compile/shipped_pxds.pyx
tests/compile/shipped_pxds.pyx
+5
-1
No files found.
Cython/Includes/python.pxd
View file @
0ff8df7e
...
...
@@ -125,7 +125,6 @@ from python_mem cimport *
from
python_tuple
cimport
*
from
python_list
cimport
*
from
python_object
cimport
*
from
python_cobject
cimport
*
from
python_sequence
cimport
*
from
python_mapping
cimport
*
from
python_iterator
cimport
*
...
...
@@ -142,4 +141,18 @@ from python_dict cimport *
from
python_instance
cimport
*
from
python_function
cimport
*
from
python_method
cimport
*
from
python_weakref
cimport
*
from
python_getargs
cimport
*
# Python <= 2.x
from
python_cobject
cimport
*
# Python >= 2.4
from
python_set
cimport
*
# Python >= 2.6
from
python_buffer
cimport
*
from
python_bytes
cimport
*
# Python >= 3.0
from
python_pycapsule
cimport
*
Cython/Includes/python_weakref.pxd
0 → 100644
View file @
0ff8df7e
from
python_ref
cimport
PyObject
cdef
extern
from
"Python.h"
:
bint
PyWeakref_Check
(
object
ob
)
# Return true if ob is either a reference or proxy object.
bint
PyWeakref_CheckRef
(
object
ob
)
# Return true if ob is a reference object.
bint
PyWeakref_CheckProxy
(
ob
)
# Return true if *ob* is a proxy object.
object
PyWeakref_NewRef
(
object
ob
,
object
callback
)
# Return a weak reference object for the object ob. This will
# always return a new reference, but is not guaranteed to create a
# new object; an existing reference object may be returned. The
# second parameter, callback, can be a callable object that
# receives notification when ob is garbage collected; it should
# accept a single parameter, which will be the weak reference
# object itself. callback may also be None or NULL. If ob is not
# a weakly-referencable object, or if callback is not callable,
# None, or NULL, this will return NULL and raise TypeError.
object
PyWeakref_NewProxy
(
object
ob
,
object
callback
)
# Return a weak reference proxy object for the object ob. This
# will always return a new reference, but is not guaranteed to
# create a new object; an existing proxy object may be returned.
# The second parameter, callback, can be a callable object that
# receives notification when ob is garbage collected; it should
# accept a single parameter, which will be the weak reference
# object itself. callback may also be None or NULL. If ob is not
# a weakly-referencable object, or if callback is not callable,
# None, or NULL, this will return NULL and raise TypeError.
PyObject
*
PyWeakref_GetObject
(
object
ref
)
# Return the referenced object from a weak reference, ref. If the
# referent is no longer live, returns None.
PyObject
*
PyWeakref_GET_OBJECT
(
object
ref
)
# Similar to PyWeakref_GetObject, but implemented as a macro that
# does no error checking.
tests/compile/shipped_pxds.pyx
View file @
0ff8df7e
cimport
python_bool
cimport
python_buffer
cimport
python_bytes
cimport
python_cobject
cimport
python_complex
cimport
python_dict
cimport
python_exc
cimport
python_float
cimport
python_function
cimport
python_getargs
cimport
python_instance
cimport
python_int
cimport
python_iterator
...
...
@@ -16,8 +19,8 @@ cimport python_method
cimport
python_module
cimport
python_number
cimport
python_object
cimport
python_parse
cimport
python
cimport
python_pycapsule
cimport
python_ref
cimport
python_sequence
cimport
python_set
...
...
@@ -26,5 +29,6 @@ cimport python_tuple
cimport
python_type
cimport
python_unicode
cimport
python_version
cimport
python_weakref
cimport
stdio
cimport
stdlib
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