We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b09f001 commit 03841acCopy full SHA for 03841ac
pandas/core/reshape/merge.py
@@ -764,8 +764,9 @@ def _reindex_and_concat(
764
765
from pandas import concat
766
767
+ left.columns = llabels
768
+ right.columns = rlabels
769
result = concat([left, right], axis=1, copy=copy)
- result.columns = llabels.append(rlabels)
770
return result
771
772
def get_result(self, copy: bool = True) -> DataFrame:
0 commit comments