(self)
| 265 | return typecodes[(typecodes.index(self.typecode)+1) % len(typecodes)] |
| 266 | |
| 267 | def test_constructor(self): |
| 268 | a = array.array(self.typecode) |
| 269 | self.assertEqual(a.typecode, self.typecode) |
| 270 | self.assertGreaterEqual(a.itemsize, self.minitemsize) |
| 271 | self.assertRaises(TypeError, array.array, self.typecode, None) |
| 272 | |
| 273 | def test_len(self): |
| 274 | a = array.array(self.typecode) |
nothing calls this directly
no test coverage detected