MCPcopy Index your code
hub / github.com/RustPython/RustPython / is_unicode_scalar_value

Function is_unicode_scalar_value

Lib/tomllib/_parser.py:731–732  ·  view source on GitHub ↗
(codepoint: int)

Source from the content-addressed store, hash-verified

729
730
731def is_unicode_scalar_value(codepoint: int) -> bool:
732 return (0 <= codepoint <= 55295) or (57344 <= codepoint <= 1114111)
733
734
735def make_safe_parse_float(parse_float: ParseFloat) -> ParseFloat:

Callers 1

parse_hex_charFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected