Package Products :: Package ZenUtils :: Module config
[hide private]
[frames] | no frames]

Module config

source code

Classes [hide private]
ConfigError
Error for problems parsing config files.
ConfigLineError
Error for problems parsing config files with line context.
ConfigErrors
A group of errors while parsing config.
InvalidKey
ConfigLineKeyError
Config
A bunch of configuration settings.
ConfigLine
Abstract class that represents a single line in the config.
SettingLine
Represents a config line with a `key = value` pair.
CommentLine
EmptyLine
InvalidLine
Default line if no other ConfigLines matched.
ConfigFile
Parses Zenoss's config file format.
Parser
ConfigLoader
Lazily load the config when requested.
Variables [hide private]
  __doc__ = ...
Variables Details [hide private]

__doc__

Value:
"""
Zenoss config parsers.

There are mutiple stages to config parsing. Parsing is split into stag\
es so that
we can validate a whole config file and possibly rebuild it to correct\
 errors.

...