equal
deleted
inserted
replaced
21 # manifests. |
21 # manifests. |
22 newnodeid = '!' * 20 |
22 newnodeid = '!' * 20 |
23 addednodeid = ('0' * 15) + 'added' |
23 addednodeid = ('0' * 15) + 'added' |
24 modifiednodeid = ('0' * 12) + 'modified' |
24 modifiednodeid = ('0' * 12) + 'modified' |
25 |
25 |
26 wdirnodes = set((newnodeid, addednodeid, modifiednodeid)) |
26 wdirnodes = {newnodeid, addednodeid, modifiednodeid} |
27 |
27 |
28 # pseudo identifiers for working directory |
28 # pseudo identifiers for working directory |
29 # (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) |
30 wdirrev = 0x7fffffff |
30 wdirrev = 0x7fffffff |
31 wdirid = b"\xff" * 20 |
31 wdirid = b"\xff" * 20 |