Mercurial > hg
changeset 2774:8cd3e19bf4a5
Add a doc string
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Thu, 03 Aug 2006 13:07:57 -0500 |
parents | 871ca5b9d348 |
children | b550cd82f92a |
files | mercurial/hg.py |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/hg.py Wed Aug 02 09:29:17 2006 +0200 +++ b/mercurial/hg.py Thu Aug 03 13:07:57 2006 -0500 @@ -49,12 +49,13 @@ return repo.local() def repository(ui, path=None, create=False): + """return a repository object for the specified path""" return _lookup(path).instance(ui, path, create) def defaultdest(source): '''return default destination of clone if none is given''' return os.path.basename(os.path.normpath(source)) - + def clone(ui, source, dest=None, pull=False, rev=None, update=True, stream=False): """Make a copy of an existing repository.