Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
DPython-ast.c282 static PyTypeObject *Param_type; variable
810 Param_type = make_type("Param", expr_context_type, NULL, 0); in init_types()
811 if (!Param_type) return 0; in init_types()
812 Param_singleton = PyType_GenericNew(Param_type, NULL, NULL); in init_types()
5968 isinstance = PyObject_IsInstance(obj, (PyObject *)Param_type); in obj2ast_expr_context()
6859 if (PyDict_SetItemString(d, "Param", (PyObject*)Param_type) < 0) return; in init_ast()
/external/python/cpython3/Python/
DPython-ast.c367 static PyTypeObject *Param_type; variable
999 Param_type = make_type("Param", expr_context_type, NULL, 0); in init_types()
1000 if (!Param_type) return 0; in init_types()
1001 Param_singleton = PyType_GenericNew(Param_type, NULL, NULL); in init_types()
7175 isinstance = PyObject_IsInstance(obj, (PyObject *)Param_type); in obj2ast_expr_context()
8281 if (PyDict_SetItemString(d, "Param", (PyObject*)Param_type) < 0) return in PyInit__ast()