Returns ``True`` if we are currently reading from the stream.
(self)
| 652 | self._write_buffer = None # type: ignore |
| 653 | |
| 654 | def reading(self) -> bool: |
| 655 | """Returns ``True`` if we are currently reading from the stream.""" |
| 656 | return self._read_future is not None |
| 657 | |
| 658 | def writing(self) -> bool: |
| 659 | """Returns ``True`` if we are currently writing to the stream.""" |
no outgoing calls
no test coverage detected