diff --git a/pandas/core/roperator.py b/pandas/core/roperator.py index 9ea4bea41cdea..5a923c59d2756 100644 --- a/pandas/core/roperator.py +++ b/pandas/core/roperator.py @@ -56,7 +56,7 @@ def rand_(left, right): def ror_(left, right): - return operator.or_(right, left) + return right | left def rxor(left, right):