(self)
| 937 | self.assertEqual("<StreamReader limit=123>", repr(stream)) |
| 938 | |
| 939 | def test___repr__eof(self): |
| 940 | stream = asyncio.StreamReader(loop=self.loop) |
| 941 | stream.feed_eof() |
| 942 | self.assertEqual("<StreamReader eof>", repr(stream)) |
| 943 | |
| 944 | def test___repr__data(self): |
| 945 | stream = asyncio.StreamReader(loop=self.loop) |
nothing calls this directly
no test coverage detected