File size: 459 Bytes
d3de7c1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | from ._ppmd import (
PPMD8_RESTORE_METHOD_CUT_OFF,
PPMD8_RESTORE_METHOD_RESTART,
Ppmd7Decoder,
Ppmd7Encoder,
Ppmd8Decoder,
Ppmd8Encoder,
)
__all__ = (
"PPMD8_RESTORE_METHOD_CUT_OFF",
"PPMD8_RESTORE_METHOD_RESTART",
"Ppmd7Encoder",
"Ppmd7Decoder",
"Ppmd8Encoder",
"Ppmd8Decoder",
"PpmdError",
)
class PpmdError(Exception):
"Call to the underlying PPMd library failed."
pass
|