Home
last modified time | relevance | path

Searched refs:data_string (Results 1 – 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
D_strptime.py295 def _strptime(data_string, format="%a %b %d %H:%M:%S %Y"): argument
322 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"): argument
454 return _strptime(data_string, format)[0]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_strptime.py211 self.assertRaises(ValueError, _strptime._strptime_time, data_string="%d",