True if the file is connected to a TTY device.
(self)
| 1801 | return self._fd |
| 1802 | |
| 1803 | def isatty(self): |
| 1804 | """True if the file is connected to a TTY device.""" |
| 1805 | self._checkClosed() |
| 1806 | return os.isatty(self._fd) |
| 1807 | |
| 1808 | @property |
| 1809 | def closefd(self): |
no test coverage detected