MCPcopy Index your code
hub / github.com/python/cpython / is_unicode_scalar_value

Function is_unicode_scalar_value

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

Source from the content-addressed store, hash-verified

734
735
736def is_unicode_scalar_value(codepoint: int) -> bool:
737 return (0 <= codepoint <= 55295) or (57344 <= codepoint <= 1114111)
738
739
740def 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

Used in the wild real call sites across dependent graphs

searching dependent graphs…