# HG changeset patch # User Pierre-Yves David # Date 1435431085 25200 # Node ID d5ac3bebaf2ac20755e111abdc80935eb4f6bf45 # Parent 6368c51cfad6dc5f9c46369ed5e17cf8bd09efae 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. diff -r 6368c51cfad6 -r d5ac3bebaf2a 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):