(self)
| 989 | self.assertEqual("<StreamReader 4 bytes>", repr(stream)) |
| 990 | |
| 991 | def test___repr__exception(self): |
| 992 | stream = asyncio.StreamReader(loop=self.loop) |
| 993 | exc = RuntimeError() |
| 994 | stream.set_exception(exc) |
| 995 | self.assertEqual("<StreamReader exception=RuntimeError()>", |
| 996 | repr(stream)) |
| 997 | |
| 998 | def test___repr__waiter(self): |
| 999 | stream = asyncio.StreamReader(loop=self.loop) |
nothing calls this directly
no test coverage detected