Lines Matching full:format_string
416 format_string = "%Y %m %d %H %M %S %w %Z"
417 result = _strptime._strptime_time(time.strftime(format_string, self.time_tuple),
418 format_string)
425 format_string = "%Y %H %M %S %w %j %Z"
426 result = _strptime._strptime_time(time.strftime(format_string, self.time_tuple),
427 format_string)
439 format_string = "%Y %m %d %H %S %j %Z"
440 result = _strptime._strptime_time(time.strftime(format_string, self.time_tuple),
441 format_string)
451 format_string = "%%Y %%%s %%w" % directive
453 strp_input = dt_date.strftime(format_string)
454 strp_output = _strptime._strptime_time(strp_input, format_string)