Home
last modified time | relevance | path

Searched refs:_PyUnicode_IsPrintable (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Objects/
Dunicodectype.c160 int _PyUnicode_IsPrintable(Py_UCS4 ch) in _PyUnicode_IsPrintable() function
/external/python/cpython3/Include/
Dunicodeobject.h140 #define Py_UNICODE_ISPRINTABLE(ch) _PyUnicode_IsPrintable(ch)
2254 PyAPI_FUNC(int) _PyUnicode_IsPrintable(
/external/python/cpython3/Modules/_ctypes/
Dcallproc.c458 return c < 128 && _PyUnicode_IsPrintable(c) && c != '\\' && c != '\''; in is_literal_char()