Returns ``True`` if we are currently reading from the stream.
(self)
| 645 | self._write_buffer = None # type: ignore |
| 646 | |
| 647 | def reading(self) -> bool: |
| 648 | """Returns ``True`` if we are currently reading from the stream.""" |
| 649 | return self._read_future is not None |
| 650 | |
| 651 | def writing(self) -> bool: |
| 652 | """Returns ``True`` if we are currently writing to the stream.""" |
no outgoing calls
no test coverage detected