Robot Framework Integrated Development Environment (RIDE)
configobj.py File Reference

Go to the source code of this file.

Classes

class  robotide.preferences.configobj.Builder
 
class  robotide.preferences.configobj.ConfigObj
 An object to read, create, and write config files. More...
 
class  robotide.preferences.configobj.ConfigObjError
 This is the base class for all errors that ConfigObj raises. More...
 
class  robotide.preferences.configobj.ConfigParserInterpolation
 Behaves like ConfigParser. More...
 
class  robotide.preferences.configobj.ConfigspecError
 Base class for the two interpolation errors. More...
 
class  robotide.preferences.configobj.DuplicateError
 The keyword or section specified already exists. More...
 
class  robotide.preferences.configobj.InterpolationEngine
 
class  robotide.preferences.configobj.InterpolationError
 Maximum interpolation depth exceeded in string interpolation. More...
 
class  robotide.preferences.configobj.InterpolationLoopError
 
class  robotide.preferences.configobj.MissingInterpolationOption
 
class  robotide.preferences.configobj.NestingError
 This error indicates a level of nesting that doesn't match. More...
 
class  robotide.preferences.configobj.ParseError
 A 'reload' operation failed. More...
 
class  robotide.preferences.configobj.ReloadError
 
class  robotide.preferences.configobj.RepeatSectionError
 This error indicates additional sections in a section with a __many__ (repeated) section. More...
 
class  robotide.preferences.configobj.Section
 A dictionary-like object that represents a section in a config file. More...
 
class  robotide.preferences.configobj.SimpleVal
 A simple validator. More...
 
class  robotide.preferences.configobj.TemplateInterpolation
 Behaves like string.Template. More...
 
class  robotide.preferences.configobj.UnknownType
 
class  robotide.preferences.configobj.UnreprError
 An error parsing in unrepr mode. More...
 

Namespaces

 robotide.preferences.configobj
 

Functions

def robotide.preferences.configobj.__newobj__ (cls, *args)
 
def robotide.preferences.configobj.flatten_errors (cfg, res, levels=None, results=None)
 An example function that will turn a nested dictionary of results (as returned by ConfigObj.validate) into a flat list. More...
 
def robotide.preferences.configobj.get_extra_values (conf, _prepend=())
 Find all the values and sections not in the configspec from a validated ConfigObj. More...
 
def robotide.preferences.configobj.getObj (s)
 
def robotide.preferences.configobj.match_utf8 (encoding)
 
def robotide.preferences.configobj.unrepr (s)
 

Variables

tuple robotide.preferences.configobj.__all__
 
 robotide.preferences.configobj._builder
 
dictionary robotide.preferences.configobj.BOM_LIST
 
dictionary robotide.preferences.configobj.BOM_SET
 
dictionary robotide.preferences.configobj.BOMS
 
 robotide.preferences.configobj.compiler = None
 
string robotide.preferences.configobj.DEFAULT_INDENT_TYPE = ' '
 
string robotide.preferences.configobj.DEFAULT_INTERPOLATION = 'configparser'
 
string robotide.preferences.configobj.dquot = '"%s"'
 
dictionary robotide.preferences.configobj.interpolation_engines
 
int robotide.preferences.configobj.MAX_INTERPOL_DEPTH = 10
 
 robotide.preferences.configobj.MISSING = object()
 
string robotide.preferences.configobj.noquot = "%s"
 
dictionary robotide.preferences.configobj.OPTION_DEFAULTS
 
string robotide.preferences.configobj.squot = "'%s'"
 
string robotide.preferences.configobj.tdquot = "'''%s'''"
 
string robotide.preferences.configobj.tsquot = '"""%s"""'
 
string robotide.preferences.configobj.wspace_plus = ' \r\n\v\t\'"'