Home
last modified time | relevance | path

Searched refs:date_string (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Lib/
Ddatetime.py980 def fromisoformat(cls, date_string): argument
982 if not isinstance(date_string, str):
985 if len(date_string) not in (7, 8, 10):
989 return cls(*_parse_isoformat_date(date_string))
1827 def fromisoformat(cls, date_string): argument
1829 if not isinstance(date_string, str):
1832 if len(date_string) < 7:
1837 separator_location = _find_isoformat_datetime_separator(date_string)
1838 dstr = date_string[0:separator_location]
1839 tstr = date_string[(separator_location+1):]
[all …]
/third_party/python/Doc/library/
Ddatetime.rst527 .. classmethod:: date.fromisoformat(date_string)
529 Return a :class:`date` corresponding to a *date_string* given in any valid
993 .. classmethod:: datetime.fromisoformat(date_string)
995 Return a :class:`.datetime` corresponding to a *date_string* in any valid
1041 .. classmethod:: datetime.strptime(date_string, format)
1043 Return a :class:`.datetime` corresponding to *date_string*, parsed according to
1048 datetime(*(time.strptime(date_string, format)[0:6]))
1050 :exc:`ValueError` is raised if the date_string and format
2313 | Signature | ``strftime(format)`` | ``strptime(date_string,…
2477 Using ``datetime.strptime(date_string, format)`` is equivalent to::
[all …]
/third_party/rust/crates/libc/src/
Dpsp.rs3315 pub fn sceRtcParseDateTime(dest_tick: *mut u64, date_string: *const u8) -> i32; in sceRtcParseDateTime()
/third_party/e2fsprogs/
D1002-add-header-file-to-musl-compile-mk2efs.patch110 + const char **date_string);