ConfigParser :: SafeConfigParser :: Class SafeConfigParser
[hide private]
[frames] | no frames]

Class SafeConfigParser

RawConfigParser --+    
                  |    
       ConfigParser --+
                      |
                     SafeConfigParser

Instance Methods [hide private]
 
_interpolate(self, section, option, rawval, vars)
 
_interpolate_some(self, option, accum, rest, section, map, depth)
 
set(self, section, option, value=None)
Set an option.

Inherited from ConfigParser: get, items

Inherited from ConfigParser (private): _interpolation_replace

Inherited from RawConfigParser: __init__, add_section, defaults, getboolean, getfloat, getint, has_option, has_section, options, optionxform, read, readfp, remove_option, remove_section, sections, write

Inherited from RawConfigParser (private): _get, _read

Class Variables [hide private]
  _interpvar_re = re.compile(r'%\(([^\)]+)\)s')

Inherited from ConfigParser (private): _KEYCRE

Inherited from RawConfigParser: OPTCRE, OPTCRE_NV, SECTCRE

Inherited from RawConfigParser (private): _boolean_states

Method Details [hide private]

_interpolate(self, section, option, rawval, vars)

 
Overrides: ConfigParser._interpolate

set(self, section, option, value=None)

 

Set an option. Extend ConfigParser.set: check for string values.

Overrides: RawConfigParser.set