Lines Matching refs:str
156 PyObject *str = PyBytes_FromStringAndSize(NULL, len);
157 if (!str) {
161 char *s = PyBytes_AS_STRING(str);
173 PyObject *uni = PyUnicode_DecodeUTF8(PyBytes_AS_STRING(str), PyBytes_GET_SIZE(str), NULL);
174 Py_DECREF(str);
213 PyObject *str = PyUnicode_InternFromString("*");
214 if (!str) {
217 if (_PyArena_AddPyObject(p->arena, str) < 0) {
218 Py_DECREF(str);
221 return _PyAST_alias(str, NULL, lineno, col_offset, end_lineno, end_col_offset, arena);