Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
DPython-ast.c30 static PyTypeObject *Suite_type; variable
685 Suite_type = make_type("Suite", mod_type, Suite_fields, 1); in init_types()
686 if (!Suite_type) return 0; in init_types()
2172 result = PyType_GenericNew(Suite_type, NULL, NULL); in ast2obj_mod()
3433 isinstance = PyObject_IsInstance(obj, (PyObject*)Suite_type); in obj2ast_mod()
6779 if (PyDict_SetItemString(d, "Suite", (PyObject*)Suite_type) < 0) return; in init_ast()
/external/python/cpython3/Python/
DPython-ast.c24 static PyTypeObject *Suite_type; variable
853 Suite_type = make_type("Suite", mod_type, Suite_fields, 1); in init_types()
854 if (!Suite_type) return 0; in init_types()
2606 result = PyType_GenericNew(Suite_type, NULL, NULL); in ast2obj_mod()
4059 isinstance = PyObject_IsInstance(obj, (PyObject*)Suite_type); in obj2ast_mod()
8170 if (PyDict_SetItemString(d, "Suite", (PyObject*)Suite_type) < 0) return in PyInit__ast()