Searched refs:data_string (Results 1 – 2 of 2) sorted by relevance
295 def _strptime(data_string, format="%a %b %d %H:%M:%S %Y"): argument322 found = format_regex.match(data_string)325 (data_string, format))326 if len(data_string) != found.end():328 data_string[found.end():])453 def _strptime_time(data_string, format="%a %b %d %H:%M:%S %Y"): argument454 return _strptime(data_string, format)[0]
211 self.assertRaises(ValueError, _strptime._strptime_time, data_string="%d",