comparison mercurial/revlog.py @ 42813:268662aac075

interfaces: create a new folder for interfaces and move repository.py in it I was trying to understand current interfaces and write new ones and I realized we need to improve how current interfaces are organised. This creates a dedicated folder for defining interfaces and move `repository.py` which defines all the current interfaces inside it. Differential Revision: https://phab.mercurial-scm.org/D6741
author Pulkit Goyal <pulkit@yandex-team.ru>
date Sun, 18 Aug 2019 00:45:33 +0300
parents e91411fcc697
children 2c4f656c8e9f
comparison
equal deleted inserted replaced
42807:383fdfa6bba9 42813:268662aac075
63 dagop, 63 dagop,
64 error, 64 error,
65 mdiff, 65 mdiff,
66 policy, 66 policy,
67 pycompat, 67 pycompat,
68 repository,
69 templatefilters, 68 templatefilters,
70 util, 69 util,
70 )
71 from .interfaces import (
72 repository,
71 ) 73 )
72 from .revlogutils import ( 74 from .revlogutils import (
73 deltas as deltautil, 75 deltas as deltautil,
74 flagutil, 76 flagutil,
75 ) 77 )