node.py
20 lines
| 450 B
| text/x-python
|
PythonLexer
/ mercurial / node.py
mpm@selenic.com
|
r1089 | """ | ||
node.py - basic nodeid manipulation for mercurial | ||||
Vadim Gelfer
|
r2859 | Copyright 2005, 2006 Matt Mackall <mpm@selenic.com> | ||
mpm@selenic.com
|
r1089 | |||
This software may be used and distributed according to the terms | ||||
of the GNU General Public License, incorporated herein by reference. | ||||
""" | ||||
Matt Mackall
|
r3877 | import binascii | ||
mpm@selenic.com
|
r1089 | |||
Thomas Arendsen Hein
|
r3578 | nullrev = -1 | ||
mpm@selenic.com
|
r1089 | nullid = "\0" * 20 | ||
Matt Mackall
|
r4995 | # This ugly style has a noticeable effect in manifest parsing | ||
hex = binascii.hexlify | ||||
bin = binascii.unhexlify | ||||
mpm@selenic.com
|
r1089 | |||
def short(node): | ||||
return hex(node[:6]) | ||||