Skip to content

Commit f62c1cf

Browse files
committed
add rmod
1 parent 359b6ef commit f62c1cf

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pandas/core/arrays/base.py

+1
Original file line numberDiff line numberDiff line change
@@ -681,6 +681,7 @@ def _add_numeric_methods_binary(cls):
681681
cls.__rpow__ = cls._make_arithmetic_op(ops.rpow)
682682
cls.__pow__ = cls._make_arithmetic_op(operator.pow)
683683
cls.__mod__ = cls._make_arithmetic_op(operator.mod)
684+
cls.__rmod__ = cls._make_arithmetic_op(ops.rmod)
684685
cls.__floordiv__ = cls._make_arithmetic_op(operator.floordiv)
685686
cls.__rfloordiv__ = cls._make_arithmetic_op(ops.rfloordiv)
686687
cls.__truediv__ = cls._make_arithmetic_op(operator.truediv)

0 commit comments

Comments
 (0)