Mercurial > public > mercurial-scm > hg
comparison mercurial/revlog.py @ 7873:4a4c7f6a5912
cleanup: drop unused imports
author | Peter Arrenbrecht <peter.arrenbrecht@gmail.com> |
---|---|
date | Mon, 23 Mar 2009 13:12:07 +0100 |
parents | 08cabecfa8a8 |
children | d812029cda85 |
comparison
equal
deleted
inserted
replaced
7872:f680a1bd679b | 7873:4a4c7f6a5912 |
---|---|
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 bin, hex, nullid, nullrev, short | 13 # import stuff from node for others to import from revlog |
14 from node import bin, hex, nullid, nullrev, short #@UnusedImport | |
14 from i18n import _ | 15 from i18n import _ |
15 import changegroup, errno, ancestor, mdiff, parsers | 16 import changegroup, errno, ancestor, mdiff, parsers |
16 import struct, util, zlib, error | 17 import struct, util, zlib, error |
17 | 18 |
18 _pack = struct.pack | 19 _pack = struct.pack |