Searched refs:Not_type (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Python/ |
D | Python-ast.c | 328 static PyTypeObject *Not_type; variable 894 Not_type = make_type("Not", unaryop_type, NULL, 0); in init_types() 895 if (!Not_type) return 0; in init_types() 896 Not_singleton = PyType_GenericNew(Not_type, NULL, NULL); in init_types() 6280 isinstance = PyObject_IsInstance(obj, (PyObject *)Not_type); in obj2ast_unaryop() 6894 if (PyDict_SetItemString(d, "Not", (PyObject*)Not_type) < 0) return; in init_ast()
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 417 static PyTypeObject *Not_type; variable 1085 Not_type = make_type("Not", unaryop_type, NULL, 0); in init_types() 1086 if (!Not_type) return 0; in init_types() 1087 Not_singleton = PyType_GenericNew(Not_type, NULL, NULL); in init_types() 7476 isinstance = PyObject_IsInstance(obj, (PyObject *)Not_type); in obj2ast_unaryop() 8321 if (PyDict_SetItemString(d, "Not", (PyObject*)Not_type) < 0) return NULL; in PyInit__ast()
|