mercurial/config.py
changeset 8229 ddf3d6656e7c
parent 8222 d30a21594812
child 8263 41031699550a
equal deleted inserted replaced
8228:eee2319c5895 8229:ddf3d6656e7c
       
     1 # config.py - configuration parsing for Mercurial
       
     2 #
       
     3 #  Copyright 2009 Matt Mackall <mpm@selenic.com> and others
       
     4 #
       
     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.
       
     7 
     1 from i18n import _
     8 from i18n import _
     2 import re, error, os
     9 import re, error, os
     3 
    10 
     4 class sortdict(dict):
    11 class sortdict(dict):
     5     'a simple sorted dictionary'
    12     'a simple sorted dictionary'