comparison mercurial/node.py @ 1543:93a9298367e0

Merge with Thomas Waldmann
author Thomas Arendsen Hein <thomas@intevation.de>
date Mon, 14 Nov 2005 15:09:34 +0100
parents bf4e7ef08741
children fe1689273f84
comparison
equal deleted inserted replaced
1539:5e47e42b14ba 1543:93a9298367e0
5 5
6 This software may be used and distributed according to the terms 6 This software may be used and distributed according to the terms
7 of the GNU General Public License, incorporated herein by reference. 7 of the GNU General Public License, incorporated herein by reference.
8 """ 8 """
9 9
10 import sha, binascii 10 import binascii
11 11
12 nullid = "\0" * 20 12 nullid = "\0" * 20
13 13
14 def hex(node): 14 def hex(node):
15 return binascii.hexlify(node) 15 return binascii.hexlify(node)