mercurial/manifest.py
changeset 24665 5326820a2952
parent 24664 ea4a7c8909ae
child 24666 3092885b5b32
equal deleted inserted replaced
24664:ea4a7c8909ae 24665:5326820a2952
   204         The algorithm assumes that files is much smaller than self.'''
   204         The algorithm assumes that files is much smaller than self.'''
   205         ret = manifestdict()
   205         ret = manifestdict()
   206         lm = self._lm
   206         lm = self._lm
   207         for fn in files:
   207         for fn in files:
   208             if fn in lm:
   208             if fn in lm:
   209                 ret._lm[fn] = self._lm[fn]
   209                 ret._lm[fn] = lm[fn]
   210         return ret
   210         return ret
   211 
   211 
   212     def filesnotin(self, m2):
   212     def filesnotin(self, m2):
   213         '''Set of files in this manifest that are not in the other'''
   213         '''Set of files in this manifest that are not in the other'''
   214         files = set(self)
   214         files = set(self)