##// END OF EJS Templates
node: add 'nullhex', hex-encoded nullid...
Siddharth Agarwal -
r26980:18f50b8c default
parent child Browse files
Show More
@@ -9,17 +9,18 b' from __future__ import absolute_import'
9 9
10 10 import binascii
11 11
12 # This ugly style has a noticeable effect in manifest parsing
13 hex = binascii.hexlify
14 bin = binascii.unhexlify
15
12 16 nullrev = -1
13 17 nullid = "\0" * 20
18 nullhex = hex(nullid)
14 19
15 20 # pseudo identifiers for working directory
16 21 # (they are experimental, so don't add too many dependencies on them)
17 22 wdirrev = 0x7fffffff
18 23 wdirid = "\xff" * 20
19 24
20 # This ugly style has a noticeable effect in manifest parsing
21 hex = binascii.hexlify
22 bin = binascii.unhexlify
23
24 25 def short(node):
25 26 return hex(node[:6])
General Comments 0
You need to be logged in to leave comments. Login now