Package gofer :: Package agent :: Module config :: Class Base
[hide private]
[frames] | no frames]

Class Base

source code

                     object --+        
                              |        
iniparse.config.ConfigNamespace --+    
                                  |    
             iniparse.ini.INIConfig --+
                                      |
                                     Base
Known Subclasses:

Base configuration. Uses Reader which provides import.

Instance Methods [hide private]
 
__init__(self, path)
x.__init__(...) initializes x; see help(type(x)) for signature
source code

Inherited from iniparse.ini.INIConfig: __delitem__, __iter__, __setitem__, __str__, __unicode__

Inherited from iniparse.ini.INIConfig (private): _getitem, _new_namespace, _parse, _readfp

Inherited from iniparse.config.ConfigNamespace: __contains__, __delattr__, __getattr__, __getitem__, __setattr__, __setstate__

Inherited from object: __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __sizeof__, __subclasshook__

Class Variables [hide private]

Inherited from iniparse.ini.INIConfig (private): _bom, _data, _defaults, _line_types, _optionxformsource, _optionxformvalue, _parse_exc, _sections, _sectionxformsource, _sectionxformvalue

Properties [hide private]

Inherited from iniparse.ini.INIConfig (private): _optionxform, _sectionxform

Inherited from object: __class__

Method Details [hide private]

__init__(self, path)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Parameters:
  • path (str) - The path to an INI file.
Overrides: object.__init__