(s)
| 572 | found_dict = found.groupdict() |
| 573 | if locale_time.LC_alt_digits: |
| 574 | def parse_int(s): |
| 575 | try: |
| 576 | return locale_time.LC_alt_digits.index(s) |
| 577 | except ValueError: |
| 578 | return int(s) |
| 579 | else: |
| 580 | parse_int = int |
| 581 |
no test coverage detected