# HG changeset patch # User Gregory Szorc # Date 1449263714 28800 # Node ID 3abee2ba27afe20911ecab59a00aa8528b979284 # Parent 58f473908951593e5934e31d4481ef4ee0b66d9f wireproto: add docstring for wirepeer diff -r 58f473908951 -r 3abee2ba27af mercurial/wireproto.py --- a/mercurial/wireproto.py Fri Dec 04 15:24:05 2015 -0500 +++ b/mercurial/wireproto.py Fri Dec 04 13:15:14 2015 -0800 @@ -166,7 +166,13 @@ # client side class wirepeer(peer.peerrepository): + """Client-side interface for communicating with a peer repository. + Methods commonly call wire protocol commands of the same name. + + See also httppeer.py and sshpeer.py for protocol-specific + implementations of this interface. + """ def batch(self): if self.capable('batch'): return remotebatch(self)