Searched refs:Invert_type (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Python/ |
D | Python-ast.c | 327 static PyTypeObject *Invert_type; variable 890 Invert_type = make_type("Invert", unaryop_type, NULL, 0); in init_types() 891 if (!Invert_type) return 0; in init_types() 892 Invert_singleton = PyType_GenericNew(Invert_type, NULL, NULL); in init_types() 6272 isinstance = PyObject_IsInstance(obj, (PyObject *)Invert_type); in obj2ast_unaryop() 6892 if (PyDict_SetItemString(d, "Invert", (PyObject*)Invert_type) < 0) in init_ast()
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 416 static PyTypeObject *Invert_type; variable 1081 Invert_type = make_type("Invert", unaryop_type, NULL, 0); in init_types() 1082 if (!Invert_type) return 0; in init_types() 1083 Invert_singleton = PyType_GenericNew(Invert_type, NULL, NULL); in init_types() 7468 isinstance = PyObject_IsInstance(obj, (PyObject *)Invert_type); in obj2ast_unaryop() 8319 if (PyDict_SetItemString(d, "Invert", (PyObject*)Invert_type) < 0) return in PyInit__ast()
|