| Home | Trees | Index | Help |  | 
|---|
| Module ConfigParser :: Class ConfigParser | 
 | 
RawConfigParser --+
                  |
                 ConfigParser
DesktopParser| Method Summary | |
|---|---|
| Get an option value for a given section. | |
| Return a list of tuples with (name, value) for each option in the section. | |
| Inherited from RawConfigParser | |
| Create a new section in the configuration. | |
|  | |
|  | |
|  | |
|  | |
| Check for the existence of a given option in a given section. | |
| Indicate whether the named section is present in the configuration. | |
| Return a list of option names for the given section name. | |
|  | |
| Read and parse a filename or a list of filenames. | |
| Like read() but the argument must be a file-like object. | |
| Remove an option. | |
| Remove a file section. | |
| Return a list of section names, excluding [DEFAULT] | |
| Set an option. | |
| Write an .ini-format representation of the configuration state. | |
| Class Variable Summary | |
|---|---|
| Inherited from RawConfigParser | |
| SRE_Pattern | OPTCRE=([^:=\s][^:=]*)\s*([:=])\s*(.*)$                 | 
| SRE_Pattern | SECTCRE=\[([^\]]+)\]                                    | 
| Method Details | 
|---|
| get(self, section, option, raw=False, vars=None)Get an option value for a given section. All % interpolations are expanded in the return values, based on the defaults passed into the constructor, unless the optional argument `raw' is true. Additional substitutions may be provided using the `vars' argument, which must be a dictionary whose contents overrides any pre-existing defaults.The section DEFAULT is special. 
 | 
| items(self, section, raw=False, vars=None)Return a list of tuples with (name, value) for each option in the section. All % interpolations are expanded in the return values, based on the defaults passed into the constructor, unless the optional argument `raw' is true. Additional substitutions may be provided using the `vars' argument, which must be a dictionary whose contents overrides any pre-existing defaults.The section DEFAULT is special. 
 | 
| Home | Trees | Index | Help |  | 
|---|
| Generated by Epydoc 2.1 on Fri Mar 23 15:56:54 2007 | http://epydoc.sf.net |