Searched refs:_PyUnicode_IsPrintable (Results 1 – 3 of 3) sorted by relevance
160 int _PyUnicode_IsPrintable(Py_UCS4 ch) in _PyUnicode_IsPrintable() function
39 #define Py_UNICODE_ISPRINTABLE(ch) _PyUnicode_IsPrintable(ch)1162 PyAPI_FUNC(int) _PyUnicode_IsPrintable(
486 return c < 128 && _PyUnicode_IsPrintable(c) && c != '\\' && c != '\''; in is_literal_char()