Home | History | Annotate | Download | only in test

Lines Matching refs:wio

2873             wio = self.io.open(w, **fdopen_kwargs)
2883 wio.write, item * (support.PIPE_MAX_SIZE // len(item) + 1))
2893 # before closing wio, wio would try to flush its internal
2896 wio.close()
2913 wio.write(data)
2917 wio = self.io.open(w, **fdopen_kwargs)
2920 # Either the reentrant call to wio.write() fails with RuntimeError,
2925 wio.write(data)
2926 wio.flush()
2933 wio.close()
3003 wio = self.io.open(w, **fdopen_kwargs)
3010 self.assertEqual(N, wio.write(item * N))
3011 wio.flush()
3020 # before closing wio, wio would try to flush its internal
3023 wio.close()