Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-04-28 | extend functionality of DecompressedStream | Helmut Grohne | |
It now supports: * tell() * seek(absolute_position), forward only * close() * closed This is sufficient for putting it as a fileobj into tarfile.TarFile. By doing so we can decouple decompression from tar processing, which eases papering over the Python 2.x vs Python 3.x differences. | |||
2015-04-16 | element access on bytes yields int in py3k | Helmut Grohne | |
2015-04-16 | zlib.crc32 behaves inconsistently on py2 vs py3 | Helmut Grohne | |
zlib.crc32 returns a int32_t on py2 and a uint32_t on py3. | |||
2015-04-16 | distinguish bytes from unicode for py3k | Helmut Grohne | |
2014-02-19 | GzipDecompressor: don't treat checksum as garbage trailer | Helmut Grohne | |
2013-02-21 | move compression functions to module dedup.compression | Helmut Grohne | |