mercurial/mergestate.py
changeset 45525 590a840fa367
parent 45524 6877b0ee5f9d
child 45583 9f14bb4d59ea
equal deleted inserted replaced
45524:6877b0ee5f9d 45525:590a840fa367
   120 # the file is absent on the ancestor and remote side of the merge
   120 # the file is absent on the ancestor and remote side of the merge
   121 # hence this file is new and we should keep it
   121 # hence this file is new and we should keep it
   122 ACTION_KEEP_NEW = b'kn'
   122 ACTION_KEEP_NEW = b'kn'
   123 ACTION_EXEC = b'e'
   123 ACTION_EXEC = b'e'
   124 ACTION_CREATED_MERGE = b'cm'
   124 ACTION_CREATED_MERGE = b'cm'
       
   125 
       
   126 # actions which are no op
       
   127 NO_OP_ACTIONS = (
       
   128     ACTION_KEEP,
       
   129     ACTION_KEEP_ABSENT,
       
   130     ACTION_KEEP_NEW,
       
   131 )
   125 
   132 
   126 
   133 
   127 class _mergestate_base(object):
   134 class _mergestate_base(object):
   128     '''track 3-way merge state of individual files
   135     '''track 3-way merge state of individual files
   129 
   136