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 c4aa512 commit ec4c97dCopy full SHA for ec4c97d
pandas/core/indexes/range.py
@@ -88,13 +88,13 @@ class RangeIndex(Index):
88
89
Parameters
90
----------
91
- start : int (default: 0), range, or other RangeIndex instance
+ start : int, range, or other RangeIndex instance, default None
92
If int and "stop" is not given, interpreted as "stop" instead.
93
- stop : int (default: 0)
+ stop : int, default None
94
The end value of the range (exclusive).
95
- step : int (default: 1)
+ step : int, default None
96
The step size of the range.
97
- dtype : np.int64
+ dtype : np.int64, default None
98
Unused, accepted for homogeneity with other index types.
99
copy : bool, default False
100
0 commit comments