mercurial/dirstate.py
branchstable
changeset 44227 7f5410dfc8a6
parent 44078 f2c350e7371e
child 44297 cf1f8660e568
equal deleted inserted replaced
44226:cb52e619c99e 44227:7f5410dfc8a6
  1847         @property
  1847         @property
  1848         def nonnormalset(self):
  1848         def nonnormalset(self):
  1849             nonnorm, otherparents = self._rustmap.nonnormalentries()
  1849             nonnorm, otherparents = self._rustmap.nonnormalentries()
  1850             return nonnorm
  1850             return nonnorm
  1851 
  1851 
  1852         @property
  1852         @propertycache
  1853         def otherparentset(self):
  1853         def otherparentset(self):
  1854             nonnorm, otherparents = self._rustmap.nonnormalentries()
  1854             nonnorm, otherparents = self._rustmap.nonnormalentries()
  1855             return otherparents
  1855             return otherparents
  1856 
  1856 
  1857         @propertycache
  1857         @propertycache