summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/cobject.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-01-19 22:08:21 (GMT)
committerGeorg Brandl <georg@python.org>2008-01-19 22:08:21 (GMT)
commitf6842722df69a40e841c045d42a538bb5d6bbbf6 (patch)
tree2b8bb1b6bb5908ed66ed72f7c84de0a34ddc7542 /Doc/c-api/cobject.rst
parent8b506e7a2d4e8cb6ffd6b7f2845e45aa92daa4d4 (diff)
downloadcpython-f6842722df69a40e841c045d42a538bb5d6bbbf6.zip
cpython-f6842722df69a40e841c045d42a538bb5d6bbbf6.tar.gz
cpython-f6842722df69a40e841c045d42a538bb5d6bbbf6.tar.bz2
Split the monstrous C API manual files in smaller parts.
Diffstat (limited to 'Doc/c-api/cobject.rst')
-rw-r--r--Doc/c-api/cobject.rst56
1 files changed, 56 insertions, 0 deletions
diff --git a/Doc/c-api/cobject.rst b/Doc/c-api/cobject.rst
new file mode 100644
index 0000000..10f7bba
--- /dev/null
+++ b/Doc/c-api/cobject.rst
@@ -0,0 +1,56 @@
+.. highlightlang:: c
+
+.. _cobjects:
+
+CObjects
+--------
+
+.. index:: object: CObject
+
+Refer to :ref:`using-cobjects` for more information on using these objects.
+
+
+.. ctype:: PyCObject
+
+ This subtype of :ctype:`PyObject` represents an opaque value, useful for C
+ extension modules who need to pass an opaque value (as a :ctype:`void\*`
+ pointer) through Python code to other C code. It is often used to make a C
+ function pointer defined in one module available to other modules, so the
+ regular import mechanism can be used to access C APIs defined in dynamically
+ loaded modules.
+
+
+.. cfunction:: int PyCObject_Check(PyObject *p)
+
+ Return true if its argument is a :ctype:`PyCObject`.
+
+
+.. cfunction:: PyObject* PyCObject_FromVoidPtr(void* cobj, void (*destr)(void *))
+
+ Create a :ctype:`PyCObject` from the ``void *`` *cobj*. The *destr* function
+ will be called when the object is reclaimed, unless it is *NULL*.
+
+
+.. cfunction:: PyObject* PyCObject_FromVoidPtrAndDesc(void* cobj, void* desc, void (*destr)(void *, void *))
+
+ Create a :ctype:`PyCObject` from the :ctype:`void \*` *cobj*. The *destr*
+ function will be called when the object is reclaimed. The *desc* argument can
+ be used to pass extra callback data for the destructor function.
+
+
+.. cfunction:: void* PyCObject_AsVoidPtr(PyObject* self)
+
+ Return the object :ctype:`void \*` that the :ctype:`PyCObject` *self* was
+ created with.
+
+
+.. cfunction:: void* PyCObject_GetDesc(PyObject* self)
+
+ Return the description :ctype:`void \*` that the :ctype:`PyCObject` *self* was
+ created with.
+
+
+.. cfunction:: int PyCObject_SetVoidPtr(PyObject* self, void* cobj)
+
+ Set the void pointer inside *self* to *cobj*. The :ctype:`PyCObject` must not
+ have an associated destructor. Return true on success, false on failure.