Home
last modified time | relevance | path

Searched refs:RShift_type (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Python/
DPython-ast.c318 static PyTypeObject *RShift_type; variable
867 RShift_type = make_type("RShift", operator_type, NULL, 0); in init_types()
868 if (!RShift_type) return 0; in init_types()
869 RShift_singleton = PyType_GenericNew(RShift_type, NULL, NULL); in init_types()
6217 isinstance = PyObject_IsInstance(obj, (PyObject *)RShift_type); in obj2ast_operator()
6881 if (PyDict_SetItemString(d, "RShift", (PyObject*)RShift_type) < 0) in init_ast()
/external/python/cpython3/Python/
DPython-ast.c407 static PyTypeObject *RShift_type; variable
1058 RShift_type = make_type("RShift", operator_type, NULL, 0); in init_types()
1059 if (!RShift_type) return 0; in init_types()
1060 RShift_singleton = PyType_GenericNew(RShift_type, NULL, NULL); in init_types()
7418 isinstance = PyObject_IsInstance(obj, (PyObject *)RShift_type); in obj2ast_operator()
8307 if (PyDict_SetItemString(d, "RShift", (PyObject*)RShift_type) < 0) return in PyInit__ast()