Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
DPython-ast.c318 static PyTypeObject *Constant_type; variable
962 Constant_type = make_type("Constant", expr_type, Constant_fields, 1); in init_types()
963 if (!Constant_type) return 0; in init_types()
3361 result = PyType_GenericNew(Constant_type, NULL, NULL); in ast2obj_expr()
6809 isinstance = PyObject_IsInstance(obj, (PyObject*)Constant_type); in obj2ast_expr()
8259 if (PyDict_SetItemString(d, "Constant", (PyObject*)Constant_type) < 0) in PyInit__ast()