Skip to content

Commit 62cd7cd

Browse files
committed
update def merge and def eval, methods call __finalize__
1 parent 5c15424 commit 62cd7cd

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

pandas/core/frame.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11073,7 +11073,6 @@ def merge(
1107311073

1107411074
if not left_key or not right_key:
1107511075
raise ValueError("Must specify 'on' or both 'left_on' and 'right_on'")
11076-
1107711076
result = []
1107811077

1107911078
right_indexed = {}
@@ -11112,7 +11111,6 @@ def merge(
1111211111
row = {k: None for k in self.columns}
1111311112
row.update({k: v for k, v in r_row.items()})
1111411113
result.append(row)
11115-
1111611114
if sort:
1111711115
result.sort(key=lambda x: x.get(left_key))
1111811116

0 commit comments

Comments
 (0)