Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
DPython-ast.c330 static PyTypeObject *USub_type; variable
902 USub_type = make_type("USub", unaryop_type, NULL, 0); in init_types()
903 if (!USub_type) return 0; in init_types()
904 USub_singleton = PyType_GenericNew(USub_type, NULL, NULL); in init_types()
6296 isinstance = PyObject_IsInstance(obj, (PyObject *)USub_type); in obj2ast_unaryop()
6896 if (PyDict_SetItemString(d, "USub", (PyObject*)USub_type) < 0) return; in init_ast()
/external/python/cpython3/Python/
DPython-ast.c419 static PyTypeObject *USub_type; variable
1093 USub_type = make_type("USub", unaryop_type, NULL, 0); in init_types()
1094 if (!USub_type) return 0; in init_types()
1095 USub_singleton = PyType_GenericNew(USub_type, NULL, NULL); in init_types()
7492 isinstance = PyObject_IsInstance(obj, (PyObject *)USub_type); in obj2ast_unaryop()
8323 if (PyDict_SetItemString(d, "USub", (PyObject*)USub_type) < 0) return NULL; in PyInit__ast()