Home
last modified time | relevance | path

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

/third_party/python/Doc/c-api/
Dtype.rst125 .. c:function:: PyObject* PyType_GetModule(PyTypeObject *type)
134 Note that in such a method, ``PyType_GetModule(Py_TYPE(self))``
146 of :c:func:`PyType_GetModule`.
177 retrieved with :c:func:`PyType_GetModule`.
/third_party/python/Modules/
D_queuemodule.c254 PyObject *module = PyType_GetModule(cls); in _queue_SimpleQueue_get_impl()
D_testmultiphase.c143 retval = PyType_GetModule(cls); in _testmultiphase_StateAccessType_get_defining_module_impl()
Dzlibmodule.c878 PyObject *module = PyType_GetModule(cls); in zlib_Decompress_decompress_impl()
1257 PyObject *module = PyType_GetModule(cls); in zlib_Decompress_flush_impl()
Dselectmodule.c80 #define _selectstate_by_type(type) get_select_state(PyType_GetModule(type))
Dposixmodule.c13533 PyObject *module = PyType_GetModule(defining_class); in DirEntry_get_lstat()
13569 PyObject *module = PyType_GetModule(defining_class); in os_DirEntry_stat_impl()
13619 _posixstate* state = get_posix_state(PyType_GetModule(defining_class)); in DirEntry_test_mode()
14055 PyObject *module = PyType_GetModule(Py_TYPE(iterator)); in ScandirIterator_iternext()
14127 PyObject *module = PyType_GetModule(Py_TYPE(iterator)); in ScandirIterator_iternext()
D_struct.c38 (get_struct_state(PyType_GetModule(Py_TYPE(self))))
D_sre.c269 (get_sre_module_state(PyType_GetModule(cls)))
Darraymodule.c73 (get_array_state(PyType_GetModule(cls)))
D_ssl.c4815 PyObject *module = PyType_GetModule(Py_TYPE(self)); in _ssl_MemoryBIO_write_impl()
/third_party/python/Include/
Dobject.h239 PyAPI_FUNC(PyObject *) PyType_GetModule(struct _typeobject *);
/third_party/python/PC/
Dpython3dll.c597 EXPORT_FUNC(PyType_GetModule)
/third_party/python/Doc/data/
Dstable_abi.dat644 function,PyType_GetModule,3.10,
/third_party/python/Misc/
Dstable_abi.txt2087 function PyType_GetModule
/third_party/python/Misc/NEWS.d/
D3.10.0a3.rst1471 :c:func:`PyType_FromModuleAndSpec`, :c:func:`PyType_GetModule` and
/third_party/python/Objects/
Dtypeobject.c3656 PyType_GetModule(PyTypeObject *type) in PyType_GetModule() function
3682 PyObject *m = PyType_GetModule(type); in PyType_GetModuleState()
/third_party/python/Doc/whatsnew/
D3.9.rst1262 a module with a class; :c:func:`PyType_GetModule` and