comparison mercurial/sshpeer.py @ 31953:cc2382b60007

sshpeer: fix docstring typo
author Augie Fackler <augie@google.com>
date Thu, 13 Apr 2017 14:48:18 -0400
parents 764f4581d1f3
children ad6c5497cd15
comparison
equal deleted inserted replaced
31952:a34b5e7c6683 31953:cc2382b60007
60 the first bytes start to appear. This simplifies the implementation 60 the first bytes start to appear. This simplifies the implementation
61 without affecting actual output of sshpeer too much as we rarely issue 61 without affecting actual output of sshpeer too much as we rarely issue
62 large read for data not yet emitted by the server. 62 large read for data not yet emitted by the server.
63 63
64 The main pipe is expected to be a 'bufferedinputpipe' from the util module 64 The main pipe is expected to be a 'bufferedinputpipe' from the util module
65 that handle all the os specific bites. This class lives in this module 65 that handle all the os specific bits. This class lives in this module
66 because it focus on behavior specific to the ssh protocol.""" 66 because it focus on behavior specific to the ssh protocol."""
67 67
68 def __init__(self, ui, main, side): 68 def __init__(self, ui, main, side):
69 self._ui = ui 69 self._ui = ui
70 self._main = main 70 self._main = main