(self)
| 1773 | self.assertEqual(ls[-8:], list(example[-8:])) |
| 1774 | |
| 1775 | def test_gh_128961(self): |
| 1776 | a = array.array('i') |
| 1777 | it = iter(a) |
| 1778 | list(it) |
| 1779 | it.__setstate__(0) |
| 1780 | self.assertRaises(StopIteration, next, it) |
| 1781 | |
| 1782 | # Tests for NULL pointer dereference in array.__setitem__ |
| 1783 | # when the index conversion mutates the array. |
nothing calls this directly
no test coverage detected