Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/filelog.py @ 42824:2c4f656c8e9f
interfaceutil: move to interfaces/
Now that we have a dedicated folder for interfaces, let's move interfaceutil
there.
Differential Revision: https://phab.mercurial-scm.org/D6742
author | Pulkit Goyal <pulkit@yandex-team.ru> |
---|---|
date | Sun, 18 Aug 2019 02:28:42 +0300 |
parents | 268662aac075 |
children | 2372284d9457 |
comparison
equal
deleted
inserted
replaced
42823:268662aac075 | 42824:2c4f656c8e9f |
---|---|
16 error, | 16 error, |
17 revlog, | 17 revlog, |
18 ) | 18 ) |
19 from .interfaces import ( | 19 from .interfaces import ( |
20 repository, | 20 repository, |
21 util as interfaceutil, | |
21 ) | 22 ) |
22 from .utils import ( | 23 from .utils import ( |
23 interfaceutil, | |
24 storageutil, | 24 storageutil, |
25 ) | 25 ) |
26 | 26 |
27 @interfaceutil.implementer(repository.ifilestorage) | 27 @interfaceutil.implementer(repository.ifilestorage) |
28 class filelog(object): | 28 class filelog(object): |