Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
DPython-ast.c329 static PyTypeObject *UAdd_type; variable
898 UAdd_type = make_type("UAdd", unaryop_type, NULL, 0); in init_types()
899 if (!UAdd_type) return 0; in init_types()
900 UAdd_singleton = PyType_GenericNew(UAdd_type, NULL, NULL); in init_types()
6288 isinstance = PyObject_IsInstance(obj, (PyObject *)UAdd_type); in obj2ast_unaryop()
6895 if (PyDict_SetItemString(d, "UAdd", (PyObject*)UAdd_type) < 0) return; in init_ast()
/external/python/cpython3/Python/
DPython-ast.c418 static PyTypeObject *UAdd_type; variable
1089 UAdd_type = make_type("UAdd", unaryop_type, NULL, 0); in init_types()
1090 if (!UAdd_type) return 0; in init_types()
1091 UAdd_singleton = PyType_GenericNew(UAdd_type, NULL, NULL); in init_types()
7484 isinstance = PyObject_IsInstance(obj, (PyObject *)UAdd_type); in obj2ast_unaryop()
8322 if (PyDict_SetItemString(d, "UAdd", (PyObject*)UAdd_type) < 0) return NULL; in PyInit__ast()