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

/external/python/cpython3/Python/
H A Dpylifecycle.c1183 PyObject *iomod = NULL, *wrapper; local
1207 if (!(iomod = PyImport_ImportModule("io"))) {
1210 if (!(wrapper = PyObject_GetAttrString(iomod, "OpenWrapper"))) {
1260 std = create_stdio(iomod, fd, 0, "<stdin>", encoding, errors);
1269 std = create_stdio(iomod, fd, 1, "<stdout>", encoding, errors);
1279 std = create_stdio(iomod, fd, 1, "<stderr>", encoding, "backslashreplace");
1324 Py_XDECREF(iomod);

Completed in 122 milliseconds