mirror of
https://github.com/python/cpython.git
synced 2025-08-02 16:13:13 +00:00
edits
This commit is contained in:
parent
b173f7853e
commit
b9ce9b5132
1 changed files with 60 additions and 76 deletions
|
@ -33,107 +33,94 @@ Refer to :ref:`using-capsules` for more information on using these objects.
|
||||||
|
|
||||||
Return true if its argument is a :ctype:`PyCapsule`.
|
Return true if its argument is a :ctype:`PyCapsule`.
|
||||||
|
|
||||||
|
|
||||||
.. cfunction:: PyObject* PyCapsule_New(void* pointer, const char* name, PyCapsule_Destructor destructor)
|
.. cfunction:: PyObject* PyCapsule_New(void* pointer, const char* name, PyCapsule_Destructor destructor)
|
||||||
|
|
||||||
Create a :ctype:`PyCapsule` encapsulating the *pointer*. The *pointer*
|
Create a :ctype:`PyCapsule` encapsulating the *pointer*. The *pointer*
|
||||||
argument may not be *NULL*.
|
argument may not be *NULL*.
|
||||||
|
|
||||||
The *name* string may either be *NULL* or a pointer to a valid
|
|
||||||
C string. If non-*NULL*, this string must outlive the capsule.
|
|
||||||
(Though it is permitted to free it inside the *destructor*.)
|
|
||||||
|
|
||||||
If the *destructor* argument is not *NULL*,
|
|
||||||
it will be called with the capsule ``PyObject *`` when it is destroyed.
|
|
||||||
|
|
||||||
If this capsule will be stored as an attribute of a module, it
|
|
||||||
is strongly suggested that the *name* string be specified as::
|
|
||||||
|
|
||||||
modulename.attributename
|
|
||||||
|
|
||||||
This will enable other modules to import the capsule
|
|
||||||
using :cfunc:`PyCapsule_Import`.
|
|
||||||
|
|
||||||
Return a valid capsule on success.
|
|
||||||
On failure, set an exception and return *NULL*.
|
On failure, set an exception and return *NULL*.
|
||||||
|
|
||||||
|
The *name* string may either be *NULL* or a pointer to a valid C string. If
|
||||||
|
non-*NULL*, this string must outlive the capsule. (Though it is permitted to
|
||||||
|
free it inside the *destructor*.)
|
||||||
|
|
||||||
|
If the *destructor* argument is not *NULL*, it will be called with the
|
||||||
|
capsule when it is destroyed.
|
||||||
|
|
||||||
|
If this capsule will be stored as an attribute of a module, the *name* should
|
||||||
|
be specified as ``modulename.attributename``. This will enable other modules
|
||||||
|
to import the capsule using :cfunc:`PyCapsule_Import`.
|
||||||
|
|
||||||
|
|
||||||
.. cfunction:: void* PyCapsule_GetPointer(PyObject* capsule, const char* name)
|
.. cfunction:: void* PyCapsule_GetPointer(PyObject* capsule, const char* name)
|
||||||
|
|
||||||
Retrieve the *pointer* stored in the capsule.
|
Retrieve the *pointer* stored in the capsule. On failure, set an exception
|
||||||
|
and return *NULL*.
|
||||||
|
|
||||||
The *name* parameter must compare exactly to the name stored in the capsule.
|
The *name* parameter must compare exactly to the name stored in the capsule.
|
||||||
If the name stored in the capsule is *NULL*, the *name* passed in must
|
If the name stored in the capsule is *NULL*, the *name* passed in must also
|
||||||
also be *NULL*. If the name stored in the capsule is non-*NULL*,
|
be *NULL*. Python uses the C function :cfunc:`strcmp` to compare capsule
|
||||||
the *name* passed in must also be non-*NULL*, and must match the name
|
names.
|
||||||
stored in the capsule. Python uses the C function *strcmp* to compare
|
|
||||||
capsule names.
|
|
||||||
|
|
||||||
Return the internal *pointer* on success.
|
|
||||||
On failure, set an exception and return *NULL*.
|
|
||||||
|
|
||||||
|
|
||||||
.. cfunction:: PyCapsule_Destructor PyCapsule_GetDestructor(PyObject* capsule)
|
.. cfunction:: PyCapsule_Destructor PyCapsule_GetDestructor(PyObject* capsule)
|
||||||
|
|
||||||
Return the current *destructor* stored in the capsule.
|
Return the current destructor stored in the capsule. On failure, set an
|
||||||
On failure, set an exception and return *NULL*.
|
exception and return *NULL*.
|
||||||
|
|
||||||
It is legal for a capsule to have a *NULL* destructor.
|
It is legal for a capsule to have a *NULL* destructor. This makes a *NULL*
|
||||||
This makes a *NULL* return code somewhat ambiguous;
|
return code somewhat ambiguous; use :cfunc:`PyCapsule_IsValid` or
|
||||||
use :cfunc:`PyCapsule_IsValid` or :cfunc:`PyErr_Occurred` to disambugate.
|
:cfunc:`PyErr_Occurred` to disambugate.
|
||||||
|
|
||||||
|
|
||||||
.. cfunction:: void* PyCapsule_GetContext(PyObject* capsule)
|
.. cfunction:: void* PyCapsule_GetContext(PyObject* capsule)
|
||||||
|
|
||||||
Return the current *context* stored in the capsule.
|
Return the current context stored in the capsule. On failure, set an
|
||||||
On failure, set an exception and return *NULL*.
|
exception and return *NULL*.
|
||||||
|
|
||||||
It is legal for a capsule to have a *NULL* context.
|
It is legal for a capsule to have a *NULL* context. This makes a *NULL*
|
||||||
This makes a *NULL* return code somewhat ambiguous;
|
return code somewhat ambiguous; use :cfunc:`PyCapsule_IsValid` or
|
||||||
use :cfunc:`PyCapsule_IsValid` or :cfunc:`PyErr_Occurred` to disambugate.
|
:cfunc:`PyErr_Occurred` to disambugate.
|
||||||
|
|
||||||
|
|
||||||
.. cfunction:: const char* PyCapsule_GetName(PyObject* capsule)
|
.. cfunction:: const char* PyCapsule_GetName(PyObject* capsule)
|
||||||
|
|
||||||
Return the current *name* stored in the capsule.
|
Return the current name stored in the capsule. On failure, set an exception
|
||||||
On failure, set an exception and return *NULL*.
|
and return *NULL*.
|
||||||
|
|
||||||
It is legal for a capsule to have a *NULL* name.
|
It is legal for a capsule to have a *NULL* name. This makes a *NULL* return
|
||||||
This makes a *NULL* return code somewhat ambiguous;
|
code somewhat ambiguous; use :cfunc:`PyCapsule_IsValid` or
|
||||||
use :cfunc:`PyCapsule_IsValid` or :cfunc:`PyErr_Occurred` to disambugate.
|
:cfunc:`PyErr_Occurred` to disambugate.
|
||||||
|
|
||||||
|
|
||||||
.. cfunction:: void* PyCapsule_Import(const char* name, int no_block)
|
.. cfunction:: void* PyCapsule_Import(const char* name, int no_block)
|
||||||
|
|
||||||
Import a pointer to a C object from a ``capsule`` attribute in a module.
|
Import a pointer to a C object from a ``capsule`` attribute in a module. The
|
||||||
The *name* parameter should specify the full name to the attribute, as
|
*name* parameter should specify the full name to the attribute, as in
|
||||||
in *"module.attribute"*.
|
``module.attribute``. The *name* stored in the capsule must match this
|
||||||
The *name* stored in the capsule must match this string exactly.
|
string exactly. If *no_block* is true, import the module without blocking
|
||||||
If *no_block* is true, import the module without blocking
|
(using :cfunc:`PyImport_ImportModuleNoBlock`). If *no_block* is false,
|
||||||
(using :cfunc:`PyImport_ImportModuleNoBlock`).
|
import the module conventionally (using :cfunc:`PyImport_ImportModule`).
|
||||||
If *no_block* is false, import the module conventionally
|
|
||||||
(using :cfunc:`PyImport_ImportModule`).
|
|
||||||
|
|
||||||
Return the capsule's internal *pointer* on success.
|
Return the capsule's internal *pointer* on success. On failure, set an
|
||||||
On failure, set an exception and return *NULL*.
|
exception and return *NULL*. However, if :cfunc:`PyCapsule_Import` failed to
|
||||||
Exception: if *PyCapsule_Import* failed to import the module,
|
import the module, and *no_block* was true, no exception is set.
|
||||||
and *no_block* was true, no exception is set.
|
|
||||||
|
|
||||||
.. cfunction:: int PyCapsule_IsValid(PyObject* capsule, const char* name)
|
.. cfunction:: int PyCapsule_IsValid(PyObject* capsule, const char* name)
|
||||||
|
|
||||||
Determines whether or not a :ctype:`PyObject \*` is a valid capsule.
|
Determines whether or not *capsule* is a valid capsule. A valid capsule is
|
||||||
A valid capsule is non-*NULL*, passes :cfunc:`PyCapsule_CheckExact`,
|
non-*NULL*, passes :cfunc:`PyCapsule_CheckExact`, has a non-NULL pointer
|
||||||
has a non-NULL *pointer*, and its internal name matches the
|
stored in it, and its internal name matches the *name* parameter. (See
|
||||||
*name* parameter. (See :cfunc:`PyCapsule_GetPointer` for
|
:cfunc:`PyCapsule_GetPointer` for information on how capsule names are
|
||||||
information on how capsule names are compared.)
|
compared.)
|
||||||
|
|
||||||
In other words, if :cfunc:`PyCapsule_IsValid` returns a true value,
|
In other words, if :cfunc:`PyCapsule_IsValid` returns a true value, calls to
|
||||||
calls to any of the accessors (any function starting
|
any of the accessors (any function starting with :cfunc:`PyCapsule_Get`) are
|
||||||
with :cfunc:`PyCapsule_Get`) are guaranteed to succeed.
|
guaranteed to succeed.
|
||||||
|
|
||||||
Return a nonzero value if the object is valid and matches the name
|
Return a nonzero value if the object is valid and matches the name passed in.
|
||||||
passed in.
|
Return 0 otherwise. This function will not fail.
|
||||||
Return 0 otherwise.
|
|
||||||
This function will not fail.
|
|
||||||
|
|
||||||
.. cfunction:: int PyCapsule_SetContext(PyObject* capsule, void* context)
|
.. cfunction:: int PyCapsule_SetContext(PyObject* capsule, void* context)
|
||||||
|
|
||||||
|
@ -142,27 +129,24 @@ Refer to :ref:`using-capsules` for more information on using these objects.
|
||||||
Return 0 on success.
|
Return 0 on success.
|
||||||
Return nonzero and set an exception on failure.
|
Return nonzero and set an exception on failure.
|
||||||
|
|
||||||
.. cfunction:: int PyCapsule_SetDestructor(PyObject* capsule, void (*)(PyObject *) destructor)
|
.. cfunction:: int PyCapsule_SetDestructor(PyObject* capsule, PyCapsule_Destructor destructor)
|
||||||
|
|
||||||
Set the destructor inside *capsule* to *destructor*.
|
Set the destructor inside *capsule* to *destructor*.
|
||||||
|
|
||||||
Return 0 on success.
|
Return 0 on success. Return nonzero and set an exception on failure.
|
||||||
Return nonzero and set an exception on failure.
|
|
||||||
|
|
||||||
.. cfunction:: int PyCapsule_SetName(PyObject* capsule, const char* name)
|
.. cfunction:: int PyCapsule_SetName(PyObject* capsule, const char* name)
|
||||||
|
|
||||||
Set the name inside *capsule* to *name*. If non-*NULL*, the name
|
Set the name inside *capsule* to *name*. If non-*NULL*, the name must
|
||||||
must outlive the capsule. If the previous *name* stored in the
|
outlive the capsule. If the previous *name* stored in the capsule was not
|
||||||
capsule was not *NULL*, no attempt is made to free it.
|
*NULL*, no attempt is made to free it.
|
||||||
|
|
||||||
Return 0 on success.
|
Return 0 on success. Return nonzero and set an exception on failure.
|
||||||
Return nonzero and set an exception on failure.
|
|
||||||
|
|
||||||
.. cfunction:: int PyCapsule_SetPointer(PyObject* capsule, void* pointer)
|
.. cfunction:: int PyCapsule_SetPointer(PyObject* capsule, void* pointer)
|
||||||
|
|
||||||
Set the void pointer inside *capsule* to *pointer*. The pointer
|
Set the void pointer inside *capsule* to *pointer*. The pointer may not be
|
||||||
may not be *NULL*.
|
*NULL*.
|
||||||
|
|
||||||
Return 0 on success.
|
Return 0 on success. Return nonzero and set an exception on failure.
|
||||||
Return nonzero and set an exception on failure.
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue