Return all options (alternatively only from the given section).
Definition at line 170 of file utils.py.
00170 :
"""Return all options (alternatively only from the given section)."""
if section != '':
return self.sections[section]
else:
return self.options
def get_option (self, name, section=''):