# HG changeset patch # User Pierre-Yves David # Date 1670022041 -3600 # Node ID a6e2a668c746e55506381a9cb4121fab753c351d # Parent f075a9463ee7a55ef2c3ca51c292b5ed8ab62148 peer: have a common constructor and use it For now it does not do much, but we will extend it to also store a path object soon. diff -r f075a9463ee7 -r a6e2a668c746 mercurial/httppeer.py --- a/mercurial/httppeer.py Fri Dec 02 18:04:51 2022 +0100 +++ b/mercurial/httppeer.py Sat Dec 03 00:00:41 2022 +0100 @@ -382,7 +382,7 @@ class httppeer(wireprotov1peer.wirepeer): def __init__(self, ui, path, url, opener, requestbuilder, caps): - self.ui = ui + super().__init__(ui) self._path = path self._url = url self._caps = caps diff -r f075a9463ee7 -r a6e2a668c746 mercurial/interfaces/repository.py --- a/mercurial/interfaces/repository.py Fri Dec 02 18:04:51 2022 +0100 +++ b/mercurial/interfaces/repository.py Sat Dec 03 00:00:41 2022 +0100 @@ -387,6 +387,12 @@ limitedarguments = False + def __init__( + self, + ui, + ): + self.ui = ui + def capable(self, name): caps = self.capabilities() if name in caps: diff -r f075a9463ee7 -r a6e2a668c746 mercurial/localrepo.py --- a/mercurial/localrepo.py Fri Dec 02 18:04:51 2022 +0100 +++ b/mercurial/localrepo.py Sat Dec 03 00:00:41 2022 +0100 @@ -304,12 +304,11 @@ '''peer for a local repo; reflects only the most recent API''' def __init__(self, repo, caps=None): - super(localpeer, self).__init__() + super(localpeer, self).__init__(repo.ui) if caps is None: caps = moderncaps.copy() self._repo = repo.filtered(b'served') - self.ui = repo.ui if repo._wanted_sidedata: formatted = bundle2.format_remote_wanted_sidedata(repo) diff -r f075a9463ee7 -r a6e2a668c746 mercurial/sshpeer.py --- a/mercurial/sshpeer.py Fri Dec 02 18:04:51 2022 +0100 +++ b/mercurial/sshpeer.py Sat Dec 03 00:00:41 2022 +0100 @@ -383,8 +383,8 @@ ``autoreadstderr`` denotes whether to automatically read from stderr and to forward its output. """ + super().__init__(ui) self._url = url - self.ui = ui # self._subprocess is unused. Keeping a handle on the process # holds a reference and prevents it from being garbage collected. self._subprocess = proc