(self)
| 979 | self.assertEqual("<StreamReader limit=123>", repr(stream)) |
| 980 | |
| 981 | def test___repr__eof(self): |
| 982 | stream = asyncio.StreamReader(loop=self.loop) |
| 983 | stream.feed_eof() |
| 984 | self.assertEqual("<StreamReader eof>", repr(stream)) |
| 985 | |
| 986 | def test___repr__data(self): |
| 987 | stream = asyncio.StreamReader(loop=self.loop) |
nothing calls this directly
no test coverage detected