equal
deleted
inserted
replaced
1332 yield f |
1332 yield f |
1333 |
1333 |
1334 def __contains__(self, key): |
1334 def __contains__(self, key): |
1335 return self._repo.dirstate[key] not in "?r" |
1335 return self._repo.dirstate[key] not in "?r" |
1336 |
1336 |
|
1337 def hex(self): |
|
1338 return "ff" * 20 |
|
1339 |
1337 @propertycache |
1340 @propertycache |
1338 def _parents(self): |
1341 def _parents(self): |
1339 p = self._repo.dirstate.parents() |
1342 p = self._repo.dirstate.parents() |
1340 if p[1] == nullid: |
1343 if p[1] == nullid: |
1341 p = p[:-1] |
1344 p = p[:-1] |