Skip to content

Commit 959ae62

Browse files
committed
reference to iso8601 standard
1 parent 389a9d9 commit 959ae62

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pandas/core/tools/datetimes.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,8 +250,9 @@ def to_datetime(arg, errors='raise', dayfirst=False, yearfirst=False,
250250
>>> %timeit pd.to_datetime(s,infer_datetime_format=False)
251251
1 loop, best of 3: 471 ms per loop
252252
253-
Passing require_iso8601=True will only parse ISO8601-compliant datetime
254-
strings and treat others as non-parseable dates.
253+
Passing require_iso8601=True will only parse datetime strings compliant
254+
to `ISO8601<https://en.wikipedia.org/wiki/ISO_8601>`_ and treat others
255+
as non-parseable dates.
255256
256257
>>> s = pd.Series(['M1809', 'M1701', pd.Timestamp('20130101')])
257258

0 commit comments

Comments
 (0)