Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
DPython-ast.c305 static PyTypeObject *JoinedStr_type; variable
953 JoinedStr_type = make_type("JoinedStr", expr_type, JoinedStr_fields, 1); in init_types()
954 if (!JoinedStr_type) return 0; in init_types()
3330 result = PyType_GenericNew(JoinedStr_type, NULL, NULL); in ast2obj_expr()
6710 isinstance = PyObject_IsInstance(obj, (PyObject*)JoinedStr_type); in obj2ast_expr()
8251 if (PyDict_SetItemString(d, "JoinedStr", (PyObject*)JoinedStr_type) < 0) in PyInit__ast()