I have the following:
config = ConfigParser()
config.read('connections.cfg')
sections = config.sections()
How can I close the file opened with config.read?
In my case, as new sections/data are added to the config.cfg file, i update my wxtree widget, however, it only updates once, and i suspect it's because config.read leaves the file open.
and while at it, what is the main difference between ConfigParser and RawConfigParser?