Searched defs:PyUnicode_KIND (Results 1 - 1 of 1) sorted by relevance

/external/python/cpython3/Include/
H A Dunicodeobject.h440 /* Return values of the PyUnicode_KIND() macro: */
448 No checks are performed, use PyUnicode_KIND() before to ensure
456 #define PyUnicode_KIND(op) \ macro
516 calls PyUnicode_KIND() and might call it twice. For single reads, use
523 (PyUnicode_KIND((unicode)) == PyUnicode_1BYTE_KIND ? \
525 (PyUnicode_KIND((unicode)) == PyUnicode_2BYTE_KIND ? \
561 (PyUnicode_KIND(op) == PyUnicode_1BYTE_KIND ? \
563 (PyUnicode_KIND(op) == PyUnicode_2BYTE_KIND ? \

Completed in 60 milliseconds