Return a bool indicating whether this is an 'interactive' stream. Return False if it can't be determined.
(self)
| 497 | self._unsupported("fileno") |
| 498 | |
| 499 | def isatty(self): |
| 500 | """Return a bool indicating whether this is an 'interactive' stream. |
| 501 | |
| 502 | Return False if it can't be determined. |
| 503 | """ |
| 504 | self._checkClosed() |
| 505 | return False |
| 506 | |
| 507 | ### Readline[s] and writelines ### |
| 508 |
no test coverage detected