comparison mercurial/filelog.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 bf1e8d2ab900
children 2c4f656c8e9f
comparison
equal deleted inserted replaced
42807:383fdfa6bba9 42813:268662aac075
12 nullid, 12 nullid,
13 nullrev, 13 nullrev,
14 ) 14 )
15 from . import ( 15 from . import (
16 error, 16 error,
17 revlog,
18 )
19 from .interfaces import (
17 repository, 20 repository,
18 revlog,
19 ) 21 )
20 from .utils import ( 22 from .utils import (
21 interfaceutil, 23 interfaceutil,
22 storageutil, 24 storageutil,
23 ) 25 )