##// END OF EJS Templates
wireproto: add docstring for wirepeer
Gregory Szorc -
r27243:3abee2ba default
parent child Browse files
Show More
@@ -166,7 +166,13 b" gboptsmap = {'heads': 'nodes',"
166 # client side
166 # client side
167
167
168 class wirepeer(peer.peerrepository):
168 class wirepeer(peer.peerrepository):
169 """Client-side interface for communicating with a peer repository.
169
170
171 Methods commonly call wire protocol commands of the same name.
172
173 See also httppeer.py and sshpeer.py for protocol-specific
174 implementations of this interface.
175 """
170 def batch(self):
176 def batch(self):
171 if self.capable('batch'):
177 if self.capable('batch'):
172 return remotebatch(self)
178 return remotebatch(self)
General Comments 0
You need to be logged in to leave comments. Login now