Parse a date string according to the given format (like time.strptime()).
(cls, date_string, format)
| 1063 | |
| 1064 | @classmethod |
| 1065 | def strptime(cls, date_string, format): |
| 1066 | """Parse a date string according to the given format (like time.strptime()).""" |
| 1067 | import _strptime |
| 1068 | return _strptime._strptime_datetime_date(cls, date_string, format) |
| 1069 | |
| 1070 | # Conversions to string |
| 1071 |
no outgoing calls