File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -705,6 +705,7 @@ MultiIndex
705
705
- :meth: `MultiIndex.insert ` would not insert NA value correctly at unified location of index -1 (:issue: `59003 `)
706
706
- :func: `MultiIndex.get_level_values ` accessing a :class: `DatetimeIndex ` does not carry the frequency attribute along (:issue: `58327 `, :issue: `57949 `)
707
707
- Bug in :class: `DataFrame ` arithmetic operations in case of unaligned MultiIndex columns (:issue: `60498 `)
708
+ - Bug in :class: `DataFrame ` arithmetic operation with :class: `Series ` in case of unaligned MultiIndex (:issue: `61009 `)
708
709
-
709
710
710
711
I/O
Original file line number Diff line number Diff line change @@ -9636,10 +9636,7 @@ def _align_series(
9636
9636
9637
9637
left = self ._constructor_from_mgr (fdata , axes = fdata .axes )
9638
9638
9639
- if ridx is None :
9640
- right = other .copy (deep = False )
9641
- else :
9642
- right = other .reindex (join_index , level = level )
9639
+ right = other ._reindex_indexer (join_index , ridx )
9643
9640
9644
9641
# fill
9645
9642
fill_na = notna (fill_value )
You can’t perform that action at this time.
0 commit comments