René's URL Explorer Experiment


Title: Allocating Objects on the Heap — Python 3.14.2 documentation

Open Graph Title: Allocating Objects on the Heap

Description: Deprecated aliases: These are soft deprecated aliases to existing functions and macros. They exist solely for backwards compatibility.,, Deprecated alias, Function,,,, PyObject_New,,, PyObject_NewV...

Open Graph Description: Deprecated aliases: These are soft deprecated aliases to existing functions and macros. They exist solely for backwards compatibility.,, Deprecated alias, Function,,,, PyObject_New,,, PyObject_NewV...

Opengraph URL: https://docs.python.org/3/c-api/allocation.html

direct link

Domain: docs.python.org

og:typewebsite
og:site_namePython documentation
og:image:width1146
og:image:height600
og:imagehttps://docs.python.org/3.14/_images/social_previews/summary_c-api_allocation_04964fc6.png
og:image:altDeprecated aliases: These are soft deprecated aliases to existing functions and macros. They exist solely for backwards compatibility.,, Deprecated alias, Function,,,, PyObject_New,,, PyObject_NewV...
twitter:cardsummary_large_image
theme-color#3776ab
readthedocs-addons-api-version1

Links:

https://www.python.org/
Table of Contentshttps://docs.python.org/3/contents.html
Allocating Objects on the Heaphttps://docs.python.org/3/c-api/allocation.html
Deprecated aliaseshttps://docs.python.org/3/c-api/allocation.html#deprecated-aliases
Object Implementation Supporthttps://docs.python.org/3/c-api/objimpl.html
Object Life Cyclehttps://docs.python.org/3/c-api/lifecycle.html
Report a bughttps://docs.python.org/3/bugs.html
Show source https://github.com/python/cpython/blob/main/Doc/c-api/allocation.rst?plain=1
indexhttps://docs.python.org/3/genindex.html
moduleshttps://docs.python.org/3/py-modindex.html
nexthttps://docs.python.org/3/c-api/lifecycle.html
previoushttps://docs.python.org/3/c-api/objimpl.html
Pythonhttps://www.python.org/
3.14.2 Documentationhttps://docs.python.org/3/index.html
Python/C API Reference Manualhttps://docs.python.org/3/c-api/index.html
Object Implementation Supporthttps://docs.python.org/3/c-api/objimpl.html
Allocating Objects on the Heaphttps://docs.python.org/3/c-api/allocation.html
https://docs.python.org/3/c-api/allocation.html#allocating-objects-on-the-heap
PyObjecthttps://docs.python.org/3/c-api/structures.html#c.PyObject
PyTypeObjecthttps://docs.python.org/3/c-api/type.html#c.PyTypeObject
https://docs.python.org/3/c-api/allocation.html#c._PyObject_New
PyVarObjecthttps://docs.python.org/3/c-api/structures.html#c.PyVarObject
PyTypeObjecthttps://docs.python.org/3/c-api/type.html#c.PyTypeObject
Py_ssize_thttps://docs.python.org/3/c-api/intro.html#c.Py_ssize_t
https://docs.python.org/3/c-api/allocation.html#c._PyObject_NewVar
PyObjecthttps://docs.python.org/3/c-api/structures.html#c.PyObject
PyObjecthttps://docs.python.org/3/c-api/structures.html#c.PyObject
PyTypeObjecthttps://docs.python.org/3/c-api/type.html#c.PyTypeObject
https://docs.python.org/3/c-api/allocation.html#c.PyObject_Init
Stable ABIhttps://docs.python.org/3/c-api/stable.html#stable
__init__()https://docs.python.org/3/reference/datamodel.html#object.__init__
tp_inithttps://docs.python.org/3/c-api/typeobj.html#c.PyTypeObject.tp_init
tp_allochttps://docs.python.org/3/c-api/typeobj.html#c.PyTypeObject.tp_alloc
PyType_GenericAlloc()https://docs.python.org/3/c-api/type.html#c.PyType_GenericAlloc
PyObject_New()https://docs.python.org/3/c-api/allocation.html#c.PyObject_New
PyObjecthttps://docs.python.org/3/c-api/structures.html#c.PyObject
PyVarObjecthttps://docs.python.org/3/c-api/structures.html#c.PyVarObject
PyVarObjecthttps://docs.python.org/3/c-api/structures.html#c.PyVarObject
PyTypeObjecthttps://docs.python.org/3/c-api/type.html#c.PyTypeObject
Py_ssize_thttps://docs.python.org/3/c-api/intro.html#c.Py_ssize_t
https://docs.python.org/3/c-api/allocation.html#c.PyObject_InitVar
Stable ABIhttps://docs.python.org/3/c-api/stable.html#stable
PyObject_Init()https://docs.python.org/3/c-api/allocation.html#c.PyObject_Init
https://docs.python.org/3/c-api/allocation.html#c.PyObject_New
PyObject_Malloc()https://docs.python.org/3/c-api/memory.html#c.PyObject_Malloc
PyObject_Init()https://docs.python.org/3/c-api/allocation.html#c.PyObject_Init
tp_allochttps://docs.python.org/3/c-api/typeobj.html#c.PyTypeObject.tp_alloc
tp_allochttps://docs.python.org/3/c-api/typeobj.html#c.PyTypeObject.tp_alloc
PyType_GenericAlloc()https://docs.python.org/3/c-api/type.html#c.PyType_GenericAlloc
tp_allochttps://docs.python.org/3/c-api/typeobj.html#c.PyTypeObject.tp_alloc
tp_newhttps://docs.python.org/3/c-api/typeobj.html#c.PyTypeObject.tp_new
__new__()https://docs.python.org/3/reference/datamodel.html#object.__new__
tp_inithttps://docs.python.org/3/c-api/typeobj.html#c.PyTypeObject.tp_init
__init__()https://docs.python.org/3/reference/datamodel.html#object.__init__
Py_TPFLAGS_HAVE_GChttps://docs.python.org/3/c-api/typeobj.html#c.Py_TPFLAGS_HAVE_GC
tp_flagshttps://docs.python.org/3/c-api/typeobj.html#c.PyTypeObject.tp_flags
PyObject_GC_Newhttps://docs.python.org/3/c-api/gcsupport.html#c.PyObject_GC_New
PyObject_Free()https://docs.python.org/3/c-api/memory.html#c.PyObject_Free
tp_freehttps://docs.python.org/3/c-api/typeobj.html#c.PyTypeObject.tp_free
tp_inithttps://docs.python.org/3/c-api/typeobj.html#c.PyTypeObject.tp_init
PyObject_Free()https://docs.python.org/3/c-api/memory.html#c.PyObject_Free
PyObject_GC_Newhttps://docs.python.org/3/c-api/gcsupport.html#c.PyObject_GC_New
PyType_GenericAlloc()https://docs.python.org/3/c-api/type.html#c.PyType_GenericAlloc
tp_allochttps://docs.python.org/3/c-api/typeobj.html#c.PyTypeObject.tp_alloc
https://docs.python.org/3/c-api/allocation.html#c.PyObject_NewVar
PyObject_Newhttps://docs.python.org/3/c-api/allocation.html#c.PyObject_New
tp_itemsizehttps://docs.python.org/3/c-api/typeobj.html#c.PyTypeObject.tp_itemsize
PyObject_InitVar()https://docs.python.org/3/c-api/allocation.html#c.PyObject_InitVar
tp_allochttps://docs.python.org/3/c-api/typeobj.html#c.PyTypeObject.tp_alloc
tp_allochttps://docs.python.org/3/c-api/typeobj.html#c.PyTypeObject.tp_alloc
PyType_GenericAlloc()https://docs.python.org/3/c-api/type.html#c.PyType_GenericAlloc
Py_TPFLAGS_HAVE_GChttps://docs.python.org/3/c-api/typeobj.html#c.Py_TPFLAGS_HAVE_GC
tp_flagshttps://docs.python.org/3/c-api/typeobj.html#c.PyTypeObject.tp_flags
PyObject_GC_NewVarhttps://docs.python.org/3/c-api/gcsupport.html#c.PyObject_GC_NewVar
PyObject_Free()https://docs.python.org/3/c-api/memory.html#c.PyObject_Free
tp_freehttps://docs.python.org/3/c-api/typeobj.html#c.PyTypeObject.tp_free
tp_inithttps://docs.python.org/3/c-api/typeobj.html#c.PyTypeObject.tp_init
PyObject_Free()https://docs.python.org/3/c-api/memory.html#c.PyObject_Free
PyObject_GC_NewVarhttps://docs.python.org/3/c-api/gcsupport.html#c.PyObject_GC_NewVar
PyType_GenericAlloc()https://docs.python.org/3/c-api/type.html#c.PyType_GenericAlloc
tp_allochttps://docs.python.org/3/c-api/typeobj.html#c.PyTypeObject.tp_alloc
PyObjecthttps://docs.python.org/3/c-api/structures.html#c.PyObject
https://docs.python.org/3/c-api/allocation.html#c._Py_NoneStruct
Py_Nonehttps://docs.python.org/3/c-api/none.html#c.Py_None
Module Objectshttps://docs.python.org/3/c-api/module.html#moduleobjects
https://docs.python.org/3/c-api/allocation.html#deprecated-aliases
soft deprecatedhttps://docs.python.org/3/glossary.html#term-soft-deprecated
https://docs.python.org/3/c-api/allocation.html#c.PyObject_NEW
PyObject_Newhttps://docs.python.org/3/c-api/allocation.html#c.PyObject_New
https://docs.python.org/3/c-api/allocation.html#c.PyObject_NEW_VAR
PyObject_NewVarhttps://docs.python.org/3/c-api/allocation.html#c.PyObject_NewVar
https://docs.python.org/3/c-api/allocation.html#c.PyObject_INIT
PyObject_Init()https://docs.python.org/3/c-api/allocation.html#c.PyObject_Init
https://docs.python.org/3/c-api/allocation.html#c.PyObject_INIT_VAR
PyObject_InitVar()https://docs.python.org/3/c-api/allocation.html#c.PyObject_InitVar
https://docs.python.org/3/c-api/allocation.html#c.PyObject_MALLOC
PyObject_Malloc()https://docs.python.org/3/c-api/memory.html#c.PyObject_Malloc
https://docs.python.org/3/c-api/allocation.html#c.PyObject_REALLOC
PyObject_Realloc()https://docs.python.org/3/c-api/memory.html#c.PyObject_Realloc
https://docs.python.org/3/c-api/allocation.html#c.PyObject_FREE
PyObject_Free()https://docs.python.org/3/c-api/memory.html#c.PyObject_Free
https://docs.python.org/3/c-api/allocation.html#c.PyObject_DEL
PyObject_Free()https://docs.python.org/3/c-api/memory.html#c.PyObject_Free
https://docs.python.org/3/c-api/allocation.html#c.PyObject_Del
PyObject_Free()https://docs.python.org/3/c-api/memory.html#c.PyObject_Free
Table of Contentshttps://docs.python.org/3/contents.html
Allocating Objects on the Heaphttps://docs.python.org/3/c-api/allocation.html
Deprecated aliaseshttps://docs.python.org/3/c-api/allocation.html#deprecated-aliases
Object Implementation Supporthttps://docs.python.org/3/c-api/objimpl.html
Object Life Cyclehttps://docs.python.org/3/c-api/lifecycle.html
Report a bughttps://docs.python.org/3/bugs.html
Show source https://github.com/python/cpython/blob/main/Doc/c-api/allocation.rst?plain=1
indexhttps://docs.python.org/3/genindex.html
moduleshttps://docs.python.org/3/py-modindex.html
nexthttps://docs.python.org/3/c-api/lifecycle.html
previoushttps://docs.python.org/3/c-api/objimpl.html
Pythonhttps://www.python.org/
3.14.2 Documentationhttps://docs.python.org/3/index.html
Python/C API Reference Manualhttps://docs.python.org/3/c-api/index.html
Object Implementation Supporthttps://docs.python.org/3/c-api/objimpl.html
Allocating Objects on the Heaphttps://docs.python.org/3/c-api/allocation.html
Copyrighthttps://docs.python.org/3/copyright.html
History and Licensehttps://docs.python.org/license.html
Please donate.https://www.python.org/psf/donations/
Found a bughttps://docs.python.org/bugs.html
Sphinxhttps://www.sphinx-doc.org/

Viewport: width=device-width, initial-scale=1.0


URLs of crawlers that visited me.