}
return super.__divmod__(other);
}
public PyObject __rdivmod__(PyObject other) {
PyType self_type = getType();
PyObject impl = self_type.lookup("__rdivmod__");
if (impl != null) {
PyObject res = impl.__get__(this, self_type).__call__(other);
if (res == Py.NotImplemented)
return null;
return res;