(output, value)
| 76 | return binary_file |
| 77 | |
| 78 | def write32u(output, value): |
| 79 | # The L format writes the bit pattern correctly whether signed |
| 80 | # or unsigned. |
| 81 | output.write(struct.pack("<L", value)) |
| 82 | |
| 83 | class _PaddedFile: |
| 84 | """Minimal read-only file object that prepends a string to the contents |
no test coverage detected
searching dependent graphs…