mercurial/context.py
changeset 21718 bc773e9505e3
parent 21710 14514dd542aa
child 21722 ee29b0bb1619
equal deleted inserted replaced
21717:2a095d3442e0 21718:bc773e9505e3
  1373         We use this poststatus hook to filter out symlinks that might have
  1373         We use this poststatus hook to filter out symlinks that might have
  1374         accidentally ended up with the entire contents of the file they are
  1374         accidentally ended up with the entire contents of the file they are
  1375         susposed to be linking to.
  1375         susposed to be linking to.
  1376         """
  1376         """
  1377         s[0] = self._filtersuspectsymlink(s[0])
  1377         s[0] = self._filtersuspectsymlink(s[0])
  1378         self._status = s
  1378         self._status = s[:]
  1379         return s
  1379         return s
  1380 
  1380 
  1381     def _dirstatestatus(self, match=None, ignored=False, clean=False,
  1381     def _dirstatestatus(self, match=None, ignored=False, clean=False,
  1382                         unknown=False):
  1382                         unknown=False):
  1383         '''Gets the status from the dirstate -- internal use only.'''
  1383         '''Gets the status from the dirstate -- internal use only.'''