Returns ``True`` if the stream has been closed.
(self)
| 653 | return bool(self._write_buffer) |
| 654 | |
| 655 | def closed(self) -> bool: |
| 656 | """Returns ``True`` if the stream has been closed.""" |
| 657 | return self._closed |
| 658 | |
| 659 | def set_nodelay(self, value: bool) -> None: |
| 660 | """Sets the no-delay flag for this stream. |
no outgoing calls
no test coverage detected