Searched refs:BitXor_type (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Python/ |
D | Python-ast.c | 320 static PyTypeObject *BitXor_type; variable 875 BitXor_type = make_type("BitXor", operator_type, NULL, 0); in init_types() 876 if (!BitXor_type) return 0; in init_types() 877 BitXor_singleton = PyType_GenericNew(BitXor_type, NULL, NULL); in init_types() 6233 isinstance = PyObject_IsInstance(obj, (PyObject *)BitXor_type); in obj2ast_operator() 6884 if (PyDict_SetItemString(d, "BitXor", (PyObject*)BitXor_type) < 0) in init_ast()
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 409 static PyTypeObject *BitXor_type; variable 1066 BitXor_type = make_type("BitXor", operator_type, NULL, 0); in init_types() 1067 if (!BitXor_type) return 0; in init_types() 1068 BitXor_singleton = PyType_GenericNew(BitXor_type, NULL, NULL); in init_types() 7434 isinstance = PyObject_IsInstance(obj, (PyObject *)BitXor_type); in obj2ast_operator() 8311 if (PyDict_SetItemString(d, "BitXor", (PyObject*)BitXor_type) < 0) return in PyInit__ast()
|