Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pandas/core/indexes/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1180,8 +1180,8 @@ def astype(self, dtype: Dtype, copy: bool = True):
----------
indices : array-like
Indices to be taken.
axis : int, optional
The axis over which to select values, always 0.
axis : {0 or 'index'}, optional
The axis over which to select values, always 0 or 'index'.
allow_fill : bool, default True
How to handle negative values in `indices`.
Expand Down Expand Up @@ -1234,8 +1234,8 @@ def take(
----------
indices : array-like
Indices to be taken.
axis : int, optional
The axis over which to select values, always 0.
axis : {0 or 'index'}, optional
The axis over which to select values, always 0 or 'index'.
allow_fill : bool, default True
How to handle negative values in `indices`.
Expand Down
4 changes: 2 additions & 2 deletions pandas/core/indexes/multi.py
Original file line number Diff line number Diff line change
Expand Up @@ -2303,8 +2303,8 @@ def take(
----------
indices : array-like
Indices to be taken.
axis : int, optional
The axis over which to select values, always 0.
axis : {0 or 'index'}, optional
The axis over which to select values, always 0 or 'index'.
allow_fill : bool, default True
How to handle negative values in `indices`.

Expand Down
Loading