Mercurial > public > mercurial-scm > hg
comparison mercurial/wireprotoserver.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 | 3e47d1ec9da5 |
children | 7e19b640c53e |
comparison
equal
deleted
inserted
replaced
42813:268662aac075 | 42814:2c4f656c8e9f |
---|---|
19 util, | 19 util, |
20 wireprototypes, | 20 wireprototypes, |
21 wireprotov1server, | 21 wireprotov1server, |
22 wireprotov2server, | 22 wireprotov2server, |
23 ) | 23 ) |
24 from .interfaces import ( | |
25 util as interfaceutil, | |
26 ) | |
24 from .utils import ( | 27 from .utils import ( |
25 cborutil, | 28 cborutil, |
26 compression, | 29 compression, |
27 interfaceutil, | |
28 ) | 30 ) |
29 | 31 |
30 stringio = util.stringio | 32 stringio = util.stringio |
31 | 33 |
32 urlerr = util.urlerr | 34 urlerr = util.urlerr |