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