Mercurial > public > mercurial-scm > hg
comparison mercurial/manifest.py @ 42814: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
42813:268662aac075 | 42814:2c4f656c8e9f |
---|---|
27 revlog, | 27 revlog, |
28 util, | 28 util, |
29 ) | 29 ) |
30 from .interfaces import ( | 30 from .interfaces import ( |
31 repository, | 31 repository, |
32 ) | 32 util as interfaceutil, |
33 from .utils import ( | |
34 interfaceutil, | |
35 ) | 33 ) |
36 | 34 |
37 parsers = policy.importmod(r'parsers') | 35 parsers = policy.importmod(r'parsers') |
38 propertycache = util.propertycache | 36 propertycache = util.propertycache |
39 | 37 |