Asignación de objetos en el montículo

PyObject *_PyObject_New(PyTypeObject *type)
Return value: New reference.
PyVarObject *_PyObject_NewVar(PyTypeObject *type, Py_ssize_t size)
Return value: New reference.
PyObject *PyObject_Init(PyObject *op, PyTypeObject *type)
Return value: Borrowed reference. Part of the Stable ABI.

Initialize a newly allocated object op with its type and initial reference. Returns the initialized object. If type indicates that the object participates in the cyclic garbage detector, it is added to the detector’s set of observed objects. Other fields of the object are not affected.

PyVarObject *PyObject_InitVar(PyVarObject *op, PyTypeObject *type, Py_ssize_t size)
Return value: Borrowed reference. Part of the Stable ABI.

Esto hace todo lo que PyObject_Init() hace, y también inicializa la información de longitud para un objeto de tamaño variable.

TYPE *PyObject_New(TYPE, PyTypeObject *type)
Return value: New reference.

Allocate a new Python object using the C structure type TYPE and the Python type object type. Fields not defined by the Python object header are not initialized. The caller will own the only reference to the object (i.e. its reference count will be one). The size of the memory allocation is determined from the tp_basicsize field of the type object.

TYPE *PyObject_NewVar(TYPE, PyTypeObject *type, Py_ssize_t size)
Return value: New reference.

Asigna un nuevo objeto Python usando el tipo de estructura de C TYPE y el objeto tipo Python type. Los campos no definidos por el encabezado del objeto Python no se inicializan. La memoria asignada permite los campos de la estructura TYPE más los campos size del tamaño dado por el campo tp_itemsize de type. Esto es útil para implementar objetos como tuplas, que pueden determinar su tamaño en el momento de la construcción. Incrustar el arreglo de campos en la misma asignación disminuye el número de asignaciones, mejorando la eficiencia de la gestión de memoria.

void PyObject_Del(void *op)

Libera memoria asignada a un objeto usando PyObject_New() o PyObject_NewVar(). Esto normalmente se llama desde el manejador tp_dealloc especificado en el tipo de objeto. No se debe acceder a los campos del objeto después de esta llamada, ya que la memoria ya no es un objeto Python válido.

PyObject _Py_NoneStruct

Objeto que es visible en Python como None. Esto solo se debe acceder utilizando el macro Py_None, que se evalúa como un puntero a este objeto.

Ver también

PyModule_Create()

Para asignar y crear módulos de extensión.