Home
last modified time | relevance | path

Searched refs:PyType_GetModule (Results 1 – 22 of 22) sorted by relevance

/external/python/cpython3/Doc/c-api/
Dtype.rst221 .. c:function:: PyObject* PyType_GetModule(PyTypeObject *type)
230 Note that in such a method, ``PyType_GetModule(Py_TYPE(self))``
244 of :c:func:`PyType_GetModule`.
310 retrieved with :c:func:`PyType_GetModule`.
/external/python/cpython3/Modules/
D_queuemodule.c342 PyObject *module = PyType_GetModule(cls); in empty_error()
Dselectmodule.c112 #define _selectstate_by_type(type) get_select_state(PyType_GetModule(type))
2055 PyObject *module = PyType_GetModule(Py_TYPE(self)); in kqueue_tracking_add()
2086 Py_BEGIN_CRITICAL_SECTION(PyType_GetModule(Py_TYPE(self))); in kqueue_tracking_remove()
D_testmultiphase.c148 retval = PyType_GetModule(cls); in _testmultiphase_StateAccessType_get_defining_module_impl()
Dzlibmodule.c879 PyObject *module = PyType_GetModule(cls); in zlib_Decompress_decompress_impl()
1252 PyObject *module = PyType_GetModule(cls); in zlib_Decompress_flush_impl()
Dposixmodule.c15666 PyObject *module = PyType_GetModule(defining_class); in DirEntry_get_lstat()
15701 PyObject *module = PyType_GetModule(defining_class); in os_DirEntry_stat_impl()
15750 _posixstate* state = get_posix_state(PyType_GetModule(defining_class)); in DirEntry_test_mode()
16186 PyObject *module = PyType_GetModule(Py_TYPE(iterator)); in ScandirIterator_iternext()
16258 PyObject *module = PyType_GetModule(Py_TYPE(iterator)); in ScandirIterator_iternext()
D_struct.c42 (get_struct_state(PyType_GetModule(Py_TYPE(self))))
Darraymodule.c80 (get_array_state(PyType_GetModule(cls)))
D_ssl.c5359 PyObject *module = PyType_GetModule(Py_TYPE(self)); in _ssl_MemoryBIO_write_impl()
/external/python/cpython3/Modules/_ctypes/
Dctypes.h528 PyObject *module = PyType_GetModule(state->PyCType_Type); in PyStgInfo_Init()
/external/python/cpython3/Include/
Dobject.h521 PyAPI_FUNC(PyObject *) PyType_GetModule(PyTypeObject *);
/external/python/cpython3/PC/
Dpython3dll.c646 EXPORT_FUNC(PyType_GetModule)
/external/python/cpython3/Doc/data/
Dstable_abi.dat686 func,PyType_GetModule,3.10,,
Dpython3.13.abi806 …<elf-symbol name='PyType_GetModule' type='func-type' binding='global-binding' visibility='default-…
9937PyType_GetModule' mangled-name='PyType_GetModule' filepath='Objects/typeobject.c' line='4923' colu…
/external/python/cpython3/Modules/_sqlite/
Dconnection.c1091 PyObject *module = PyType_GetModule(cls); in create_callback_context()
/external/python/cpython3/Doc/howto/
Disolating-extensions.rst461 you can call :c:func:`PyType_GetModule` to get the associated module, and then
/external/python/cpython3/Misc/NEWS.d/
D3.10.0a3.rst1471 :c:func:`PyType_FromModuleAndSpec`, :c:func:`PyType_GetModule` and
/external/python/cpython3/Modules/_sre/
Dsre.c392 (get_sre_module_state(PyType_GetModule(cls)))
/external/python/cpython3/Modules/_decimal/
D_decimal.c1963 ret = PyDec_SetCurrentContext(PyType_GetModule(Py_TYPE(self)), self->local); in ctxmanager_set_local()
1978 ret = PyDec_SetCurrentContext(PyType_GetModule(Py_TYPE(self)), self->global); in ctxmanager_restore_global()
/external/python/cpython3/Misc/
Dstable_abi.toml2188 [function.PyType_GetModule]
/external/python/cpython3/Objects/
Dtypeobject.c4923 PyType_GetModule(PyTypeObject *type) in PyType_GetModule() function
4949 PyObject *m = PyType_GetModule(type); in PyType_GetModuleState()
/external/python/cpython3/Doc/whatsnew/
D3.9.rst1274 a module with a class; :c:func:`PyType_GetModule` and