Return a bool indicating whether this is an 'interactive' stream. Return False if it can't be determined.
(self)
| 528 | self._unsupported("fileno") |
| 529 | |
| 530 | def isatty(self): |
| 531 | """Return a bool indicating whether this is an 'interactive' stream. |
| 532 | |
| 533 | Return False if it can't be determined. |
| 534 | """ |
| 535 | self._checkClosed() |
| 536 | return False |
| 537 | |
| 538 | ### Readline[s] and writelines ### |
| 539 |
no test coverage detected