mercurial/repository.py
changeset 39867 4b816a83e17e
parent 39866 e23c03dc5cf9
child 39869 14e500b58263
equal deleted inserted replaced
39866:e23c03dc5cf9 39867:4b816a83e17e
   739         """
   739         """
   740 
   740 
   741 class ifilestorage(ifileindex, ifiledata, ifilemutation):
   741 class ifilestorage(ifileindex, ifiledata, ifilemutation):
   742     """Complete storage interface for a single tracked file."""
   742     """Complete storage interface for a single tracked file."""
   743 
   743 
   744     _generaldelta = interfaceutil.Attribute(
       
   745         """Whether deltas can be against any parent revision.
       
   746 
       
   747         TODO this is used by changegroup code and it could probably be
       
   748         folded into another API.
       
   749         """)
       
   750 
       
   751     def files():
   744     def files():
   752         """Obtain paths that are backing storage for this file.
   745         """Obtain paths that are backing storage for this file.
   753 
   746 
   754         TODO this is used heavily by verify code and there should probably
   747         TODO this is used heavily by verify code and there should probably
   755         be a better API for that.
   748         be a better API for that.