Lines Matching refs:date_string
521 .. classmethod:: date.fromisoformat(date_string)
523 Return a :class:`date` corresponding to a *date_string* given in the format
989 .. classmethod:: datetime.fromisoformat(date_string)
991 Return a :class:`.datetime` corresponding to a *date_string* in one of the
1035 .. classmethod:: datetime.strptime(date_string, format)
1037 Return a :class:`.datetime` corresponding to *date_string*, parsed according to
1042 datetime(*(time.strptime(date_string, format)[0:6]))
1044 :exc:`ValueError` is raised if the date_string and format
2297 | Signature | ``strftime(format)`` | ``strptime(date_string,…
2453 Using ``datetime.strptime(date_string, format)`` is equivalent to::
2455 datetime(*(time.strptime(date_string, format)[0:6]))