mercurial/httpconnection.py
changeset 28526 47b0cee25e88
parent 27521 b1adf32b0605
child 28883 032c4c2f802a
--- a/mercurial/httpconnection.py	Sun Mar 13 14:03:58 2016 -0700
+++ b/mercurial/httpconnection.py	Mon Mar 14 14:08:28 2016 -0700
@@ -33,9 +33,6 @@
     """
 
     def __init__(self, ui, *args, **kwargs):
-        # We can't just "self._data = open(*args, **kwargs)" here because there
-        # is an "open" function defined in this module that shadows the global
-        # one
         self.ui = ui
         self._data = open(*args, **kwargs)
         self.seek = self._data.seek