8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 359b6ef commit f62c1cfCopy full SHA for f62c1cf
pandas/core/arrays/base.py
@@ -681,6 +681,7 @@ def _add_numeric_methods_binary(cls):
681
cls.__rpow__ = cls._make_arithmetic_op(ops.rpow)
682
cls.__pow__ = cls._make_arithmetic_op(operator.pow)
683
cls.__mod__ = cls._make_arithmetic_op(operator.mod)
684
+ cls.__rmod__ = cls._make_arithmetic_op(ops.rmod)
685
cls.__floordiv__ = cls._make_arithmetic_op(operator.floordiv)
686
cls.__rfloordiv__ = cls._make_arithmetic_op(ops.rfloordiv)
687
cls.__truediv__ = cls._make_arithmetic_op(operator.truediv)
0 commit comments