I have tried to use Python\'s ConfigParser module to save settings. For my app it\'s important that I preserve the case of each name in my sections. The docs mention that pa
For me worked to set optionxform immediately after creating the object
config = ConfigParser.RawConfigParser() config.optionxform = str