Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/lzallright/__init__.py: 100%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1"""lzalright LZO compression library.
3A Python 3.8+ binding for [LZ👌](https://github.com/jackoalan/lzokay) library which is
5> A minimal, C++14 implementation of the
6> [LZO compression format](http://www.oberhumer.com/opensource/lzo/).
7"""
9from lzallright._lzallright import EResult, InputNotConsumed, LZOCompressor, LZOError
11__all__ = [
12 "EResult",
13 "InputNotConsumed",
14 "LZOCompressor",
15 "LZOError",
16]