Mercurial > public > mercurial-scm > hg
comparison mercurial/hg.py @ 6211:f89fd07fc51d
Expand import * to allow Pyflakes to find problems
author | Joel Rosdahl <joel@rosdahl.net> |
---|---|
date | Thu, 06 Mar 2008 22:23:26 +0100 |
parents | 0d36de68669c |
children | fe8dbbe9520d |
comparison
equal
deleted
inserted
replaced
6210:942287cb1f57 | 6211:f89fd07fc51d |
---|---|
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 * | 9 from node import bin, hex, nullid, nullrev, short |
10 from repo import * | 10 from repo import NoCapability, RepoError |
11 from i18n import _ | 11 from i18n import _ |
12 import localrepo, bundlerepo, httprepo, sshrepo, statichttprepo | 12 import localrepo, bundlerepo, httprepo, sshrepo, statichttprepo |
13 import errno, lock, os, shutil, util, extensions | 13 import errno, lock, os, shutil, util, extensions |
14 import merge as _merge | 14 import merge as _merge |
15 import verify as _verify | 15 import verify as _verify |