comparison mercurial/revlog.py @ 1099:0cb9c72b6c03

Minor import fixups
author mpm@selenic.com
date Sat, 27 Aug 2005 15:19:36 -0700
parents d62130f99a73
children 59bfbdbc38f6
comparison
equal deleted inserted replaced
1098:50a0a36dd48a 1099:0cb9c72b6c03
9 This software may be used and distributed according to the terms 9 This software may be used and distributed according to the terms
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 import zlib, struct, sha, binascii, heapq 13 import zlib, struct, sha, binascii, heapq
14 from mercurial import mdiff 14 import mdiff
15 from node import * 15 from node import *
16 16
17 def hash(text, p1, p2): 17 def hash(text, p1, p2):
18 """generate a hash from the given text and its parent hashes 18 """generate a hash from the given text and its parent hashes
19 19