Lines Matching refs:date_string
518 .. classmethod:: date.fromisoformat(date_string)
520 Return a :class:`date` corresponding to a *date_string* given in the format
986 .. classmethod:: datetime.fromisoformat(date_string)
988 Return a :class:`.datetime` corresponding to a *date_string* in one of the
1032 .. classmethod:: datetime.strptime(date_string, format)
1034 Return a :class:`.datetime` corresponding to *date_string*, parsed according to
1039 datetime(*(time.strptime(date_string, format)[0:6]))
1041 :exc:`ValueError` is raised if the date_string and format
2295 | Signature | ``strftime(format)`` | ``strptime(date_string,…
2450 Using ``datetime.strptime(date_string, format)`` is equivalent to::
2452 datetime(*(time.strptime(date_string, format)[0:6]))