Searched refs:NotIn_type (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Python/ |
D | Python-ast.c | 345 static PyTypeObject *NotIn_type; variable 945 NotIn_type = make_type("NotIn", cmpop_type, NULL, 0); in init_types() 946 if (!NotIn_type) return 0; in init_types() 947 NotIn_singleton = PyType_GenericNew(NotIn_type, NULL, NULL); in init_types() 6391 isinstance = PyObject_IsInstance(obj, (PyObject *)NotIn_type); in obj2ast_cmpop() 6907 if (PyDict_SetItemString(d, "NotIn", (PyObject*)NotIn_type) < 0) return; in init_ast()
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 434 static PyTypeObject *NotIn_type; variable 1136 NotIn_type = make_type("NotIn", cmpop_type, NULL, 0); in init_types() 1137 if (!NotIn_type) return 0; in init_types() 1138 NotIn_singleton = PyType_GenericNew(NotIn_type, NULL, NULL); in init_types() 7582 isinstance = PyObject_IsInstance(obj, (PyObject *)NotIn_type); in obj2ast_cmpop() 8337 if (PyDict_SetItemString(d, "NotIn", (PyObject*)NotIn_type) < 0) return in PyInit__ast()
|