Home
last modified time | relevance | path

Searched refs:is_punct (Results 1 – 2 of 2) sorted by relevance

/glibc-2.36/localedata/unicode-gen/
Dunicode_utils.py379 def is_punct(code_point): function
462 if (is_alpha(code_point) and is_punct(code_point)):
486 if (is_cntrl(code_point) and is_punct(code_point)):
501 if (is_punct(code_point) and is_digit(code_point)):
504 if (is_punct(code_point) and is_xdigit(code_point)):
507 if (is_punct(code_point) and code_point == 0x0020):
Dgen_unicode_ctype.py233 output_charclass(i18n_file, 'punct', unicode_utils.is_punct)