# HG changeset patch # User Matt Mackall # Date 1307724218 18000 # Node ID 68db17047637409bb3cef9d083b8c41097bf4f0d # Parent d976542986d2a2c46a989ff1318311ee8621738e hg: add peer method diff -r d976542986d2 -r 68db17047637 mercurial/fileset.py --- a/mercurial/fileset.py Wed Jun 08 18:24:33 2011 +0200 +++ b/mercurial/fileset.py Fri Jun 10 11:43:38 2011 -0500 @@ -5,7 +5,7 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2 or any later version. -import parser, error, match +import parser, error from i18n import _ elements = { diff -r d976542986d2 -r 68db17047637 mercurial/hg.py --- a/mercurial/hg.py Wed Jun 08 18:24:33 2011 +0200 +++ b/mercurial/hg.py Fri Jun 10 11:43:38 2011 -0500 @@ -98,6 +98,11 @@ hook(ui, repo) return repo +def peer(ui, opts, path, create=False): + '''return a repository peer for the specified path''' + rui = remoteui(ui, opts) + return repository(rui, path, create) + def defaultdest(source): '''return default destination of clone if none is given''' return os.path.basename(os.path.normpath(source))