(self)
| 510 | self.assertEqual(b'', data) |
| 511 | |
| 512 | def test_read_nowait_exception(self): |
| 513 | stream = self._make_one() |
| 514 | stream.feed_data(b'line\n') |
| 515 | stream.set_exception(ValueError()) |
| 516 | |
| 517 | self.assertRaises(ValueError, stream.read_nowait) |
| 518 | |
| 519 | def test_read_nowait_waiter(self): |
| 520 | stream = self._make_one() |
nothing calls this directly
no test coverage detected