mercurial/changegroup.py
changeset 26706 8c0c3059f478
parent 26704 d7e614513413
child 26707 5ee6bd529300
--- a/mercurial/changegroup.py	Wed Oct 14 11:32:33 2015 -0400
+++ b/mercurial/changegroup.py	Wed Oct 14 11:58:35 2015 -0400
@@ -182,6 +182,9 @@
         self._stream = util.decompressors[alg](fh)
         self._type = alg
         self.callback = None
+
+    # These methods (compressed, read, seek, tell) all appear to only
+    # be used by bundlerepo, but it's a little hard to tell.
     def compressed(self):
         return self._type is not None
     def read(self, l):