##// END OF EJS Templates
node: define experimental identifiers for working directory...
Yuya Nishihara -
r25737:1a5211f2 default
parent child Browse files
Show More
@@ -10,6 +10,11 b' import binascii'
10 nullrev = -1
10 nullrev = -1
11 nullid = "\0" * 20
11 nullid = "\0" * 20
12
12
13 # pseudo identifiers for working directory
14 # (they are experimental, so don't add too many dependencies on them)
15 wdirrev = 0x7fffffff
16 wdirid = "\xff" * 20
17
13 # This ugly style has a noticeable effect in manifest parsing
18 # This ugly style has a noticeable effect in manifest parsing
14 hex = binascii.hexlify
19 hex = binascii.hexlify
15 bin = binascii.unhexlify
20 bin = binascii.unhexlify
General Comments 0
You need to be logged in to leave comments. Login now