Home | History | Annotate | Download | only in Python

Lines Matching refs:BinOp_type

164 static PyTypeObject *BinOp_type;
744 BinOp_type = make_type("BinOp", expr_type, BinOp_fields, 3);
745 if (!BinOp_type) return 0;
2591 result = PyType_GenericNew(BinOp_type, NULL, NULL);
4884 isinstance = PyObject_IsInstance(obj, (PyObject*)BinOp_type);
6820 if (PyDict_SetItemString(d, "BinOp", (PyObject*)BinOp_type) < 0) return;