Skip to content

Commit 108bb30

Browse files
committed
API/BUG: reindex_like not passing copy/limit kwargs thru
1 parent 15bc509 commit 108bb30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/generic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1369,7 +1369,7 @@ def reindex_like(self, other, method=None, copy=True, limit=None):
13691369
-------
13701370
reindexed : same as input
13711371
"""
1372-
d = other._construct_axes_dict(method=method)
1372+
d = other._construct_axes_dict(method=method, copy=copy, limit=limit)
13731373
return self.reindex(**d)
13741374

13751375
def drop(self, labels, axis=0, level=None, inplace=False, **kwargs):

0 commit comments

Comments
 (0)