Lines Matching refs:RawConfigParser
87 .. class:: RawConfigParser([defaults[, dict_type[, allow_no_value]]])
114 Derived class of :class:`RawConfigParser` that implements the magical
230 RawConfigParser Objects
233 :class:`RawConfigParser` instances have the following methods:
236 .. method:: RawConfigParser.defaults()
241 .. method:: RawConfigParser.sections()
247 .. method:: RawConfigParser.add_section(section)
254 .. method:: RawConfigParser.has_section(section)
260 .. method:: RawConfigParser.options(section)
265 .. method:: RawConfigParser.has_option(section, option)
273 .. method:: RawConfigParser.read(filenames)
297 .. method:: RawConfigParser.readfp(fp[, filename])
305 .. method:: RawConfigParser.get(section, option)
310 .. method:: RawConfigParser.getint(section, option)
316 .. method:: RawConfigParser.getfloat(section, option)
322 .. method:: RawConfigParser.getboolean(section, option)
332 .. method:: RawConfigParser.items(section)
337 .. method:: RawConfigParser.set(section, option, value)
341 :class:`RawConfigParser` (or :class:`~ConfigParser.ConfigParser` with *raw* parameters set to
348 .. method:: RawConfigParser.write(fileobject)
356 .. method:: RawConfigParser.remove_option(section, option)
365 .. method:: RawConfigParser.remove_section(section)
371 .. method:: RawConfigParser.optionxform(option)
398 :class:`RawConfigParser` interface, adding some optional arguments.
444 config = ConfigParser.RawConfigParser()
448 # In addition, please note that using RawConfigParser's and the raw
469 config = ConfigParser.RawConfigParser()
479 # This is because we are using a RawConfigParser().
545 >>> config = ConfigParser.RawConfigParser(allow_no_value=True)