comparison mercurial/config.py @ 8229:ddf3d6656e7c

config: add copyright and license header
author Martin Geisler <mg@lazybytes.net>
date Sun, 26 Apr 2009 01:56:41 +0200
parents d30a21594812
children 41031699550a
comparison
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'