Lines Matching defs:text
239 * The legacy C locale assumes ASCII as the default text encoding, which
2221 PyObject *buf = NULL, *stream = NULL, *text = NULL, *raw = NULL, *res;
2267 text = PyUnicode_FromString(name);
2268 if (text == NULL || PyObject_SetAttr(raw, &_Py_ID(name), text) < 0)
2287 Py_CLEAR(text);
2326 text = PyUnicode_FromString(mode);
2327 if (!text || PyObject_SetAttr(stream, &_Py_ID(mode), text) < 0)
2329 Py_CLEAR(text);
2335 Py_XDECREF(text);