-
Notifications
You must be signed in to change notification settings - Fork 24
Open
Labels
Description
I have a set of keys in an ini file in once section that I need to apply the same rules to and update the data structure, in memory.
With the current code base I need to know the keys in advance. I would by much nicer if I could do something like:
for key in config.get_keys("section_name") {
//do something here.
}
Then, with the sections() function dumping the data while debugging is also trivial.