Mercurial > hg
annotate mercurial/node.py @ 4104:0934fef871f3
add test for diffing identical binary files
author | Alexis S. L. Carvalho <alexis@cecm.usp.br> |
---|---|
date | Sat, 17 Feb 2007 09:54:58 -0200 |
parents | 3b4e00cba57a |
children | abaee83ce0a6 |
rev | line source |
---|---|
1089 | 1 """ |
2 node.py - basic nodeid manipulation for mercurial | |
3 | |
2859 | 4 Copyright 2005, 2006 Matt Mackall <mpm@selenic.com> |
1089 | 5 |
6 This software may be used and distributed according to the terms | |
7 of the GNU General Public License, incorporated herein by reference. | |
8 """ | |
9 | |
2470
fe1689273f84
use demandload more.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
1541
diff
changeset
|
10 from demandload import demandload |
fe1689273f84
use demandload more.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
1541
diff
changeset
|
11 demandload(globals(), "binascii") |
1089 | 12 |
3578
3b4e00cba57a
Define and use nullrev (revision of nullid) instead of -1.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
2859
diff
changeset
|
13 nullrev = -1 |
1089 | 14 nullid = "\0" * 20 |
15 | |
16 def hex(node): | |
17 return binascii.hexlify(node) | |
18 | |
19 def bin(node): | |
20 return binascii.unhexlify(node) | |
21 | |
22 def short(node): | |
23 return hex(node[:6]) |