(self, typecode, initializer)
| 1319 | class TestMessageVectorArray(unittest.TestCase, BaseTestMessageVectorArray): |
| 1320 | # |
| 1321 | def array(self, typecode, initializer): |
| 1322 | return array.array(typecode, initializer) |
| 1323 | |
| 1324 | |
| 1325 | @unittest.skipIf(numpy is None, "numpy") |