(output, value)
| 68 | return binary_file |
| 69 | |
| 70 | def write32u(output, value): |
| 71 | # The L format writes the bit pattern correctly whether signed |
| 72 | # or unsigned. |
| 73 | output.write(struct.pack("<L", value)) |
| 74 | |
| 75 | class _PaddedFile: |
| 76 | """Minimal read-only file object that prepends a string to the contents |
no test coverage detected