File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
168
168
-i " pandas.errors.NumExprClobberingError SA01" \
169
169
-i " pandas.errors.NumbaUtilError SA01" \
170
170
-i " pandas.errors.OptionError SA01" \
171
- -i " pandas.errors.OutOfBoundsDatetime SA01" \
172
171
-i " pandas.errors.OutOfBoundsTimedelta SA01" \
173
172
-i " pandas.errors.PerformanceWarning SA01" \
174
173
-i " pandas.errors.PossibleDataLossError SA01" \
Original file line number Diff line number Diff line change @@ -176,6 +176,15 @@ class OutOfBoundsDatetime(ValueError):
176
176
"""
177
177
Raised when the datetime is outside the range that can be represented.
178
178
179
+ This error occurs when attempting to convert or parse a datetime value
180
+ that exceeds the bounds supported by pandas' internal datetime
181
+ representation.
182
+
183
+ See Also
184
+ --------
185
+ to_datetime : Convert argument to datetime.
186
+ Timestamp : Pandas replacement for python ``datetime.datetime`` object.
187
+
179
188
Examples
180
189
--------
181
190
>>> pd.to_datetime("08335394550")
You can’t perform that action at this time.
0 commit comments