Lines Matching defs:iomod
2352 PyObject *iomod = NULL, *wrapper;
2356 if (!(iomod = PyImport_ImportModule("io"))) {
2364 if (!(wrapper = PyObject_GetAttrString(iomod, "open"))) {
2381 Py_XDECREF(iomod);
2390 PyObject *iomod = NULL;
2410 if (!(iomod = PyImport_ImportModule("io"))) {
2420 std = create_stdio(config, iomod, fd, 0, "<stdin>",
2431 std = create_stdio(config, iomod, fd, 1, "<stdout>",
2443 std = create_stdio(config, iomod, fd, 1, "<stderr>",
2480 Py_XDECREF(iomod);