Mercurial > public > mercurial-scm > hg
comparison mercurial/manifest.py @ 6212:e75aab656f46
Remove unused imports
author | Joel Rosdahl <joel@rosdahl.net> |
---|---|
date | Thu, 06 Mar 2008 22:23:41 +0100 |
parents | f89fd07fc51d |
children | 0231f763ebc8 |
comparison
equal
deleted
inserted
replaced
6211:f89fd07fc51d | 6212:e75aab656f46 |
---|---|
6 # of the GNU General Public License, incorporated herein by reference. | 6 # of the GNU General Public License, incorporated herein by reference. |
7 | 7 |
8 from node import bin, hex, nullid | 8 from node import bin, hex, nullid |
9 from revlog import revlog, RevlogError | 9 from revlog import revlog, RevlogError |
10 from i18n import _ | 10 from i18n import _ |
11 import array, bisect, struct, mdiff | 11 import array, struct, mdiff |
12 | 12 |
13 class manifestdict(dict): | 13 class manifestdict(dict): |
14 def __init__(self, mapping=None, flags=None): | 14 def __init__(self, mapping=None, flags=None): |
15 if mapping is None: mapping = {} | 15 if mapping is None: mapping = {} |
16 if flags is None: flags = {} | 16 if flags is None: flags = {} |