Home
last modified time | relevance | path

Searched refs:unicode_empty (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Objects/stringlib/
Dunicodedefs.h13 #define STRINGLIB_EMPTY unicode_empty
/external/python/cpython2/Objects/
Dunicodeobject.c101 static PyUnicodeObject *unicode_empty = NULL; variable
105 if (unicode_empty != NULL) \
106 Py_INCREF(unicode_empty); \
108 unicode_empty = _PyUnicode_New(0); \
109 if (unicode_empty != NULL) \
110 Py_INCREF(unicode_empty); \
112 return (PyObject *)unicode_empty; \
273 if (unicode == unicode_empty || in unicode_resize()
322 if (length == 0 && unicode_empty != NULL) { in _PyUnicode_New()
323 Py_INCREF(unicode_empty); in _PyUnicode_New()
[all …]