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

Function in_table_c4

Lib/stringprep.py:236–240  ·  view source on GitHub ↗
(code)

Source from the content-addressed store, hash-verified

234
235
236def in_table_c4(code):
237 c = ord(code)
238 if c < 0xFDD0: return False
239 if c < 0xFDF0: return True
240 return (ord(code) & 0xFFFF) in (0xFFFE, 0xFFFF)
241
242
243def in_table_c5(code):

Callers 1

testMethod · 0.85

Calls 1

ordFunction · 0.85

Tested by 1

testMethod · 0.68