Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dunicodectype.c160 int _PyUnicode_IsPrintable(Py_UCS4 ch) in _PyUnicode_IsPrintable() function
/third_party/python/Include/cpython/
Dunicodeobject.h39 #define Py_UNICODE_ISPRINTABLE(ch) _PyUnicode_IsPrintable(ch)
1149 PyAPI_FUNC(int) _PyUnicode_IsPrintable(
/third_party/python/Modules/_ctypes/
Dcallproc.c484 return c < 128 && _PyUnicode_IsPrintable(c) && c != '\\' && c != '\''; in is_literal_char()