comparison mercurial/manifest.py @ 8390:beae42f3d93b

drop unused imports
author Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
date Thu, 14 May 2009 15:35:46 +0200
parents b87a50b7125c
children a5adf55ee533
comparison
equal deleted inserted replaced
8389:4b798b100c32 8390:beae42f3d93b
4 # 4 #
5 # This software may be used and distributed according to the terms of the 5 # This software may be used and distributed according to the terms of the
6 # GNU General Public License version 2, incorporated herein by reference. 6 # GNU General Public License version 2, incorporated herein by reference.
7 7
8 from i18n import _ 8 from i18n import _
9 import mdiff, parsers, util, error, revlog 9 import mdiff, parsers, error, revlog
10 import array, struct 10 import array, struct
11 11
12 class manifestdict(dict): 12 class manifestdict(dict):
13 def __init__(self, mapping=None, flags=None): 13 def __init__(self, mapping=None, flags=None):
14 if mapping is None: mapping = {} 14 if mapping is None: mapping = {}