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

Function in_table_c21_c22

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

Source from the content-addressed store, hash-verified

225 return c in c22_specials
226
227def in_table_c21_c22(code):
228 return unicodedata.category(code) == "Cc" or \
229 ord(code) in c22_specials
230
231
232def in_table_c3(code):

Callers 1

testMethod · 0.85

Calls 2

ordFunction · 0.85
categoryMethod · 0.80

Tested by 1

testMethod · 0.68