bufferedinputpipe: remove an outdate comment
authorPierre-Yves David <pierre-yves.david@fb.com>
Sat, 27 Jun 2015 11:51:25 -0700
changeset 25671 d5ac3bebaf2a
parent 25670 6368c51cfad6
child 25672 050dc6eabc92
bufferedinputpipe: remove an outdate comment This comment is the remains of a intermediate implementation using self._buffer += data This implementation never made it to the repository and we can safely drop the comment.
mercurial/util.py
--- a/mercurial/util.py	Thu Jun 25 22:20:09 2015 -0700
+++ b/mercurial/util.py	Sat Jun 27 11:51:25 2015 -0700
@@ -327,7 +327,6 @@
         if not data:
             self._eof = True
         else:
-            # inefficient add
             self._buffer.append(data)
 
 def popen2(cmd, env=None, newlines=False):