(codepoint: int)
| 734 | |
| 735 | |
| 736 | def is_unicode_scalar_value(codepoint: int) -> bool: |
| 737 | return (0 <= codepoint <= 55295) or (57344 <= codepoint <= 1114111) |
| 738 | |
| 739 | |
| 740 | def make_safe_parse_float(parse_float: ParseFloat) -> ParseFloat: |
no outgoing calls
no test coverage detected
searching dependent graphs…