[PATCH 09 of 12 V2] hg: make "_outgoing()" return peer object for remote repository

FUJIWARA Katsunori foozy at lares.dti.ne.jp
Tue Apr 15 10:52:30 CDT 2014


# HG changeset patch
# User FUJIWARA Katsunori <foozy at lares.dti.ne.jp>
# Date 1397576244 -32400
#      Wed Apr 16 00:37:24 2014 +0900
# Node ID 8808149819512acecf299d799b6925eb5ad8f6f0
# Parent  90e8731c7a427cc21b21cf4e588741ce02e9f726
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.

diff --git a/mercurial/commands.py b/mercurial/commands.py
--- a/mercurial/commands.py
+++ b/mercurial/commands.py
@@ -4387,7 +4387,7 @@
     """
     if opts.get('graph'):
         cmdutil.checkunsupportedgraphflags([], opts)
-        o = hg._outgoing(ui, repo, dest, opts)
+        o, other = hg._outgoing(ui, repo, dest, opts)
         if not o:
             return
 
diff --git a/mercurial/hg.py b/mercurial/hg.py
--- a/mercurial/hg.py
+++ b/mercurial/hg.py
@@ -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()
 


More information about the Mercurial-devel mailing list