You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
252a253,255 |
|
> class NoZlib: |
|
> def decompress(self, data): |
|
> return data |
|
253a257,259 |
|
> def compress(self, data, lvl): |
|
> return data |
|
> |
|
316c322 |
|
< zlib = DummyZlib() |
|
--- |
|
> zlib = NoZlib()
|
|
|