Lines Matching defs:ustr
1712 ustr: unicode
1715 Extends this array with data from the unicode string ustr.
1718 Use array.frombytes(ustr.encode(...)) to append Unicode data to an array of
1723 array_array_fromunicode_impl(arrayobject *self, PyObject *ustr)
1733 Py_ssize_t ustr_length = PyUnicode_AsWideChar(ustr, NULL, 0);
1744 ustr, ((wchar_t *)self->ob_item) + old_size, ustr_length);
1753 Extends this array with data from the unicode string ustr.
2713 wchar_t *ustr = PyUnicode_AsWideCharString(initial, &n);
2714 if (ustr == NULL) {
2723 self->ob_item = (char *)ustr;