equal
deleted
inserted
replaced
1553 for f in d: |
1553 for f in d: |
1554 if d[f] != b'r': |
1554 if d[f] != b'r': |
1555 yield f |
1555 yield f |
1556 |
1556 |
1557 def __contains__(self, key): |
1557 def __contains__(self, key): |
1558 return self._repo.dirstate[key] not in b"?r" |
1558 return self._repo.dirstate.get_entry(key).tracked |
1559 |
1559 |
1560 def hex(self): |
1560 def hex(self): |
1561 return self._repo.nodeconstants.wdirhex |
1561 return self._repo.nodeconstants.wdirhex |
1562 |
1562 |
1563 @propertycache |
1563 @propertycache |