Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
731
def
is_unicode_scalar_value(codepoint: int) -> bool:
732
return
(0 <= codepoint <= 55295) or (57344 <= codepoint <= 1114111)
733
734
735
def
make_safe_parse_float(parse_float: ParseFloat) -> ParseFloat:
Callers
1
parse_hex_char
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected