(s)
| 589 | found_dict = found.groupdict() |
| 590 | if locale_time.LC_alt_digits: |
| 591 | def parse_int(s): |
| 592 | try: |
| 593 | return locale_time.LC_alt_digits.index(s) |
| 594 | except ValueError: |
| 595 | return int(s) |
| 596 | else: |
| 597 | parse_int = int |
| 598 |
no test coverage detected
searching dependent graphs…