We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e62ee17 commit a906325Copy full SHA for a906325
pandas/core/indexers/utils.py
@@ -492,7 +492,7 @@ def check_array_indexer(array: AnyArrayLike, indexer: Any) -> Any:
492
>>> pd.api.indexers.check_array_indexer(arr, 1)
493
1
494
>>> pd.api.indexers.check_array_indexer(arr, slice(0, 1, 1))
495
- slice(0, 1, None)
+ slice(0, 1, 1)
496
497
Similarly for integer indexers, an integer ndarray is returned when it is
498
a valid indexer, otherwise an error is (for integer indexers, a matching
0 commit comments