File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
75
75
-i " pandas.Period.ordinal GL08" \
76
76
-i " pandas.Period.to_timestamp SA01" \
77
77
-i " pandas.PeriodDtype.freq SA01" \
78
- -i " pandas.RangeIndex PR07" \
79
78
-i " pandas.RangeIndex.from_range PR01,SA01" \
80
79
-i " pandas.RangeIndex.start SA01" \
81
80
-i " pandas.RangeIndex.step SA01" \
Original file line number Diff line number Diff line change @@ -90,7 +90,9 @@ class RangeIndex(Index):
90
90
start : int (default: 0), range, or other RangeIndex instance
91
91
If int and "stop" is not given, interpreted as "stop" instead.
92
92
stop : int (default: 0)
93
+ The end value of the range (exclusive).
93
94
step : int (default: 1)
95
+ The step size of the range.
94
96
dtype : np.int64
95
97
Unused, accepted for homogeneity with other index types.
96
98
copy : bool, default False
You can’t perform that action at this time.
0 commit comments