(cp)
| 148 | def load(default, user=None): |
| 149 | # return set of (section, option) |
| 150 | def setify(cp): |
| 151 | return set((section, option) for section in cp.sections() for option in cp.options(section)) |
| 152 | |
| 153 | parser = new() |
| 154 | with open(default, "r") as f: |