mercurial/utils/compression.py
changeset 51859 f4733654f144
parent 51699 ca7bde5dbafb
child 52643 5cc8deb96b48
equal deleted inserted replaced
51858:607e94e01851 51859:f4733654f144
     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