Lines Matching refs:found_dict
377 found_dict = found.groupdict()
378 for group_key in found_dict.keys():
385 year = int(found_dict['y'])
394 year = int(found_dict['Y'])
396 iso_year = int(found_dict['G'])
398 month = int(found_dict['m'])
400 month = locale_time.f_month.index(found_dict['B'].lower())
402 month = locale_time.a_month.index(found_dict['b'].lower())
404 day = int(found_dict['d'])
406 hour = int(found_dict['H'])
408 hour = int(found_dict['I'])
409 ampm = found_dict.get('p', '').lower()
424 minute = int(found_dict['M'])
426 second = int(found_dict['S'])
428 s = found_dict['f']
433 weekday = locale_time.f_weekday.index(found_dict['A'].lower())
435 weekday = locale_time.a_weekday.index(found_dict['a'].lower())
437 weekday = int(found_dict['w'])
443 weekday = int(found_dict['u'])
446 julian = int(found_dict['j'])
448 week_of_year = int(found_dict[group_key])
456 iso_week = int(found_dict['V'])
458 z = found_dict['z']
483 found_zone = found_dict['Z'].lower()
556 tzname = found_dict.get("Z")