Searched refs:PyType_FromSpec (Results 1 – 25 of 27) sorted by relevance
12
251 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()
363 temp = PyType_FromSpec(&Example_Type_spec); in execfunc()384 temp = PyType_FromSpec(&Str_Type_spec); in execfunc()
1594 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()
7280 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()
2127 state->EVPtype = (PyTypeObject *)PyType_FromSpec(&EVPtype_spec); in hashlib_init_evptype()2165 state->HMACtype = (PyTypeObject *)PyType_FromSpec(&HMACtype_spec); in hashlib_init_hmactype()
3542 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()
1818 state->PyScannerType = PyType_FromSpec(&PyScannerType_spec); in _json_exec()1828 state->PyEncoderType = PyType_FromSpec(&PyEncoderType_spec); in _json_exec()
1488 PyTypeObject *ucd_type = (PyTypeObject *)PyType_FromSpec(&ucd_type_spec); in unicodedata_exec()
243 reference leaks encountered when combining tp_dealloc with PyType_FromSpec
285 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 their3499 The PyType_FromSpec*() functions no longer overwrite the type's "__module__"
171 Convert json module to use :c:func:`PyType_FromSpec`.
230 PyAPI_FUNC(PyObject*) PyType_FromSpec(PyType_Spec*);
51 :c:func:`PyType_FromSpec` the interpreter will automatically populate the
196 .. c:function:: PyObject* PyType_FromSpec(PyType_Spec *spec)
458 Heap allocated types (created using :c:func:`PyType_FromSpec` or similar),
296 :attr:`__dict__` or individual classes created with :c:func:`PyType_FromSpec`).
1044 example, types created dynamically using :c:func:`PyType_FromSpec`. In this2072 :c:func:`PyType_FromSpec`, :c:func:`PyType_FromSpecWithBases`,
639 function,PyType_FromSpec,3.2,
2286 PyType_FromSpec:PyObject*::+1:2287 PyType_FromSpec:PyType_Spec*:spec::
592 EXPORT_FUNC(PyType_FromSpec)
52 function PyType_FromSpec
46 :c:func:`PyType_FromSpec` function, which isn't covered in this tutorial.
2037 :c:func:`PyType_FromSpec`) hold a reference to their type object.2041 This makes types created through :c:func:`PyType_FromSpec` behave like
1140 :c:func:`PyType_FromSpec` and similar APIs) hold a reference to their type
3620 PyType_FromSpec(PyType_Spec *spec) in PyType_FromSpec() function