Home
last modified time | relevance | path

Searched refs:Interactive_type (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Python/
DPython-ast.c22 static PyTypeObject *Interactive_type; variable
679 Interactive_type = make_type("Interactive", mod_type, in init_types()
681 if (!Interactive_type) return 0; in init_types()
2154 result = PyType_GenericNew(Interactive_type, NULL, NULL); in ast2obj_mod()
3370 isinstance = PyObject_IsInstance(obj, (PyObject*)Interactive_type); in obj2ast_mod()
6775 if (PyDict_SetItemString(d, "Interactive", (PyObject*)Interactive_type) in init_ast()
6938 req_type[2] = (PyObject*)Interactive_type; in PyAST_obj2mod()
/external/python/cpython3/Python/
DPython-ast.c16 static PyTypeObject *Interactive_type; variable
848 Interactive_type = make_type("Interactive", mod_type, Interactive_fields, in init_types()
850 if (!Interactive_type) return 0; in init_types()
2588 result = PyType_GenericNew(Interactive_type, NULL, NULL); in ast2obj_mod()
3994 isinstance = PyObject_IsInstance(obj, (PyObject*)Interactive_type); in obj2ast_mod()
8166 if (PyDict_SetItemString(d, "Interactive", (PyObject*)Interactive_type) < in PyInit__ast()
8375 req_type[2] = (PyObject*)Interactive_type; in PyAST_obj2mod()