comparison mercurial/sshpeer.py @ 35968:b0d2885c5945

sshpeer: make "instance" a function The API is that peer modules must provide an "instance" symbol that is callable to return a peer. Making "instance" a function instead of an alias to "sshpeer" makes it easier to monkeypatch the "sshpeer" type. It will also make it possible to turn instance() into a factory function of sorts that returns different types based on connection properties. Differential Revision: https://phab.mercurial-scm.org/D2024
author Gregory Szorc <gregory.szorc@gmail.com>
date Sun, 04 Feb 2018 12:47:37 -0800
parents f7ef49e44d7c
children b202d360d2a4
comparison
equal deleted inserted replaced
35967:9b413478f261 35968:b0d2885c5945
368 self._pipeo.write(data) 368 self._pipeo.write(data)
369 if flush: 369 if flush:
370 self._pipeo.flush() 370 self._pipeo.flush()
371 self._readerr() 371 self._readerr()
372 372
373 instance = sshpeer 373 def instance(ui, path, create):
374 return sshpeer(ui, path, create=create)