Searched refs:ConIO (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_winconsoleio.py | 16 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) 36 f = ConIO(0) 48 f = ConIO(1, 'w') 60 f = ConIO(2, 'w') 72 self.assertRaises(ValueError, ConIO, sys.executable) [all …]
|