apparently not considered a terminal, and so isatty(3) returns false. So we
skip the test for ttyness of the master side and just check the slave side,
which should really be a terminal.
# " An optional feature could not be imported " ... ?
raise TestSkipped, "Pseudo-terminals (seemingly) not functional."
-if not os.isatty(master_fd):
- raise TestFailed, "master_fd is not a tty"
if not os.isatty(slave_fd):
raise TestFailed, "slave_fd is not a tty"