Mercurial > public > mercurial-scm > hg-stable
diff mercurial/hg.py @ 21050:025ec0f08cb6
hg: make "_outgoing()" return peer object for remote repository
This patch makes "_outgoing()" return peer object for remote
repository, to avoid re-execution "expandpath()", "parseurl()", and
"peer()" on caller side for specified URL.
author | FUJIWARA Katsunori <foozy@lares.dti.ne.jp> |
---|---|
date | Wed, 16 Apr 2014 00:37:24 +0900 |
parents | f117a0ba5289 |
children | 1004d3cd65fd |
line wrap: on
line diff
--- a/mercurial/hg.py Wed Apr 16 00:37:24 2014 +0900 +++ b/mercurial/hg.py Wed Apr 16 00:37:24 2014 +0900 @@ -585,7 +585,7 @@ o = outgoing.missing if not o: scmutil.nochangesfound(repo.ui, repo, outgoing.excluded) - return o + return o, other def outgoing(ui, repo, dest, opts): def recurse(): @@ -598,7 +598,7 @@ return ret limit = cmdutil.loglimit(opts) - o = _outgoing(ui, repo, dest, opts) + o, other = _outgoing(ui, repo, dest, opts) if not o: return recurse()