Home
last modified time | relevance | path

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

/external/python/cpython3/Doc/c-api/
Dtype.rst138 .. c:function:: PyObject* PyType_GetModule(PyTypeObject *type)
147 Note that in such a method, ``PyType_GetModule(Py_TYPE(self))``
161 of :c:func:`PyType_GetModule`.
207 retrieved with :c:func:`PyType_GetModule`.
/external/python/cpython3/Modules/
D_queuemodule.c260 PyObject *module = PyType_GetModule(cls); in _queue_SimpleQueue_get_impl()
D_testmultiphase.c149 retval = PyType_GetModule(cls); in _testmultiphase_StateAccessType_get_defining_module_impl()
Dzlibmodule.c881 PyObject *module = PyType_GetModule(cls); in zlib_Decompress_decompress_impl()
1260 PyObject *module = PyType_GetModule(cls); in zlib_Decompress_flush_impl()
Dselectmodule.c90 #define _selectstate_by_type(type) get_select_state(PyType_GetModule(type))
Dposixmodule.c13696 PyObject *module = PyType_GetModule(defining_class); in DirEntry_get_lstat()
13732 PyObject *module = PyType_GetModule(defining_class); in os_DirEntry_stat_impl()
13782 _posixstate* state = get_posix_state(PyType_GetModule(defining_class)); in DirEntry_test_mode()
14220 PyObject *module = PyType_GetModule(Py_TYPE(iterator)); in ScandirIterator_iternext()
14292 PyObject *module = PyType_GetModule(Py_TYPE(iterator)); in ScandirIterator_iternext()
D_struct.c42 (get_struct_state(PyType_GetModule(Py_TYPE(self))))
Darraymodule.c77 (get_array_state(PyType_GetModule(cls)))
D_ssl.c4862 PyObject *module = PyType_GetModule(Py_TYPE(self)); in _ssl_MemoryBIO_write_impl()
/external/python/cpython3/Include/
Dobject.h251 PyAPI_FUNC(PyObject *) PyType_GetModule(PyTypeObject *);
/external/python/cpython3/PC/
Dpython3dll.c608 EXPORT_FUNC(PyType_GetModule)
/external/python/cpython3/Doc/data/
Dstable_abi.dat662 function,PyType_GetModule,3.10,,
Dpython3.11.abi723 …<elf-symbol name='PyType_GetModule' type='func-type' binding='global-binding' visibility='default-…
10076PyType_GetModule' mangled-name='PyType_GetModule' filepath='Objects/typeobject.c' line='3677' colu…
/external/python/cpython3/Doc/howto/
Disolating-extensions.rst368 you can call :c:func:`PyType_GetModule` to get the associated module, and then
/external/python/cpython3/Modules/_sqlite/
Dconnection.c946 PyObject *module = PyType_GetModule(cls); in create_callback_context()
/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.c269 (get_sre_module_state(PyType_GetModule(cls)))
/external/python/cpython3/Misc/
Dstable_abi.toml2165 [function.PyType_GetModule]
/external/python/cpython3/Objects/
Dtypeobject.c3681 PyType_GetModule(PyTypeObject *type) in PyType_GetModule() function
3707 PyObject *m = PyType_GetModule(type); in PyType_GetModuleState()
/external/python/cpython3/Doc/whatsnew/
D3.9.rst1277 a module with a class; :c:func:`PyType_GetModule` and