Returns ``True`` if the stream has been closed.
(self)
| 660 | return bool(self._write_buffer) |
| 661 | |
| 662 | def closed(self) -> bool: |
| 663 | """Returns ``True`` if the stream has been closed.""" |
| 664 | return self._closed |
| 665 | |
| 666 | def set_nodelay(self, value: bool) -> None: |
| 667 | """Sets the no-delay flag for this stream. |
no outgoing calls
no test coverage detected