Searched refs:ConIO (Results 1 - 1 of 1) sorted by relevance

/external/python/cpython3/Lib/test/
H A Dtest_winconsoleio.py16 ConIO = io._WindowsConsoleIO variable
20 self.assertTrue(issubclass(ConIO, io.RawIOBase))
21 self.assertFalse(issubclass(ConIO, io.BufferedIOBase))
22 self.assertFalse(issubclass(ConIO, io.TextIOBase))
26 "negative file descriptor", ConIO, -1)
33 "Cannot open (console|non-console file)", ConIO, fd)
38 f = ConIO(0)
50 f = ConIO(1, 'w')
62 f = ConIO(2, 'w')
74 self.assertRaises(ValueError, ConIO, sy
[all...]

Completed in 118 milliseconds