diff -r a036f6bd1da3 -r 8a1f625e971d mercurial/httprepo.py --- a/mercurial/httprepo.py Wed Jul 14 16:35:51 2010 -0500 +++ b/mercurial/httprepo.py Wed Jul 14 16:55:44 2010 -0500 @@ -141,6 +141,9 @@ def _call(self, cmd, **args): return self.do_read(cmd, **args) + def _callstream(self, cmd, **args): + return self.do_cmd(cmd, **args) + def _abort(self, exception): raise exception @@ -205,9 +208,6 @@ fp.close() os.unlink(tempname) - def stream_out(self): - return self.do_cmd('stream_out') - class httpsrepository(httprepository): def __init__(self, ui, path): if not url.has_https: