comparison mercurial/revlog.py @ 14393:bdf44e63a94c

revlog: stop exporting node.short
author Matt Mackall <mpm@selenic.com>
date Sat, 21 May 2011 15:01:28 -0500
parents ec2aae8b375d
children 1ffeeb91c55d
comparison
equal deleted inserted replaced
14392:bb5cbc16349e 14393:bdf44e63a94c
10 This provides efficient delta storage with O(1) retrieve and append 10 This provides efficient delta storage with O(1) retrieve and append
11 and O(changes) merge between branches. 11 and O(changes) merge between branches.
12 """ 12 """
13 13
14 # import stuff from node for others to import from revlog 14 # import stuff from node for others to import from revlog
15 from node import bin, hex, nullid, nullrev, short #@UnusedImport 15 from node import bin, hex, nullid, nullrev
16 from i18n import _ 16 from i18n import _
17 import ancestor, mdiff, parsers, error, util, dagutil 17 import ancestor, mdiff, parsers, error, util, dagutil
18 import struct, zlib, errno 18 import struct, zlib, errno
19 19
20 _pack = struct.pack 20 _pack = struct.pack