The struct packing format used by all currently stored items.
(self)
| 492 | |
| 493 | @property |
| 494 | def format(self): |
| 495 | "The struct packing format used by all currently stored items." |
| 496 | return "".join( |
| 497 | self._get_packing_format(i) for i in range(self._list_len) |
| 498 | ) |
| 499 | |
| 500 | @property |
| 501 | def _format_size_metainfo(self): |
no test coverage detected