comparison mercurial/config.py @ 8312:b87a50b7125c

separate import lines from mercurial and general python modules
author Simon Heimberg <simohe@besonet.ch>
date Tue, 28 Apr 2009 17:40:46 +0200
parents 9542f4c3fa1b
children 31177742f54a 7f0f882af23d
comparison
equal deleted inserted replaced
8311:e0eb03bfa5af 8312:b87a50b7125c
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 re, error, os 9 import error
10 import re, os
10 11
11 class sortdict(dict): 12 class sortdict(dict):
12 'a simple sorted dictionary' 13 'a simple sorted dictionary'
13 def __init__(self, data=None): 14 def __init__(self, data=None):
14 self._list = [] 15 self._list = []