mercurial/context.py
changeset 48093 5437a0254590
parent 47745 06d57a91441e
child 48094 3fe500d15e7c
equal deleted inserted replaced
48092:0dc9ced02a3b 48093:5437a0254590
  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