Searched refs:Mult_type (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Python/ |
D | Python-ast.c | 313 static PyTypeObject *Mult_type; variable 847 Mult_type = make_type("Mult", operator_type, NULL, 0); in init_types() 848 if (!Mult_type) return 0; in init_types() 849 Mult_singleton = PyType_GenericNew(Mult_type, NULL, NULL); in init_types() 6177 isinstance = PyObject_IsInstance(obj, (PyObject *)Mult_type); in obj2ast_operator() 6875 if (PyDict_SetItemString(d, "Mult", (PyObject*)Mult_type) < 0) return; in init_ast()
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 401 static PyTypeObject *Mult_type; variable 1034 Mult_type = make_type("Mult", operator_type, NULL, 0); in init_types() 1035 if (!Mult_type) return 0; in init_types() 1036 Mult_singleton = PyType_GenericNew(Mult_type, NULL, NULL); in init_types() 7370 isinstance = PyObject_IsInstance(obj, (PyObject *)Mult_type); in obj2ast_operator() 8299 if (PyDict_SetItemString(d, "Mult", (PyObject*)Mult_type) < 0) return NULL; in PyInit__ast()
|