node.py
18 lines
| 462 B
| text/x-python
|
PythonLexer
/ mercurial / node.py
Martin Geisler
|
r8226 | # node.py - basic nodeid manipulation for mercurial | ||
# | ||||
# Copyright 2005, 2006 Matt Mackall <mpm@selenic.com> | ||||
# | ||||
# This software may be used and distributed according to the terms of the | ||||
# GNU General Public License version 2, incorporated herein by reference. | ||||
mpm@selenic.com
|
r1089 | |||
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]) | ||||