Searched refs:LShift_type (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Python/ |
D | Python-ast.c | 317 static PyTypeObject *LShift_type; variable 863 LShift_type = make_type("LShift", operator_type, NULL, 0); in init_types() 864 if (!LShift_type) return 0; in init_types() 865 LShift_singleton = PyType_GenericNew(LShift_type, NULL, NULL); in init_types() 6209 isinstance = PyObject_IsInstance(obj, (PyObject *)LShift_type); in obj2ast_operator() 6879 if (PyDict_SetItemString(d, "LShift", (PyObject*)LShift_type) < 0) in init_ast()
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 406 static PyTypeObject *LShift_type; variable 1054 LShift_type = make_type("LShift", operator_type, NULL, 0); in init_types() 1055 if (!LShift_type) return 0; in init_types() 1056 LShift_singleton = PyType_GenericNew(LShift_type, NULL, NULL); in init_types() 7410 isinstance = PyObject_IsInstance(obj, (PyObject *)LShift_type); in obj2ast_operator() 8305 if (PyDict_SetItemString(d, "LShift", (PyObject*)LShift_type) < 0) return in PyInit__ast()
|