mercurial/pure/parsers.py
changeset 47931 7033d1d5bd18
parent 47930 7c37d153c22d
child 47932 59eddbaa5bfb
equal deleted inserted replaced
47930:7c37d153c22d 47931:7033d1d5bd18
   284 
   284 
   285         This is only True is the file is currently tracked.
   285         This is only True is the file is currently tracked.
   286 
   286 
   287         Should only be set if a merge is in progress in the dirstate
   287         Should only be set if a merge is in progress in the dirstate
   288         """
   288         """
   289         return self.v1_state() == b'n' and self.v1_size() == FROM_P2
   289         return self._wc_tracked and self._clean_p2
   290 
   290 
   291     @property
   291     @property
   292     def from_p2_removed(self):
   292     def from_p2_removed(self):
   293         """True if the file has been removed, but was "from_p2" initially
   293         """True if the file has been removed, but was "from_p2" initially
   294 
   294