(self)
| 1176 | |
| 1177 | @support.cpython_only |
| 1178 | def test_sizeof_without_buffer(self): |
| 1179 | a = array.array(self.typecode) |
| 1180 | basesize = support.calcvobjsize('Pn2Pi') |
| 1181 | support.check_sizeof(self, a, basesize) |
| 1182 | |
| 1183 | @unittest.expectedFailure # TODO: RUSTPYTHON; Add support for 'w' |
| 1184 | def test_initialize_with_unicode(self): |
nothing calls this directly
no test coverage detected