(self)
| 491 | |
| 492 | @unittest.expectedFailure # TODO: RUSTPYTHON; BufferError: non-contiguous buffer is not a bytes-like object |
| 493 | def test_pack_into_fn(self): |
| 494 | pack_into = lambda *args: struct.pack_into('21s', *args) |
| 495 | self._test_pack_into(pack_into) |
| 496 | |
| 497 | def test_unpack_with_buffer(self): |
| 498 | # SF bug 1563759: struct.unpack doesn't support buffer protocol objects |
nothing calls this directly
no test coverage detected