Home
last modified time | relevance | path

Searched refs:PyType_FromSpec (Results 1 – 25 of 27) sorted by relevance

12

/third_party/python/Modules/
Dxxlimited_35.c251 Xxo_Type = PyType_FromSpec(&Xxo_Type_spec); in xx_modexec()
265 o = PyType_FromSpec(&Xxo_Type_spec); in xx_modexec()
271 o = PyType_FromSpec(&Str_Type_spec); in xx_modexec()
277 o = PyType_FromSpec(&Null_Type_spec); in xx_modexec()
D_testmultiphase.c363 temp = PyType_FromSpec(&Example_Type_spec); in execfunc()
384 temp = PyType_FromSpec(&Str_Type_spec); in execfunc()
D_threadmodule.c1594 state->lock_type = (PyTypeObject *)PyType_FromSpec(&lock_type_spec); in thread_module_exec()
1603 PyTypeObject *rlock_type = (PyTypeObject *)PyType_FromSpec(&rlock_type_spec); in thread_module_exec()
1614 state->local_dummy_type = (PyTypeObject *)PyType_FromSpec(&local_dummy_type_spec); in thread_module_exec()
D_testcapimodule.c7280 PyObject *HeapDocCType = PyType_FromSpec(&HeapDocCType_spec); in PyInit__testcapi()
7288 PyObject *NullTpDocType = PyType_FromSpec(&NullTpDocType_spec); in PyInit__testcapi()
7294 PyObject *HeapGcCType = PyType_FromSpec(&HeapGcCType_spec); in PyInit__testcapi()
7300 PyObject *HeapCType = PyType_FromSpec(&HeapCType_spec); in PyInit__testcapi()
7315 PyObject *HeapCTypeWithDict = PyType_FromSpec(&HeapCTypeWithDict_spec); in PyInit__testcapi()
7321 PyObject *HeapCTypeWithNegativeDict = PyType_FromSpec(&HeapCTypeWithNegativeDict_spec); in PyInit__testcapi()
7327 PyObject *HeapCTypeWithWeakref = PyType_FromSpec(&HeapCTypeWithWeakref_spec); in PyInit__testcapi()
7333 PyObject *HeapCTypeWithBuffer = PyType_FromSpec(&HeapCTypeWithBuffer_spec); in PyInit__testcapi()
7339 PyObject *HeapCTypeSetattr = PyType_FromSpec(&HeapCTypeSetattr_spec); in PyInit__testcapi()
D_hashopenssl.c2127 state->EVPtype = (PyTypeObject *)PyType_FromSpec(&EVPtype_spec); in hashlib_init_evptype()
2165 state->HMACtype = (PyTypeObject *)PyType_FromSpec(&HMACtype_spec); in hashlib_init_hmactype()
D_tkinter.c3542 o = PyType_FromSpec(&Tkapp_Type_spec); in PyInit__tkinter()
3554 o = PyType_FromSpec(&Tktt_Type_spec); in PyInit__tkinter()
3566 o = PyType_FromSpec(&PyTclObject_Type_spec); in PyInit__tkinter()
D_json.c1818 state->PyScannerType = PyType_FromSpec(&PyScannerType_spec); in _json_exec()
1828 state->PyEncoderType = PyType_FromSpec(&PyEncoderType_spec); in _json_exec()
Dunicodedata.c1488 PyTypeObject *ucd_type = (PyTypeObject *)PyType_FromSpec(&ucd_type_spec); in unicodedata_exec()
/third_party/python/Misc/NEWS.d/
D3.5.0b3.rst243 reference leaks encountered when combining tp_dealloc with PyType_FromSpec
D3.10.0a1.rst285 Convert :mod:`_operator` to use :c:func:`PyType_FromSpec`.
639 Convert :mod:`_bz2` to use :c:func:`PyType_FromSpec`.
3268 Types created with :c:func:`PyType_FromSpec` now make any signature in their
3499 The PyType_FromSpec*() functions no longer overwrite the type's "__module__"
D3.9.0a6.rst171 Convert json module to use :c:func:`PyType_FromSpec`.
/third_party/python/Include/
Dobject.h230 PyAPI_FUNC(PyObject*) PyType_FromSpec(PyType_Spec*);
/third_party/python/Doc/c-api/
Dgcsupport.rst51 :c:func:`PyType_FromSpec` the interpreter will automatically populate the
Dtype.rst196 .. c:function:: PyObject* PyType_FromSpec(PyType_Spec *spec)
Dstructures.rst458 Heap allocated types (created using :c:func:`PyType_FromSpec` or similar),
Dmodule.rst296 :attr:`__dict__` or individual classes created with :c:func:`PyType_FromSpec`).
Dtypeobj.rst1044 example, types created dynamically using :c:func:`PyType_FromSpec`. In this
2072 :c:func:`PyType_FromSpec`, :c:func:`PyType_FromSpecWithBases`,
/third_party/python/Doc/data/
Dstable_abi.dat639 function,PyType_FromSpec,3.2,
Drefcounts.dat2286 PyType_FromSpec:PyObject*::+1:
2287 PyType_FromSpec:PyType_Spec*:spec::
/third_party/python/PC/
Dpython3dll.c592 EXPORT_FUNC(PyType_FromSpec)
/third_party/python/Misc/
Dstable_abi.txt52 function PyType_FromSpec
/third_party/python/Doc/extending/
Dnewtypes_tutorial.rst46 :c:func:`PyType_FromSpec` function, which isn't covered in this tutorial.
/third_party/python/Doc/whatsnew/
D3.8.rst2037 :c:func:`PyType_FromSpec`) hold a reference to their type object.
2041 This makes types created through :c:func:`PyType_FromSpec` behave like
D3.9.rst1140 :c:func:`PyType_FromSpec` and similar APIs) hold a reference to their type
/third_party/python/Objects/
Dtypeobject.c3620 PyType_FromSpec(PyType_Spec *spec) in PyType_FromSpec() function

12