equal
deleted
inserted
replaced
1 # compression.py - Mercurial utility functions for compression |
1 # compression.py - Mercurial utility functions for compression |
2 # |
2 # |
3 # This software may be used and distributed according to the terms of the |
3 # This software may be used and distributed according to the terms of the |
4 # GNU General Public License version 2 or any later version. |
4 # GNU General Public License version 2 or any later version. |
5 |
5 |
|
6 from __future__ import annotations |
6 |
7 |
7 import bz2 |
8 import bz2 |
8 import collections |
9 import collections |
9 import zlib |
10 import zlib |
10 |
11 |