| 450 | |
| 451 | |
| 452 | class InvalidFileException (ValueError): |
| 453 | def __init__(self, message="Invalid file"): |
| 454 | ValueError.__init__(self, message) |
| 455 | |
| 456 | _BINARY_FORMAT = frozendict({1: 'B', 2: 'H', 4: 'L', 8: 'Q'}) |
| 457 |
no outgoing calls
no test coverage detected
searching dependent graphs…