def _read_config_file(path):
     """
     Reads a config file
     """
     c_parser = RawConfigParser()
     c_parser.read(path)
     c_parser._path = path
     return c_parser
 def _read_config_file(path):
     """
     Reads a config file
     """
     c_parser = RawConfigParser()
     c_parser.read(path)
     c_parser._path = path
     return c_parser