Lines Matching defs:io_module
881 auto io_module = PythonModule::Import("io");
882 if (!io_module) {
883 llvm::consumeError(io_module.takeError());
886 auto iobase = io_module.get().Get("IOBase");
1347 auto io_module = PythonModule::Import("io");
1348 if (!io_module)
1349 return io_module.takeError();
1350 auto textIOBase = io_module.get().Get("TextIOBase");
1353 auto rawIOBase = io_module.get().Get("RawIOBase");
1356 auto bufferedIOBase = io_module.get().Get("BufferedIOBase");