Mercurial > public > mercurial-scm > hg
diff mercurial/wireprotov1peer.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 | 55e8da487b8a |
children | 2c4f656c8e9f |
line wrap: on
line diff
--- a/mercurial/wireprotov1peer.py Thu Aug 22 16:47:31 2019 -0700 +++ b/mercurial/wireprotov1peer.py Sun Aug 18 00:45:33 2019 +0300 @@ -22,10 +22,12 @@ error, pushkey as pushkeymod, pycompat, - repository, util, wireprototypes, ) +from .interfaces import ( + repository, +) from .utils import ( interfaceutil, )