Removed an inaccurate statement
in docstrings of dateparse functions.
This commit is contained in:
parent
7631fb8f37
commit
a43ecc0444
|
@ -43,8 +43,6 @@ def parse_time(value):
|
||||||
|
|
||||||
This function doesn't support time zone offsets.
|
This function doesn't support time zone offsets.
|
||||||
|
|
||||||
Sub-microsecond precision is accepted, but ignored.
|
|
||||||
|
|
||||||
Raises ValueError if the input is well formatted but not a valid time.
|
Raises ValueError if the input is well formatted but not a valid time.
|
||||||
Returns None if the input isn't well formatted, in particular if it
|
Returns None if the input isn't well formatted, in particular if it
|
||||||
contains an offset.
|
contains an offset.
|
||||||
|
@ -63,8 +61,6 @@ def parse_datetime(value):
|
||||||
This function supports time zone offsets. When the input contains one,
|
This function supports time zone offsets. When the input contains one,
|
||||||
the output uses an instance of FixedOffset as tzinfo.
|
the output uses an instance of FixedOffset as tzinfo.
|
||||||
|
|
||||||
Sub-microsecond precision is accepted, but ignored.
|
|
||||||
|
|
||||||
Raises ValueError if the input is well formatted but not a valid datetime.
|
Raises ValueError if the input is well formatted but not a valid datetime.
|
||||||
Returns None if the input isn't well formatted.
|
Returns None if the input isn't well formatted.
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue