Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/revlog.py @ 6212:e75aab656f46
Remove unused imports
author | Joel Rosdahl <joel@rosdahl.net> |
---|---|
date | Thu, 06 Mar 2008 22:23:41 +0100 |
parents | f89fd07fc51d |
children | c0c4c7b1e8d3 |
comparison
equal
deleted
inserted
replaced
6211:f89fd07fc51d | 6212:e75aab656f46 |
---|---|
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 bin, hex, nullid, nullrev, short | 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 changegroup, errno, ancestor, mdiff |
16 import sha, struct, util, zlib | 16 import sha, struct, util, zlib |
17 | 17 |
18 _pack = struct.pack | 18 _pack = struct.pack |
19 _unpack = struct.unpack | 19 _unpack = struct.unpack |
20 _compress = zlib.compress | 20 _compress = zlib.compress |