Searched refs:Mod_type (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Include/internal/ |
D | pycore_ast_state.h | 104 PyObject *Mod_type; member
|
/external/python/cpython2/Python/ |
D | Python-ast.c | 315 static PyTypeObject *Mod_type; variable 855 Mod_type = make_type("Mod", operator_type, NULL, 0); in init_types() 856 if (!Mod_type) return 0; in init_types() 857 Mod_singleton = PyType_GenericNew(Mod_type, NULL, NULL); in init_types() 6193 isinstance = PyObject_IsInstance(obj, (PyObject *)Mod_type); in obj2ast_operator() 6877 if (PyDict_SetItemString(d, "Mod", (PyObject*)Mod_type) < 0) return; in init_ast()
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 118 Py_CLEAR(state->Mod_type); in _PyAST_Fini() 1532 state->Mod_type = make_type(state, "Mod", state->operator_type, NULL, 0, in init_types() 1534 if (!state->Mod_type) return 0; in init_types() 1535 state->Mod_singleton = PyType_GenericNew((PyTypeObject *)state->Mod_type, in init_types() 9703 isinstance = PyObject_IsInstance(obj, state->Mod_type); in obj2ast_operator() 11840 if (PyModule_AddObjectRef(m, "Mod", state->Mod_type) < 0) { in astmodule_exec()
|
/external/python/cpython3/Doc/data/ |
D | python3.10.abi | 6482 …<var-decl name='Mod_type' type-id='type-id-16' visibility='default' filepath='./Include/internal/p…
|