Mercurial > public > mercurial-scm > hg
comparison mercurial/hg.py @ 6217:fe8dbbe9520d
Avoid importing mercurial.node/mercurial.repo stuff from mercurial.hg
author | Joel Rosdahl <joel@rosdahl.net> |
---|---|
date | Thu, 06 Mar 2008 22:51:16 +0100 |
parents | f89fd07fc51d |
children | 5c96a4bca66b |
comparison
equal
deleted
inserted
replaced
6216:a88259018f79 | 6217:fe8dbbe9520d |
---|---|
4 # Copyright 2006 Vadim Gelfer <vadim.gelfer@gmail.com> | 4 # Copyright 2006 Vadim Gelfer <vadim.gelfer@gmail.com> |
5 # | 5 # |
6 # This software may be used and distributed according to the terms | 6 # This software may be used and distributed according to the terms |
7 # of the GNU General Public License, incorporated herein by reference. | 7 # of the GNU General Public License, incorporated herein by reference. |
8 | 8 |
9 from node import bin, hex, nullid, nullrev, short | |
10 from repo import NoCapability, RepoError | |
11 from i18n import _ | 9 from i18n import _ |
12 import localrepo, bundlerepo, httprepo, sshrepo, statichttprepo | 10 import localrepo, bundlerepo, httprepo, sshrepo, statichttprepo |
13 import errno, lock, os, shutil, util, extensions | 11 import errno, lock, os, shutil, util, extensions |
14 import merge as _merge | 12 import merge as _merge |
15 import verify as _verify | 13 import verify as _verify |