Skip to content

Commit

Permalink
mod
Browse files Browse the repository at this point in the history
  • Loading branch information
sinhrks committed Aug 20, 2016
1 parent 95376bc commit fe322be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandas/core/ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -593,14 +593,14 @@ def _is_offset(self, arr_or_obj):


def _align_method_SERIES(left, right, align_asobject=False):
""" algin lhs and rhs Series """
""" align lhs and rhs Series """

# ToDo: Different from _align_method_FRAME, list, tuple and ndarray
# are not coerced here
# because Series has inconsistencies described in #13637

if isinstance(right, ABCSeries):
# avoid repated alignment
# avoid repeated alignment
if not left.index.equals(right.index):

if align_asobject:
Expand Down

0 comments on commit fe322be

Please sign in to comment.