mercurial/revlog.py
changeset 6212 e75aab656f46
parent 6211 f89fd07fc51d
child 6228 c0c4c7b1e8d3
equal deleted inserted replaced
6211:f89fd07fc51d 6212:e75aab656f46
    10 of the GNU General Public License, incorporated herein by reference.
    10 of the GNU General Public License, incorporated herein by reference.
    11 """
    11 """
    12 
    12 
    13 from node import bin, hex, nullid, nullrev, short
    13 from node import bin, hex, nullid, nullrev, short
    14 from i18n import _
    14 from i18n import _
    15 import binascii, changegroup, errno, ancestor, mdiff, os
    15 import changegroup, errno, ancestor, mdiff
    16 import sha, struct, util, zlib
    16 import sha, struct, util, zlib
    17 
    17 
    18 _pack = struct.pack
    18 _pack = struct.pack
    19 _unpack = struct.unpack
    19 _unpack = struct.unpack
    20 _compress = zlib.compress
    20 _compress = zlib.compress