comparison mercurial/bundlerepo.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 3d666e8e6398
children c0c4c7b1e8d3
comparison
equal deleted inserted replaced
6210:942287cb1f57 6211:f89fd07fc51d
8 8
9 This software may be used and distributed according to the terms 9 This software may be used and distributed according to the terms
10 of the GNU General Public License, incorporated herein by reference. 10 of the GNU General Public License, incorporated herein by reference.
11 """ 11 """
12 12
13 from node import * 13 from node import hex, nullid, short
14 from i18n import _ 14 from i18n import _
15 import changegroup, util, os, struct, bz2, tempfile, mdiff 15 import changegroup, util, os, struct, bz2, tempfile, mdiff
16 import localrepo, changelog, manifest, filelog, revlog 16 import localrepo, changelog, manifest, filelog, revlog
17 17
18 class bundlerevlog(revlog.revlog): 18 class bundlerevlog(revlog.revlog):