(self, typecode, initializer)
| 525 | class TestMessageSimpleArray(unittest.TestCase, BaseTestMessageSimpleArray): |
| 526 | # |
| 527 | def array(self, typecode, initializer): |
| 528 | return array.array(typecode, initializer) |
| 529 | |
| 530 | |
| 531 | @unittest.skipIf(numpy is None, "numpy") |