Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/revlog.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 | 08e0825b8106 |
children | e75aab656f46 |
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 bin, hex, nullid, nullrev, short |
14 from i18n import _ | 14 from i18n import _ |
15 import binascii, changegroup, errno, ancestor, mdiff, os | 15 import binascii, changegroup, errno, ancestor, mdiff, os |
16 import sha, struct, util, zlib | 16 import sha, struct, util, zlib |
17 | 17 |
18 _pack = struct.pack | 18 _pack = struct.pack |