mercurial/httppeer.py
changeset 37320 39f7d4ee8bcd
parent 37006 8e89c2bec1f7
child 37321 e826fe7a08c7
--- a/mercurial/httppeer.py	Fri Mar 30 14:52:32 2018 -0700
+++ b/mercurial/httppeer.py	Fri Mar 30 18:53:17 2018 -0700
@@ -184,7 +184,7 @@
                 % (util.timer() - start, ret.code))
         return ret
 
-    # Begin of _basepeer interface.
+    # Begin of ipeerconnection interface.
 
     @util.propertycache
     def ui(self):
@@ -205,9 +205,9 @@
     def close(self):
         pass
 
-    # End of _basepeer interface.
+    # End of ipeerconnection interface.
 
-    # Begin of _basewirepeer interface.
+    # Begin of ipeercommands interface.
 
     def capabilities(self):
         # self._fetchcaps() should have been called as part of peer
@@ -215,7 +215,7 @@
         assert self._caps is not None
         return self._caps
 
-    # End of _basewirepeer interface.
+    # End of ipeercommands interface.
 
     # look up capabilities only when needed