PyBitmessage/src/configparser.py

16 lines
612 B
Python
Raw Normal View History

2016-12-06 10:01:17 +00:00
from ConfigParser import SafeConfigParser, ConfigParser
class BMConfigParser(SafeConfigParser):
def set(self, section, option, value=None):
2016-12-06 10:01:17 +00:00
if self._optcre is self.OPTCRE or value:
if not isinstance(value, basestring):
raise TypeError("option values must be strings")
return ConfigParser.set(self, section, option, value)
def get(self, section, option, raw=False, vars=None):
return ConfigParser.get(self, section, option, True, vars)
def items(self, section, raw=False, vars=None):
return ConfigParser.items(self, section, True, vars)