Skip to content

Commit 41504af

Browse files
committed
MAINT: .take() --> ._take()
1 parent 35812d0 commit 41504af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/frame.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3349,7 +3349,7 @@ def dropna(self, axis=0, how='any', thresh=None, subset=None,
33493349
else:
33503350
raise TypeError('must specify how or thresh')
33513351

3352-
result = self.take(mask.nonzero()[0], axis=axis)
3352+
result = self._take(mask.nonzero()[0], axis=axis, convert=False)
33533353

33543354
if inplace:
33553355
self._update_inplace(result)

0 commit comments

Comments
 (0)