File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
101
101
-i " pandas.Index.names GL08" \
102
102
-i " pandas.Index.putmask PR01,RT03" \
103
103
-i " pandas.Index.ravel PR01,RT03" \
104
- -i " pandas.Index.slice_indexer PR07,RT03,SA01" \
105
104
-i " pandas.Index.str PR01,SA01" \
106
105
-i " pandas.Index.view GL08" \
107
106
-i " pandas.Int16Dtype SA01" \
Original file line number Diff line number Diff line change @@ -6323,19 +6323,26 @@ def slice_indexer(
6323
6323
end : label, default None
6324
6324
If None, defaults to the end.
6325
6325
step : int, default None
6326
+ If None, defaults to 1.
6326
6327
6327
6328
Returns
6328
6329
-------
6329
6330
slice
6331
+ A slice object.
6330
6332
6331
6333
Raises
6332
6334
------
6333
6335
KeyError : If key does not exist, or key is not unique and index is
6334
6336
not ordered.
6335
6337
6338
+ See Also
6339
+ --------
6340
+ Index.slice_locs : Computes slice locations for input labels.
6341
+ Index.get_slice_bound : Retrieves slice bound that corresponds to given label.
6342
+
6336
6343
Notes
6337
6344
-----
6338
- This function assumes that the data is sorted, so use at your own peril
6345
+ This function assumes that the data is sorted, so use at your own peril.
6339
6346
6340
6347
Examples
6341
6348
--------
You can’t perform that action at this time.
0 commit comments