1 """Configuration file parsers specialisations
2
3 NERC DataGrid Project
4 """
5 __author__ = "Philip Kershaw"
6 __date__ = "25/01/2010"
7 __copyright__ = "(C) 2010 Science and Technology Facilities Council"
8 __license__ = "BSD - see LICENSE file in top-level directory"
9 __contact__ = "Philip.Kershaw@stfc.ac.uk"
10 __revision__ = '$Id: $'
11 import re
12 from ConfigParser import SafeConfigParser
13
15 '''
16 Subclass the SafeConfigParser - to preserve the original string case of the
17 cfg section names - NB, the RawConfigParser default is to lowercase these
18 by default
19 '''
27
34