Searched refs:ClassDef_type (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Include/internal/ |
D | pycore_ast_state.h | 39 PyObject *ClassDef_type; member
|
/external/python/cpython2/Python/ |
D | Python-ast.c | 47 static PyTypeObject *ClassDef_type; variable 693 ClassDef_type = make_type("ClassDef", stmt_type, ClassDef_fields, 4); in init_types() 694 if (!ClassDef_type) return 0; in init_types() 2226 result = PyType_GenericNew(ClassDef_type, NULL, NULL); in ast2obj_stmt() 3616 isinstance = PyObject_IsInstance(obj, (PyObject*)ClassDef_type); in obj2ast_stmt() 6783 if (PyDict_SetItemString(d, "ClassDef", (PyObject*)ClassDef_type) < 0) in init_ast()
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 53 Py_CLEAR(state->ClassDef_type); in _PyAST_Fini() 1179 state->ClassDef_type = make_type(state, "ClassDef", state->stmt_type, in init_types() 1182 if (!state->ClassDef_type) return 0; in init_types() 3726 tp = (PyTypeObject *)state->ClassDef_type; in ast2obj_stmt() 5989 tp = state->ClassDef_type; in obj2ast_stmt() 11642 if (PyModule_AddObjectRef(m, "ClassDef", state->ClassDef_type) < 0) { in astmodule_exec()
|
/external/python/cpython3/Doc/data/ |
D | python3.10.abi | 6287 …<var-decl name='ClassDef_type' type-id='type-id-16' visibility='default' filepath='./Include/inter…
|