Skip to content

Commit

Permalink
add rmod
Browse files Browse the repository at this point in the history
  • Loading branch information
jreback committed May 31, 2018
1 parent 359b6ef commit f62c1cf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pandas/core/arrays/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -681,6 +681,7 @@ def _add_numeric_methods_binary(cls):
cls.__rpow__ = cls._make_arithmetic_op(ops.rpow)
cls.__pow__ = cls._make_arithmetic_op(operator.pow)
cls.__mod__ = cls._make_arithmetic_op(operator.mod)
cls.__rmod__ = cls._make_arithmetic_op(ops.rmod)
cls.__floordiv__ = cls._make_arithmetic_op(operator.floordiv)
cls.__rfloordiv__ = cls._make_arithmetic_op(ops.rfloordiv)
cls.__truediv__ = cls._make_arithmetic_op(operator.truediv)
Expand Down

0 comments on commit f62c1cf

Please sign in to comment.