Home
last modified time | relevance | path

Searched refs:PyModule_Type (Results 1 – 11 of 11) sorted by relevance

/third_party/python/Include/
Dmoduleobject.h10 PyAPI_DATA(PyTypeObject) PyModule_Type;
12 #define PyModule_Check(op) PyObject_TypeCheck(op, &PyModule_Type)
13 #define PyModule_CheckExact(op) Py_IS_TYPE(op, &PyModule_Type)
/third_party/python/Doc/c-api/
Dmodule.rst11 .. c:var:: PyTypeObject PyModule_Type
28 :c:data:`PyModule_Type`. This function always succeeds.
361 :c:type:`PyModule_Type`. Any type can be used, as long as it supports
363 However, only ``PyModule_Type`` instances may be returned if the
/third_party/python/Objects/
Dmoduleobject.c112 PyModuleObject *m = new_module_notrack(&PyModule_Type); in PyModule_NewObject()
953 PyTypeObject PyModule_Type = { variable
Dobject.c1915 &PyModule_Type,
Dtypeobject.c4847 if (!(PyType_IsSubtype(newto, &PyModule_Type) && in object_set_class()
4848 PyType_IsSubtype(oldto, &PyModule_Type)) && in object_set_class()
/third_party/python/PC/
Dpython3dll.c852 EXPORT_DATA(PyModule_Type)
/third_party/python/Doc/data/
Dstable_abi.dat418 var,PyModule_Type,3.2,,
/third_party/python/Tools/c-analyzer/
DTODO813 Objects/moduleobject.c:PyModule_Type PyTypeObject PyModule_Type
/third_party/python/Misc/
Dstable_abi.toml1024 [data.PyModule_Type]
/third_party/python/Tools/c-analyzer/cpython/
Dglobals-to-fix.tsv77 Objects/moduleobject.c - PyModule_Type -
/third_party/python/Modules/
D_testcapimodule.c1154 tp_name = PyType_GetName(&PyModule_Type); in test_get_type_name()