comparison mercurial/node.py @ 3887:79e5a6e7c451

Merge with main
author Brendan Cully <brendan@kublai.com>
date Thu, 14 Dec 2006 13:49:33 -0800
parents abaee83ce0a6
children e45fc5d03798
comparison
equal deleted inserted replaced
3884:d83b125b7d7e 3887:79e5a6e7c451
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 from demandload import demandload 10 import binascii
11 demandload(globals(), "binascii")
12 11
13 nullrev = -1 12 nullrev = -1
14 nullid = "\0" * 20 13 nullid = "\0" * 20
15 14
16 def hex(node): 15 def hex(node):