(self)
| 1038 | self.assertEqual(list(b), []) |
| 1039 | |
| 1040 | def test_sinkstate_sequence(self): |
| 1041 | # This used to fail |
| 1042 | a = SequenceClass(5) |
| 1043 | b = iter(a) |
| 1044 | self.assertEqual(list(b), list(range(5))) |
| 1045 | a.n = 10 |
| 1046 | self.assertEqual(list(b), []) |
| 1047 | |
| 1048 | def test_sinkstate_callable(self): |
| 1049 | # This used to fail |
nothing calls this directly
no test coverage detected