equal
deleted
inserted
replaced
735 """ |
735 """ |
736 |
736 |
737 class ifilestorage(ifileindex, ifiledata, ifilemutation): |
737 class ifilestorage(ifileindex, ifiledata, ifilemutation): |
738 """Complete storage interface for a single tracked file.""" |
738 """Complete storage interface for a single tracked file.""" |
739 |
739 |
740 version = interfaceutil.Attribute( |
|
741 """Version number of storage. |
|
742 |
|
743 TODO this feels revlog centric and could likely be removed. |
|
744 """) |
|
745 |
|
746 _generaldelta = interfaceutil.Attribute( |
740 _generaldelta = interfaceutil.Attribute( |
747 """Whether deltas can be against any parent revision. |
741 """Whether deltas can be against any parent revision. |
748 |
742 |
749 TODO this is used by changegroup code and it could probably be |
743 TODO this is used by changegroup code and it could probably be |
750 folded into another API. |
744 folded into another API. |