diff mercurial/util.py @ 26230:d5ac3bebaf2a

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.
author Pierre-Yves David <pierre-yves.david@fb.com>
date Sat, 27 Jun 2015 11:51:25 -0700 (2015-06-27)
parents 328739ea70c3
children 050dc6eabc92
line wrap: on
line diff
--- a/mercurial/util.py
+++ b/mercurial/util.py
@@ -327,7 +327,6 @@
         if not data:
             self._eof = True
         else:
-            # inefficient add
             self._buffer.append(data)
 
 def popen2(cmd, env=None, newlines=False):