Skip to content

Commit

Permalink
MAINT: .take() --> ._take()
Browse files Browse the repository at this point in the history
  • Loading branch information
gfyoung committed Sep 23, 2017
1 parent 35812d0 commit 41504af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -3349,7 +3349,7 @@ def dropna(self, axis=0, how='any', thresh=None, subset=None,
else:
raise TypeError('must specify how or thresh')

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

if inplace:
self._update_inplace(result)
Expand Down

0 comments on commit 41504af

Please sign in to comment.