(self, size)
| 1803 | |
| 1804 | @support.bigmemtest(_2G, memuse=2.125) |
| 1805 | def test_fromlist(self, size): |
| 1806 | example = self.example(size) |
| 1807 | example.fromlist([12, 13, 14, 15]) |
| 1808 | self.assertEqual(len(example), size+8) |
| 1809 | self.assertEqual(list(example[-8:]), [8, 9, 10, 11, 12, 13, 14, 15]) |
| 1810 | |
| 1811 | @support.bigmemtest(_2G, memuse=2.125) |
| 1812 | def test_index(self, size): |
nothing calls this directly
no test coverage detected