equal
deleted
inserted
replaced
18 nullhex = hex(nullid) |
18 nullhex = hex(nullid) |
19 |
19 |
20 # Phony node value to stand-in for new files in some uses of |
20 # Phony node value to stand-in for new files in some uses of |
21 # manifests. |
21 # manifests. |
22 newnodeid = '!' * 20 |
22 newnodeid = '!' * 20 |
|
23 addednodeid = ('0' * 15) + 'added' |
|
24 modifiednodeid = ('0' * 12) + 'modified' |
23 |
25 |
24 wdirnodes = set((newnodeid,)) |
26 wdirnodes = set((newnodeid, addednodeid, modifiednodeid)) |
25 |
27 |
26 # pseudo identifiers for working directory |
28 # pseudo identifiers for working directory |
27 # (they are experimental, so don't add too many dependencies on them) |
29 # (they are experimental, so don't add too many dependencies on them) |
28 wdirrev = 0x7fffffff |
30 wdirrev = 0x7fffffff |
29 wdirid = b"\xff" * 20 |
31 wdirid = b"\xff" * 20 |