| 
									
										
										
										
											2008-05-14 22:59:42 +00:00
										 |  |  | :mod:`configparser` --- Configuration file parser
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | =================================================
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-14 22:59:42 +00:00
										 |  |  | .. module:: configparser
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  |    :synopsis: Configuration file parser.
 | 
					
						
							| 
									
										
										
										
											2008-05-14 22:59:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | .. moduleauthor:: Ken Manheimer <klm@zope.com>
 | 
					
						
							|  |  |  | .. moduleauthor:: Barry Warsaw <bwarsaw@python.org>
 | 
					
						
							|  |  |  | .. moduleauthor:: Eric S. Raymond <esr@thyrsus.com>
 | 
					
						
							|  |  |  | .. sectionauthor:: Christopher G. Petrilli <petrilli@amber.org>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. index::
 | 
					
						
							|  |  |  |    pair: .ini; file
 | 
					
						
							|  |  |  |    pair: configuration; file
 | 
					
						
							|  |  |  |    single: ini file
 | 
					
						
							|  |  |  |    single: Windows ini file
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-28 13:13:46 +00:00
										 |  |  | This module provides the classes :class:`RawConfigParser` and
 | 
					
						
							|  |  |  | :class:`SafeConfigParser`.  They implement a basic configuration file parser
 | 
					
						
							|  |  |  | language which provides a structure similar to what you would find in Microsoft
 | 
					
						
							|  |  |  | Windows INI files.  You can use this to write Python programs which can be
 | 
					
						
							|  |  |  | customized by end users easily.
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-27 16:20:50 +00:00
										 |  |  | .. note::
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-27 16:20:50 +00:00
										 |  |  |    This library does *not* interpret or write the value-type prefixes used in
 | 
					
						
							|  |  |  |    the Windows Registry extended version of INI syntax.
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-28 13:13:46 +00:00
										 |  |  | A configuration file consists of sections, each led by a ``[section]`` header,
 | 
					
						
							| 
									
										
										
										
											2010-08-09 12:52:45 +00:00
										 |  |  | followed by key/value entries separated by a specific string (``=`` or ``:`` by
 | 
					
						
							|  |  |  | default). By default, section names are case sensitive but keys are not. Leading
 | 
					
						
							|  |  |  | und trailing whitespace is removed from keys and from values.  Values can be
 | 
					
						
							| 
									
										
										
										
											2010-09-21 14:48:28 +00:00
										 |  |  | omitted, in which case the key/value delimiter may also be left out.  Values
 | 
					
						
							| 
									
										
										
										
											2010-07-28 13:13:46 +00:00
										 |  |  | can also span multiple lines, as long as they are indented deeper than the first
 | 
					
						
							|  |  |  | line of the value.  Depending on the parser's mode, blank lines may be treated
 | 
					
						
							|  |  |  | as parts of multiline values or ignored.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Configuration files may include comments, prefixed by specific characters (``#``
 | 
					
						
							|  |  |  | and ``;`` by default).  Comments may appear on their own in an otherwise empty
 | 
					
						
							|  |  |  | line, or may be entered in lines holding values or spection names.  In the
 | 
					
						
							|  |  |  | latter case, they need to be preceded by a whitespace character to be recognized
 | 
					
						
							|  |  |  | as a comment.  (For backwards compatibility, by default only ``;`` starts an
 | 
					
						
							|  |  |  | inline comment, while ``#`` does not.)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | On top of the core functionality, :class:`SafeConfigParser` supports
 | 
					
						
							|  |  |  | interpolation.  This means values can contain format strings which refer to
 | 
					
						
							|  |  |  | other values in the same section, or values in a special ``DEFAULT`` section.
 | 
					
						
							| 
									
										
										
										
											2010-07-29 14:17:12 +00:00
										 |  |  | Additional defaults can be provided on initialization.
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | For example::
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-28 13:13:46 +00:00
										 |  |  |    [Paths]
 | 
					
						
							|  |  |  |    home_dir: /Users
 | 
					
						
							|  |  |  |    my_dir: %(home_dir)s/lumberjack
 | 
					
						
							|  |  |  |    my_pictures: %(my_dir)s/Pictures
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    [Multiline Values]
 | 
					
						
							|  |  |  |    chorus: I'm a lumberjack, and I'm okay
 | 
					
						
							|  |  |  |       I sleep all night and I work all day
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    [No Values]
 | 
					
						
							|  |  |  |    key_without_value
 | 
					
						
							|  |  |  |    empty string value here =
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    [You can use comments] ; after a useful line
 | 
					
						
							|  |  |  |    ; in an empty line
 | 
					
						
							|  |  |  |    after: a_value ; here's another comment
 | 
					
						
							|  |  |  |    inside: a         ;comment
 | 
					
						
							|  |  |  |            multiline ;comment
 | 
					
						
							|  |  |  |            value!    ;comment
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       [Sections Can Be Indented]
 | 
					
						
							|  |  |  |          can_values_be_as_well = True
 | 
					
						
							|  |  |  |          does_that_mean_anything_special = False
 | 
					
						
							|  |  |  |          purpose = formatting for readability
 | 
					
						
							|  |  |  |          multiline_values = are
 | 
					
						
							|  |  |  |             handled just fine as
 | 
					
						
							|  |  |  |             long as they are indented
 | 
					
						
							|  |  |  |             deeper than the first line
 | 
					
						
							|  |  |  |             of a value
 | 
					
						
							|  |  |  |          # Did I mention we can indent comments, too?
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | In the example above, :class:`SafeConfigParser` would resolve ``%(home_dir)s``
 | 
					
						
							|  |  |  | to the value of ``home_dir`` (``/Users`` in this case).  ``%(my_dir)s`` in
 | 
					
						
							|  |  |  | effect would resolve to ``/Users/lumberjack``.  All interpolations are done on
 | 
					
						
							|  |  |  | demand so keys used in the chain of references do not have to be specified in
 | 
					
						
							|  |  |  | any specific order in the configuration file.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | :class:`RawConfigParser` would simply return ``%(my_dir)s/Pictures`` as the
 | 
					
						
							|  |  |  | value of ``my_pictures`` and ``%(home_dir)s/lumberjack`` as the value of
 | 
					
						
							|  |  |  | ``my_dir``.  Other features presented in the example are handled in the same
 | 
					
						
							|  |  |  | manner by both parsers.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Default values can be specified by passing them as a dictionary when
 | 
					
						
							| 
									
										
										
										
											2010-07-29 14:17:12 +00:00
										 |  |  | constructing the :class:`SafeConfigParser`.
 | 
					
						
							| 
									
										
										
										
											2010-07-28 13:13:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Sections are normally stored in an :class:`collections.OrderedDict` which
 | 
					
						
							|  |  |  | maintains the order of all keys.  An alternative dictionary type can be passed
 | 
					
						
							|  |  |  | to the :meth:`__init__` method.  For example, if a dictionary type is passed
 | 
					
						
							|  |  |  | that sorts its keys, the sections will be sorted on write-back, as will be the
 | 
					
						
							|  |  |  | keys within each section.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-09 12:52:45 +00:00
										 |  |  | .. class:: RawConfigParser(defaults=None, dict_type=collections.OrderedDict, allow_no_value=False, delimiters=('=', ':'), comment_prefixes=_COMPATIBLE, strict=False, empty_lines_in_values=True)
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    The basic configuration object.  When *defaults* is given, it is initialized
 | 
					
						
							| 
									
										
										
										
											2010-07-28 13:13:46 +00:00
										 |  |  |    into the dictionary of intrinsic defaults.  When *dict_type* is given, it
 | 
					
						
							|  |  |  |    will be used to create the dictionary objects for the list of sections, for
 | 
					
						
							|  |  |  |    the options within a section, and for the default values.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    When *delimiters* is given, it will be used as the set of substrings that
 | 
					
						
							|  |  |  |    divide keys from values.  When *comment_prefixes* is given, it will be used
 | 
					
						
							|  |  |  |    as the set of substrings that prefix comments in a line, both for the whole
 | 
					
						
							|  |  |  |    line and inline comments.  For backwards compatibility, the default value for
 | 
					
						
							|  |  |  |    *comment_prefixes* is a special value that indicates that ``;`` and ``#`` can
 | 
					
						
							|  |  |  |    start whole line comments while only ``;`` can start inline comments.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-09 12:52:45 +00:00
										 |  |  |    When *strict* is ``True`` (default: ``False``), the parser won't allow for
 | 
					
						
							|  |  |  |    any section or option duplicates while reading from a single source (file,
 | 
					
						
							|  |  |  |    string or dictionary), raising :exc:`DuplicateSectionError` or
 | 
					
						
							|  |  |  |    :exc:`DuplicateOptionError`. When *empty_lines_in_values* is ``False``
 | 
					
						
							|  |  |  |    (default: ``True``), each empty line marks the end of an option.  Otherwise,
 | 
					
						
							|  |  |  |    internal empty lines of a multiline option are kept as part of the value.
 | 
					
						
							|  |  |  |    When *allow_no_value* is ``True`` (default: ``False``), options without
 | 
					
						
							|  |  |  |    values are accepted; the value presented for these is ``None``.
 | 
					
						
							| 
									
										
										
										
											2010-02-19 06:08:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-28 13:13:46 +00:00
										 |  |  |    This class does not support the magical interpolation behavior.
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-03 00:23:19 +00:00
										 |  |  |    .. versionchanged:: 3.1
 | 
					
						
							| 
									
										
										
										
											2009-03-02 23:06:00 +00:00
										 |  |  |       The default *dict_type* is :class:`collections.OrderedDict`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-19 06:08:41 +00:00
										 |  |  |    .. versionchanged:: 3.2
 | 
					
						
							| 
									
										
										
										
											2010-08-09 12:52:45 +00:00
										 |  |  |       *allow_no_value*, *delimiters*, *comment_prefixes*, *strict* and
 | 
					
						
							|  |  |  |       *empty_lines_in_values* were added.
 | 
					
						
							| 
									
										
										
										
											2010-02-19 06:08:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-04 04:35:34 +00:00
										 |  |  | .. class:: SafeConfigParser(defaults=None, dict_type=collections.OrderedDict, allow_no_value=False, delimiters=('=', ':'), comment_prefixes=_COMPATIBLE, strict=False, empty_lines_in_values=True)
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-28 13:13:46 +00:00
										 |  |  |    Derived class of :class:`ConfigParser` that implements a sane variant of the
 | 
					
						
							|  |  |  |    magical interpolation feature.  This implementation is more predictable as it
 | 
					
						
							|  |  |  |    validates the interpolation syntax used within a configuration file.  This
 | 
					
						
							|  |  |  |    class also enables escaping the interpolation character (e.g. a key can have
 | 
					
						
							|  |  |  |    ``%`` as part of the value by specifying ``%%`` in the file).
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-28 13:13:46 +00:00
										 |  |  |    Applications that don't require interpolation should use
 | 
					
						
							|  |  |  |    :class:`RawConfigParser`, otherwise :class:`SafeConfigParser` is the best
 | 
					
						
							|  |  |  |    option.
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-03 00:23:19 +00:00
										 |  |  |    .. versionchanged:: 3.1
 | 
					
						
							| 
									
										
										
										
											2009-03-02 23:06:00 +00:00
										 |  |  |       The default *dict_type* is :class:`collections.OrderedDict`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-19 06:08:41 +00:00
										 |  |  |    .. versionchanged:: 3.2
 | 
					
						
							| 
									
										
										
										
											2010-08-09 12:52:45 +00:00
										 |  |  |       *allow_no_value*, *delimiters*, *comment_prefixes*, *strict* and
 | 
					
						
							|  |  |  |       *empty_lines_in_values* were added.
 | 
					
						
							| 
									
										
										
										
											2010-07-28 13:13:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-19 06:08:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-04 04:35:34 +00:00
										 |  |  | .. class:: ConfigParser(defaults=None, dict_type=collections.OrderedDict, allow_no_value=False, delimiters=('=', ':'), comment_prefixes=_COMPATIBLE, strict=False, empty_lines_in_values=True)
 | 
					
						
							| 
									
										
										
										
											2010-07-28 13:13:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    Derived class of :class:`RawConfigParser` that implements the magical
 | 
					
						
							|  |  |  |    interpolation feature and adds optional arguments to the :meth:`get` and
 | 
					
						
							|  |  |  |    :meth:`items` methods.
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-28 13:13:46 +00:00
										 |  |  |    :class:`SafeConfigParser` is generally recommended over this class if you
 | 
					
						
							|  |  |  |    need interpolation.
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-28 13:13:46 +00:00
										 |  |  |    The values in *defaults* must be appropriate for the ``%()s`` string
 | 
					
						
							|  |  |  |    interpolation.  Note that *__name__* is an intrinsic default; its value is
 | 
					
						
							|  |  |  |    the section name, and will override any value provided in *defaults*.
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-28 13:13:46 +00:00
										 |  |  |    All option names used in interpolation will be passed through the
 | 
					
						
							|  |  |  |    :meth:`optionxform` method just like any other option name reference.  For
 | 
					
						
							|  |  |  |    example, using the default implementation of :meth:`optionxform` (which
 | 
					
						
							|  |  |  |    converts option names to lower case), the values ``foo %(bar)s`` and ``foo
 | 
					
						
							|  |  |  |    %(BAR)s`` are equivalent.
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-03 00:23:19 +00:00
										 |  |  |    .. versionchanged:: 3.1
 | 
					
						
							| 
									
										
										
										
											2009-03-02 23:06:00 +00:00
										 |  |  |       The default *dict_type* is :class:`collections.OrderedDict`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-19 06:08:41 +00:00
										 |  |  |    .. versionchanged:: 3.2
 | 
					
						
							| 
									
										
										
										
											2010-08-09 12:52:45 +00:00
										 |  |  |       *allow_no_value*, *delimiters*, *comment_prefixes*,
 | 
					
						
							|  |  |  |       *strict* and *empty_lines_in_values* were added.
 | 
					
						
							| 
									
										
										
										
											2010-02-19 06:08:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-29 14:32:22 +00:00
										 |  |  | .. exception:: Error
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Base class for all other configparser exceptions.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | .. exception:: NoSectionError
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Exception raised when a specified section is not found.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. exception:: DuplicateSectionError
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Exception raised if :meth:`add_section` is called with the name of a section
 | 
					
						
							| 
									
										
										
										
											2010-08-09 12:52:45 +00:00
										 |  |  |    that is already present or in strict parsers when a section if found more
 | 
					
						
							|  |  |  |    than once in a single input file, string or dictionary.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    .. versionadded:: 3.2
 | 
					
						
							|  |  |  |       Optional ``source`` and ``lineno`` attributes and arguments to
 | 
					
						
							|  |  |  |       :meth:`__init__` were added.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. exception:: DuplicateOptionError
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Exception raised by strict parsers if a single option appears twice during
 | 
					
						
							|  |  |  |    reading from a single file, string or dictionary. This catches misspellings
 | 
					
						
							|  |  |  |    and case sensitivity-related errors, e.g. a dictionary may have two keys
 | 
					
						
							|  |  |  |    representing the same case-insensitive configuration key.
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. exception:: NoOptionError
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-09 12:52:45 +00:00
										 |  |  |    Exception raised when a specified option is not found in the specified
 | 
					
						
							|  |  |  |    section.
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. exception:: InterpolationError
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Base class for exceptions raised when problems occur performing string
 | 
					
						
							|  |  |  |    interpolation.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. exception:: InterpolationDepthError
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Exception raised when string interpolation cannot be completed because the
 | 
					
						
							|  |  |  |    number of iterations exceeds :const:`MAX_INTERPOLATION_DEPTH`. Subclass of
 | 
					
						
							|  |  |  |    :exc:`InterpolationError`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. exception:: InterpolationMissingOptionError
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Exception raised when an option referenced from a value does not exist. Subclass
 | 
					
						
							|  |  |  |    of :exc:`InterpolationError`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. exception:: InterpolationSyntaxError
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Exception raised when the source text into which substitutions are made does not
 | 
					
						
							|  |  |  |    conform to the required syntax. Subclass of :exc:`InterpolationError`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. exception:: MissingSectionHeaderError
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Exception raised when attempting to parse a file which has no section headers.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. exception:: ParsingError
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Exception raised when errors occur attempting to parse a file.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-09 12:52:45 +00:00
										 |  |  |    .. versionchanged:: 3.2
 | 
					
						
							|  |  |  |       The ``filename`` attribute and :meth:`__init__` argument were renamed to
 | 
					
						
							|  |  |  |       ``source`` for consistency.
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | .. data:: MAX_INTERPOLATION_DEPTH
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    The maximum depth for recursive interpolation for :meth:`get` when the *raw*
 | 
					
						
							|  |  |  |    parameter is false.  This is relevant only for the :class:`ConfigParser` class.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. seealso::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Module :mod:`shlex`
 | 
					
						
							|  |  |  |       Support for a creating Unix shell-like mini-languages which can be used as an
 | 
					
						
							|  |  |  |       alternate format for application configuration files.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. _rawconfigparser-objects:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | RawConfigParser Objects
 | 
					
						
							|  |  |  | -----------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | :class:`RawConfigParser` instances have the following methods:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. method:: RawConfigParser.defaults()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Return a dictionary containing the instance-wide defaults.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. method:: RawConfigParser.sections()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Return a list of the sections available; ``DEFAULT`` is not included in the
 | 
					
						
							|  |  |  |    list.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. method:: RawConfigParser.add_section(section)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Add a section named *section* to the instance.  If a section by the given name
 | 
					
						
							| 
									
										
											  
											
												Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60875,60880-60881,60886,60888-60890,60892,60894-60898,60900,60902-60906,60908,60911-60917,60919-60920,60922,60926,60929-60931,60933-60935,60937,60939-60941,60943-60954,60959-60961,60963-60969,60971-60976 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
  r60965 | eric.smith | 2008-02-22 18:43:17 +0100 (Fri, 22 Feb 2008) | 1 line
  Tests for bin() builtin.  These need to get merged into py3k, which has no tests for bin.
........
  r60968 | raymond.hettinger | 2008-02-22 20:50:06 +0100 (Fri, 22 Feb 2008) | 1 line
  Document itertools.product().
........
  r60969 | raymond.hettinger | 2008-02-23 03:20:41 +0100 (Sat, 23 Feb 2008) | 9 lines
  Improve the implementation of itertools.product()
  * Fix-up issues pointed-out by Neal Norwitz.
  * Add extensive comments.
  * The lz->result variable is now a tuple instead of a list.
  * Use fast macro getitem/setitem calls so most code is in-line.
  * Re-use the result tuple if available (modify in-place instead of copy).
........
  r60972 | raymond.hettinger | 2008-02-23 05:03:50 +0100 (Sat, 23 Feb 2008) | 1 line
  Add more comments
........
  r60973 | raymond.hettinger | 2008-02-23 11:04:15 +0100 (Sat, 23 Feb 2008) | 1 line
  Add recipe using itertools.product().
........
  r60974 | facundo.batista | 2008-02-23 13:01:13 +0100 (Sat, 23 Feb 2008) | 6 lines
  Issue 1881. Increased the stack limit from 500 to 1500. Also added
  a test for this (and because of this test you'll see in stderr a
  message that parser.c sends before raising MemoryError).
  Thanks Ralf Schmitt.
........
  r60975 | facundo.batista | 2008-02-23 13:27:17 +0100 (Sat, 23 Feb 2008) | 4 lines
  Issue 1776581. Minor corrections to smtplib, and two small tests.
  Thanks Alan McIntyre.
........
  r60976 | facundo.batista | 2008-02-23 13:46:10 +0100 (Sat, 23 Feb 2008) | 5 lines
  Issue 1781. Now ConfigParser.add_section does not let you add a
  DEFAULT section any more, because it duplicated sections with
  the rest of the machinery. Thanks Tim Lesher and Manuel Kaufmann.
........
											
										 
											2008-02-23 13:18:03 +00:00
										 |  |  |    already exists, :exc:`DuplicateSectionError` is raised. If the name
 | 
					
						
							|  |  |  |    ``DEFAULT`` (or any of it's case-insensitive variants) is passed,
 | 
					
						
							|  |  |  |    :exc:`ValueError` is raised.
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | .. method:: RawConfigParser.has_section(section)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Indicates whether the named section is present in the configuration. The
 | 
					
						
							|  |  |  |    ``DEFAULT`` section is not acknowledged.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. method:: RawConfigParser.options(section)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Returns a list of options available in the specified *section*.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. method:: RawConfigParser.has_option(section, option)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    If the given section exists, and contains the given option, return
 | 
					
						
							|  |  |  |    :const:`True`; otherwise return :const:`False`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-29 12:17:40 +00:00
										 |  |  | .. method:: RawConfigParser.read(filenames, encoding=None)
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    Attempt to read and parse a list of filenames, returning a list of filenames
 | 
					
						
							| 
									
										
										
										
											2010-07-29 12:17:40 +00:00
										 |  |  |    which were successfully parsed.  If *filenames* is a string, it is treated as
 | 
					
						
							|  |  |  |    a single filename.  If a file named in *filenames* cannot be opened, that
 | 
					
						
							|  |  |  |    file will be ignored.  This is designed so that you can specify a list of
 | 
					
						
							|  |  |  |    potential configuration file locations (for example, the current directory,
 | 
					
						
							|  |  |  |    the user's home directory, and some system-wide directory), and all existing
 | 
					
						
							|  |  |  |    configuration files in the list will be read.  If none of the named files
 | 
					
						
							|  |  |  |    exist, the :class:`ConfigParser` instance will contain an empty dataset.  An
 | 
					
						
							|  |  |  |    application which requires initial values to be loaded from a file should
 | 
					
						
							| 
									
										
										
										
											2010-08-15 20:21:26 +00:00
										 |  |  |    load the required file or files using :meth:`read_file` before calling
 | 
					
						
							| 
									
										
										
										
											2010-07-29 12:17:40 +00:00
										 |  |  |    :meth:`read` for any optional files::
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-14 22:59:42 +00:00
										 |  |  |       import configparser, os
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-14 22:59:42 +00:00
										 |  |  |       config = configparser.ConfigParser()
 | 
					
						
							| 
									
										
										
										
											2010-08-15 20:21:26 +00:00
										 |  |  |       config.read_file(open('defaults.cfg'))
 | 
					
						
							| 
									
										
										
										
											2010-07-29 12:17:40 +00:00
										 |  |  |       config.read(['site.cfg', os.path.expanduser('~/.myapp.cfg')], encoding='cp1250')
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    .. versionadded:: 3.2
 | 
					
						
							|  |  |  |       The *encoding* parameter.  Previously, all files were read using the
 | 
					
						
							|  |  |  |       default encoding for :func:`open`.
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-09 12:52:45 +00:00
										 |  |  | .. method:: RawConfigParser.read_file(f, source=None)
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-09 12:52:45 +00:00
										 |  |  |    Read and parse configuration data from the file or file-like object in *f*
 | 
					
						
							| 
									
										
										
										
											2009-09-22 13:53:14 +00:00
										 |  |  |    (only the :meth:`readline` method is used).  The file-like object must
 | 
					
						
							|  |  |  |    operate in text mode, i.e. return strings from :meth:`readline`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-09 12:52:45 +00:00
										 |  |  |    Optional argument *source* specifies the name of the file being read. It not
 | 
					
						
							|  |  |  |    given and *f* has a :attr:`name` attribute, that is used for *source*; the
 | 
					
						
							|  |  |  |    default is ``<???>``.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    .. versionadded:: 3.2
 | 
					
						
							|  |  |  |       Renamed from :meth:`readfp` (with the ``filename`` attribute renamed to
 | 
					
						
							|  |  |  |       ``source`` for consistency with other ``read_*`` methods).
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. method:: RawConfigParser.read_string(string, source='<string>')
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-09 12:52:45 +00:00
										 |  |  |    Parse configuration data from a given string.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Optional argument *source* specifies a context-specific name of the string
 | 
					
						
							|  |  |  |    passed. If not given, ``<string>`` is used.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    .. versionadded:: 3.2
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-17 15:07:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-09 12:52:45 +00:00
										 |  |  | .. method:: RawConfigParser.read_dict(dictionary, source='<dict>')
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Load configuration from a dictionary. Keys are section names, values are
 | 
					
						
							|  |  |  |    dictionaries with keys and values that should be present in the section. If
 | 
					
						
							|  |  |  |    the used dictionary type preserves order, sections and their keys will be
 | 
					
						
							| 
									
										
										
										
											2010-09-04 04:35:34 +00:00
										 |  |  |    added in order. Values are automatically converted to strings.
 | 
					
						
							| 
									
										
										
										
											2010-08-09 12:52:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    Optional argument *source* specifies a context-specific name of the
 | 
					
						
							|  |  |  |    dictionary passed.  If not given, ``<dict>`` is used.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    .. versionadded:: 3.2
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-04 04:35:34 +00:00
										 |  |  | .. method:: RawConfigParser.get(section, option, [vars, default])
 | 
					
						
							| 
									
										
										
										
											2010-08-17 15:07:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-04 04:35:34 +00:00
										 |  |  |    Get an *option* value for the named *section*. If *vars* is provided, it
 | 
					
						
							|  |  |  |    must be a dictionary.  The *option* is looked up in *vars* (if provided),
 | 
					
						
							|  |  |  |    *section*, and in *DEFAULTSECT* in that order. If the key is not found and
 | 
					
						
							|  |  |  |    *default* is provided, it is used as a fallback value. ``None`` can be
 | 
					
						
							|  |  |  |    provided as a *default* value.
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-04 04:35:34 +00:00
										 |  |  | .. method:: RawConfigParser.getint(section, option, [vars, default])
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-04 04:35:34 +00:00
										 |  |  |    A convenience method which coerces the *option* in the specified *section* to
 | 
					
						
							|  |  |  |    an integer. See :meth:`get` for explanation of *vars* and *default*.
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-04 04:35:34 +00:00
										 |  |  | .. method:: RawConfigParser.getfloat(section, option, [vars, default])
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-04 04:35:34 +00:00
										 |  |  |    A convenience method which coerces the *option* in the specified *section* to
 | 
					
						
							|  |  |  |    a floating point number.  See :meth:`get` for explanation of *vars* and
 | 
					
						
							|  |  |  |    *default*.
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-04 04:35:34 +00:00
										 |  |  | .. method:: RawConfigParser.getboolean(section, option, [vars, default])
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-04 04:35:34 +00:00
										 |  |  |    A convenience method which coerces the *option* in the specified *section*
 | 
					
						
							|  |  |  |    to a Boolean value.  Note that the accepted values for the option are
 | 
					
						
							|  |  |  |    ``"1"``, ``"yes"``, ``"true"``, and ``"on"``, which cause this method to
 | 
					
						
							|  |  |  |    return ``True``, and ``"0"``, ``"no"``, ``"false"``, and ``"off"``, which
 | 
					
						
							|  |  |  |    cause it to return ``False``.  These string values are checked in
 | 
					
						
							|  |  |  |    a case-insensitive manner.  Any other value will cause it to raise
 | 
					
						
							|  |  |  |    :exc:`ValueError`. See :meth:`get` for explanation of *vars* and *default*.
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. method:: RawConfigParser.items(section)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Return a list of ``(name, value)`` pairs for each option in the given *section*.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. method:: RawConfigParser.set(section, option, value)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    If the given section exists, set the given option to the specified value;
 | 
					
						
							|  |  |  |    otherwise raise :exc:`NoSectionError`.  While it is possible to use
 | 
					
						
							|  |  |  |    :class:`RawConfigParser` (or :class:`ConfigParser` with *raw* parameters set to
 | 
					
						
							|  |  |  |    true) for *internal* storage of non-string values, full functionality (including
 | 
					
						
							|  |  |  |    interpolation and output to files) can only be achieved using string values.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-28 13:13:46 +00:00
										 |  |  | .. method:: RawConfigParser.write(fileobject, space_around_delimiters=True)
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-15 11:11:28 +00:00
										 |  |  |    Write a representation of the configuration to the specified :term:`file object`,
 | 
					
						
							| 
									
										
										
										
											2009-09-22 13:53:14 +00:00
										 |  |  |    which must be opened in text mode (accepting strings).  This representation
 | 
					
						
							| 
									
										
										
										
											2010-07-28 13:13:46 +00:00
										 |  |  |    can be parsed by a future :meth:`read` call. If ``space_around_delimiters``
 | 
					
						
							|  |  |  |    is ``True`` (the default), delimiters between keys and values are surrounded
 | 
					
						
							|  |  |  |    by spaces.
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. method:: RawConfigParser.remove_option(section, option)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Remove the specified *option* from the specified *section*. If the section does
 | 
					
						
							|  |  |  |    not exist, raise :exc:`NoSectionError`.  If the option existed to be removed,
 | 
					
						
							|  |  |  |    return :const:`True`; otherwise return :const:`False`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. method:: RawConfigParser.remove_section(section)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Remove the specified *section* from the configuration. If the section in fact
 | 
					
						
							|  |  |  |    existed, return ``True``. Otherwise return ``False``.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. method:: RawConfigParser.optionxform(option)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
											  
											
												Merged revisions 75365,75394,75402-75403,75418,75459,75484,75592-75596,75600,75602-75607,75610-75613,75616-75617,75623,75627,75640,75647,75696,75795 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
  r75365 | georg.brandl | 2009-10-11 22:16:16 +0200 (So, 11 Okt 2009) | 1 line
  Fix broken links found by "make linkcheck".  scipy.org seems to be done right now, so I could not verify links going there.
........
  r75394 | georg.brandl | 2009-10-13 20:10:59 +0200 (Di, 13 Okt 2009) | 1 line
  Fix markup.
........
  r75402 | georg.brandl | 2009-10-14 17:51:48 +0200 (Mi, 14 Okt 2009) | 1 line
  #7125: fix typo.
........
  r75403 | georg.brandl | 2009-10-14 17:57:46 +0200 (Mi, 14 Okt 2009) | 1 line
  #7126: os.environ changes *do* take effect in subprocesses started with os.system().
........
  r75418 | georg.brandl | 2009-10-14 20:48:32 +0200 (Mi, 14 Okt 2009) | 1 line
  #7116: str.join() takes an iterable.
........
  r75459 | georg.brandl | 2009-10-17 10:57:43 +0200 (Sa, 17 Okt 2009) | 1 line
  Fix refleaks in _ctypes PyCSimpleType_New, which fixes the refleak seen in test___all__.
........
  r75484 | georg.brandl | 2009-10-18 09:58:12 +0200 (So, 18 Okt 2009) | 1 line
  Fix missing word.
........
  r75592 | georg.brandl | 2009-10-22 09:05:48 +0200 (Do, 22 Okt 2009) | 1 line
  Fix punctuation.
........
  r75593 | georg.brandl | 2009-10-22 09:06:49 +0200 (Do, 22 Okt 2009) | 1 line
  Revert unintended change.
........
  r75594 | georg.brandl | 2009-10-22 09:56:02 +0200 (Do, 22 Okt 2009) | 1 line
  Fix markup.
........
  r75595 | georg.brandl | 2009-10-22 09:56:56 +0200 (Do, 22 Okt 2009) | 1 line
  Fix duplicate target.
........
  r75596 | georg.brandl | 2009-10-22 10:05:04 +0200 (Do, 22 Okt 2009) | 1 line
  Add a new directive marking up implementation details and start using it.
........
  r75600 | georg.brandl | 2009-10-22 13:01:46 +0200 (Do, 22 Okt 2009) | 1 line
  Make it more robust.
........
  r75602 | georg.brandl | 2009-10-22 13:28:06 +0200 (Do, 22 Okt 2009) | 1 line
  Document new directive.
........
  r75603 | georg.brandl | 2009-10-22 13:28:23 +0200 (Do, 22 Okt 2009) | 1 line
  Allow short form with text as argument.
........
  r75604 | georg.brandl | 2009-10-22 13:36:50 +0200 (Do, 22 Okt 2009) | 1 line
  Fix stylesheet for multi-paragraph impl-details.
........
  r75605 | georg.brandl | 2009-10-22 13:48:10 +0200 (Do, 22 Okt 2009) | 1 line
  Use "impl-detail" directive where applicable.
........
  r75606 | georg.brandl | 2009-10-22 17:00:06 +0200 (Do, 22 Okt 2009) | 1 line
  #6324: membership test tries iteration via __iter__.
........
  r75607 | georg.brandl | 2009-10-22 17:04:09 +0200 (Do, 22 Okt 2009) | 1 line
  #7088: document new functions in signal as Unix-only.
........
  r75610 | georg.brandl | 2009-10-22 17:27:24 +0200 (Do, 22 Okt 2009) | 1 line
  Reorder __slots__ fine print and add a clarification.
........
  r75611 | georg.brandl | 2009-10-22 17:42:32 +0200 (Do, 22 Okt 2009) | 1 line
  #7035: improve docs of the various <method>_errors() functions, and give them docstrings.
........
  r75612 | georg.brandl | 2009-10-22 17:52:15 +0200 (Do, 22 Okt 2009) | 1 line
  #7156: document curses as Unix-only.
........
  r75613 | georg.brandl | 2009-10-22 17:54:35 +0200 (Do, 22 Okt 2009) | 1 line
  #6977: getopt does not support optional option arguments.
........
  r75616 | georg.brandl | 2009-10-22 18:17:05 +0200 (Do, 22 Okt 2009) | 1 line
  Add proper references.
........
  r75617 | georg.brandl | 2009-10-22 18:20:55 +0200 (Do, 22 Okt 2009) | 1 line
  Make printout margin important.
........
  r75623 | georg.brandl | 2009-10-23 10:14:44 +0200 (Fr, 23 Okt 2009) | 1 line
  #7188: fix optionxform() docs.
........
  r75627 | fred.drake | 2009-10-23 15:04:51 +0200 (Fr, 23 Okt 2009) | 2 lines
  add further note about what's passed to optionxform
........
  r75640 | neil.schemenauer | 2009-10-23 21:58:17 +0200 (Fr, 23 Okt 2009) | 2 lines
  Improve some docstrings in the 'warnings' module.
........
  r75647 | georg.brandl | 2009-10-24 12:04:19 +0200 (Sa, 24 Okt 2009) | 1 line
  Fix markup.
........
  r75696 | georg.brandl | 2009-10-25 21:25:43 +0100 (So, 25 Okt 2009) | 1 line
  Fix a demo.
........
  r75795 | georg.brandl | 2009-10-27 16:10:22 +0100 (Di, 27 Okt 2009) | 1 line
  Fix a strange mis-edit.
........
											
										 
											2009-10-27 15:28:25 +00:00
										 |  |  |    Transforms the option name *option* as found in an input file or as passed in
 | 
					
						
							|  |  |  |    by client code to the form that should be used in the internal structures.
 | 
					
						
							|  |  |  |    The default implementation returns a lower-case version of *option*;
 | 
					
						
							|  |  |  |    subclasses may override this or client code can set an attribute of this name
 | 
					
						
							|  |  |  |    on instances to affect this behavior.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    You don't necessarily need to subclass a ConfigParser to use this method, you
 | 
					
						
							|  |  |  |    can also re-set it on an instance, to a function that takes a string
 | 
					
						
							|  |  |  |    argument.  Setting it to ``str``, for example, would make option names case
 | 
					
						
							|  |  |  |    sensitive::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       cfgparser = ConfigParser()
 | 
					
						
							|  |  |  |       ...
 | 
					
						
							|  |  |  |       cfgparser.optionxform = str
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Note that when reading configuration files, whitespace around the
 | 
					
						
							|  |  |  |    option names are stripped before :meth:`optionxform` is called.
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-17 15:07:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-09 12:52:45 +00:00
										 |  |  | .. method:: RawConfigParser.readfp(fp, filename=None)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    .. deprecated:: 3.2
 | 
					
						
							|  |  |  |       Please use :meth:`read_file` instead.
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-17 15:07:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | .. _configparser-objects:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ConfigParser Objects
 | 
					
						
							|  |  |  | --------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The :class:`ConfigParser` class extends some methods of the
 | 
					
						
							| 
									
										
										
										
											2010-07-28 13:13:46 +00:00
										 |  |  | :class:`RawConfigParser` interface, adding some optional arguments. Whenever you
 | 
					
						
							|  |  |  | can, consider using :class:`SafeConfigParser` which adds validation and escaping
 | 
					
						
							|  |  |  | for the interpolation.
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-04 04:35:34 +00:00
										 |  |  | .. method:: ConfigParser.get(section, option, raw=False, [vars, default])
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-29 14:17:12 +00:00
										 |  |  |    Get an *option* value for the named *section*.  If *vars* is provided, it
 | 
					
						
							|  |  |  |    must be a dictionary.  The *option* is looked up in *vars* (if provided),
 | 
					
						
							| 
									
										
										
										
											2010-09-04 04:35:34 +00:00
										 |  |  |    *section*, and in *DEFAULTSECT* in that order. If the key is not found and
 | 
					
						
							|  |  |  |    *default* is provided, it is used as a fallback value. ``None`` can be
 | 
					
						
							|  |  |  |    provided as a *default* value.
 | 
					
						
							| 
									
										
										
										
											2010-07-29 14:17:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    All the ``'%'`` interpolations are expanded in the return values, unless the
 | 
					
						
							|  |  |  |    *raw* argument is true.  Values for interpolation keys are looked up in the
 | 
					
						
							|  |  |  |    same manner as the option.
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-04 04:35:34 +00:00
										 |  |  | .. method:: ConfigParser.getint(section, option, raw=False, [vars, default])
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    A convenience method which coerces the *option* in the specified *section* to
 | 
					
						
							|  |  |  |    an integer. See :meth:`get` for explanation of *raw*, *vars* and *default*.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. method:: ConfigParser.getfloat(section, option, raw=False, [vars, default])
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    A convenience method which coerces the *option* in the specified *section* to
 | 
					
						
							|  |  |  |    a floating point number. See :meth:`get` for explanation of *raw*, *vars*
 | 
					
						
							|  |  |  |    and *default*.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. method:: ConfigParser.getboolean(section, option, raw=False, [vars, default])
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    A convenience method which coerces the *option* in the specified *section*
 | 
					
						
							|  |  |  |    to a Boolean value.  Note that the accepted values for the option are
 | 
					
						
							|  |  |  |    ``"1"``, ``"yes"``, ``"true"``, and ``"on"``, which cause this method to
 | 
					
						
							|  |  |  |    return ``True``, and ``"0"``, ``"no"``, ``"false"``, and ``"off"``, which
 | 
					
						
							|  |  |  |    cause it to return ``False``.  These string values are checked in
 | 
					
						
							|  |  |  |    a case-insensitive manner.  Any other value will cause it to raise
 | 
					
						
							|  |  |  |    :exc:`ValueError`. See :meth:`get` for explanation of *raw*, *vars* and
 | 
					
						
							|  |  |  |    *default*.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-10 09:03:43 +00:00
										 |  |  | .. method:: ConfigParser.items(section, raw=False, vars=None)
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-28 13:13:46 +00:00
										 |  |  |    Return a list of ``(name, value)`` pairs for each option in the given
 | 
					
						
							|  |  |  |    *section*.  Optional arguments have the same meaning as for the :meth:`get`
 | 
					
						
							|  |  |  |    method.
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. _safeconfigparser-objects:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SafeConfigParser Objects
 | 
					
						
							|  |  |  | ------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The :class:`SafeConfigParser` class implements the same extended interface as
 | 
					
						
							|  |  |  | :class:`ConfigParser`, with the following addition:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. method:: SafeConfigParser.set(section, option, value)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    If the given section exists, set the given option to the specified value;
 | 
					
						
							| 
									
										
										
										
											2008-02-01 11:56:49 +00:00
										 |  |  |    otherwise raise :exc:`NoSectionError`.  *value* must be a string; if it is
 | 
					
						
							|  |  |  |    not, :exc:`TypeError` is raised.
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-29 18:43:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Examples
 | 
					
						
							|  |  |  | --------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | An example of writing to a configuration file::
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-14 22:59:42 +00:00
										 |  |  |    import configparser
 | 
					
						
							| 
									
										
										
										
											2007-11-29 18:43:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-14 22:59:42 +00:00
										 |  |  |    config = configparser.RawConfigParser()
 | 
					
						
							| 
									
										
										
										
											2009-01-03 21:18:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-29 18:43:05 +00:00
										 |  |  |    # When adding sections or items, add them in the reverse order of
 | 
					
						
							|  |  |  |    # how you want them to be displayed in the actual file.
 | 
					
						
							|  |  |  |    # In addition, please note that using RawConfigParser's and the raw
 | 
					
						
							|  |  |  |    # mode of ConfigParser's respective set functions, you can assign
 | 
					
						
							|  |  |  |    # non-string values to keys internally, but will receive an error
 | 
					
						
							|  |  |  |    # when attempting to write to a file or when you get it in non-raw
 | 
					
						
							|  |  |  |    # mode. SafeConfigParser does not allow such assignments to take place.
 | 
					
						
							|  |  |  |    config.add_section('Section1')
 | 
					
						
							|  |  |  |    config.set('Section1', 'int', '15')
 | 
					
						
							|  |  |  |    config.set('Section1', 'bool', 'true')
 | 
					
						
							|  |  |  |    config.set('Section1', 'float', '3.1415')
 | 
					
						
							|  |  |  |    config.set('Section1', 'baz', 'fun')
 | 
					
						
							|  |  |  |    config.set('Section1', 'bar', 'Python')
 | 
					
						
							|  |  |  |    config.set('Section1', 'foo', '%(bar)s is %(baz)s!')
 | 
					
						
							| 
									
										
										
										
											2009-01-03 21:18:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-29 18:43:05 +00:00
										 |  |  |    # Writing our configuration file to 'example.cfg'
 | 
					
						
							| 
									
										
										
										
											2009-09-22 13:53:14 +00:00
										 |  |  |    with open('example.cfg', 'w') as configfile:
 | 
					
						
							| 
									
										
										
										
											2007-11-29 18:43:05 +00:00
										 |  |  |        config.write(configfile)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | An example of reading the configuration file again::
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-14 22:59:42 +00:00
										 |  |  |    import configparser
 | 
					
						
							| 
									
										
										
										
											2007-11-29 18:43:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-14 22:59:42 +00:00
										 |  |  |    config = configparser.RawConfigParser()
 | 
					
						
							| 
									
										
										
										
											2007-11-29 18:43:05 +00:00
										 |  |  |    config.read('example.cfg')
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    # getfloat() raises an exception if the value is not a float
 | 
					
						
							|  |  |  |    # getint() and getboolean() also do this for their respective types
 | 
					
						
							|  |  |  |    float = config.getfloat('Section1', 'float')
 | 
					
						
							|  |  |  |    int = config.getint('Section1', 'int')
 | 
					
						
							| 
									
										
										
										
											2008-02-01 11:56:49 +00:00
										 |  |  |    print(float + int)
 | 
					
						
							| 
									
										
										
										
											2007-11-29 18:43:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    # Notice that the next output does not interpolate '%(bar)s' or '%(baz)s'.
 | 
					
						
							|  |  |  |    # This is because we are using a RawConfigParser().
 | 
					
						
							|  |  |  |    if config.getboolean('Section1', 'bool'):
 | 
					
						
							| 
									
										
										
										
											2008-02-01 11:56:49 +00:00
										 |  |  |        print(config.get('Section1', 'foo'))
 | 
					
						
							| 
									
										
										
										
											2007-11-29 18:43:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | To get interpolation, you will need to use a :class:`ConfigParser` or
 | 
					
						
							|  |  |  | :class:`SafeConfigParser`::
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-14 22:59:42 +00:00
										 |  |  |    import configparser
 | 
					
						
							| 
									
										
										
										
											2007-11-29 18:43:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-14 22:59:42 +00:00
										 |  |  |    config = configparser.ConfigParser()
 | 
					
						
							| 
									
										
										
										
											2007-11-29 18:43:05 +00:00
										 |  |  |    config.read('example.cfg')
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    # Set the third, optional argument of get to 1 if you wish to use raw mode.
 | 
					
						
							| 
									
										
										
										
											2008-02-01 11:56:49 +00:00
										 |  |  |    print(config.get('Section1', 'foo', 0)) # -> "Python is fun!"
 | 
					
						
							|  |  |  |    print(config.get('Section1', 'foo', 1)) # -> "%(bar)s is %(baz)s!"
 | 
					
						
							| 
									
										
										
										
											2007-11-29 18:43:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    # The optional fourth argument is a dict with members that will take
 | 
					
						
							|  |  |  |    # precedence in interpolation.
 | 
					
						
							| 
									
										
										
										
											2008-02-01 11:56:49 +00:00
										 |  |  |    print(config.get('Section1', 'foo', 0, {'bar': 'Documentation',
 | 
					
						
							|  |  |  |                                            'baz': 'evil'}))
 | 
					
						
							| 
									
										
										
										
											2007-11-29 18:43:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-03 21:18:54 +00:00
										 |  |  | Defaults are available in all three types of ConfigParsers. They are used in
 | 
					
						
							| 
									
										
										
										
											2007-11-29 18:43:05 +00:00
										 |  |  | interpolation if an option used is not defined elsewhere. ::
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-14 22:59:42 +00:00
										 |  |  |    import configparser
 | 
					
						
							| 
									
										
										
										
											2007-11-29 18:43:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    # New instance with 'bar' and 'baz' defaulting to 'Life' and 'hard' each
 | 
					
						
							| 
									
										
										
										
											2008-05-14 22:59:42 +00:00
										 |  |  |    config = configparser.SafeConfigParser({'bar': 'Life', 'baz': 'hard'})
 | 
					
						
							| 
									
										
										
										
											2007-11-29 18:43:05 +00:00
										 |  |  |    config.read('example.cfg')
 | 
					
						
							| 
									
										
										
										
											2009-01-03 21:18:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-01 11:56:49 +00:00
										 |  |  |    print(config.get('Section1', 'foo')) # -> "Python is fun!"
 | 
					
						
							| 
									
										
										
										
											2007-11-29 18:43:05 +00:00
										 |  |  |    config.remove_option('Section1', 'bar')
 | 
					
						
							|  |  |  |    config.remove_option('Section1', 'baz')
 | 
					
						
							| 
									
										
										
										
											2008-02-01 11:56:49 +00:00
										 |  |  |    print(config.get('Section1', 'foo')) # -> "Life is hard!"
 | 
					
						
							| 
									
										
										
										
											2007-11-29 18:43:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | The function ``opt_move`` below can be used to move options between sections::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    def opt_move(config, section1, section2, option):
 | 
					
						
							|  |  |  |        try:
 | 
					
						
							|  |  |  |            config.set(section2, option, config.get(section1, option, 1))
 | 
					
						
							| 
									
										
										
										
											2008-05-14 22:59:42 +00:00
										 |  |  |        except configparser.NoSectionError:
 | 
					
						
							| 
									
										
										
										
											2007-11-29 18:43:05 +00:00
										 |  |  |            # Create non-existent section
 | 
					
						
							|  |  |  |            config.add_section(section2)
 | 
					
						
							|  |  |  |            opt_move(config, section1, section2, option)
 | 
					
						
							| 
									
										
											  
											
												Merged revisions 60151-60159,60161-60168,60170,60172-60173,60175 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
  r60151 | christian.heimes | 2008-01-21 14:11:15 +0100 (Mon, 21 Jan 2008) | 1 line
  A bunch of header files were not listed as dependencies for object files. Changes to files like Parser/parser.h weren't picked up by make.
........
  r60152 | georg.brandl | 2008-01-21 15:16:46 +0100 (Mon, 21 Jan 2008) | 3 lines
  #1087741: make mmap.mmap the type of mmap objects, not a
  factory function. Allow it to be subclassed.
........
  r60153 | georg.brandl | 2008-01-21 15:18:14 +0100 (Mon, 21 Jan 2008) | 2 lines
  mmap is an extension module.
........
  r60154 | georg.brandl | 2008-01-21 17:28:13 +0100 (Mon, 21 Jan 2008) | 2 lines
  Fix example.
........
  r60155 | georg.brandl | 2008-01-21 17:34:07 +0100 (Mon, 21 Jan 2008) | 2 lines
  #1555501: document plistlib and move it to the general library.
........
  r60156 | georg.brandl | 2008-01-21 17:36:00 +0100 (Mon, 21 Jan 2008) | 2 lines
  Add a stub for bundlebuilder documentation.
........
  r60157 | georg.brandl | 2008-01-21 17:46:58 +0100 (Mon, 21 Jan 2008) | 2 lines
  Removing bundlebuilder docs again -- it's not to be used anymore (see #779825).
........
  r60158 | georg.brandl | 2008-01-21 17:51:51 +0100 (Mon, 21 Jan 2008) | 2 lines
  #997912: acknowledge nested scopes in tutorial.
........
  r60159 | vinay.sajip | 2008-01-21 18:02:26 +0100 (Mon, 21 Jan 2008) | 1 line
  Fix: #1836: Off-by-one bug in TimedRotatingFileHandler rollover calculation. Patch thanks to Kathryn M. Kowalski.
........
  r60161 | georg.brandl | 2008-01-21 18:13:03 +0100 (Mon, 21 Jan 2008) | 2 lines
  Adapt pydoc to new doc URLs.
........
  r60162 | georg.brandl | 2008-01-21 18:17:00 +0100 (Mon, 21 Jan 2008) | 2 lines
  Fix old link.
........
  r60163 | georg.brandl | 2008-01-21 18:22:06 +0100 (Mon, 21 Jan 2008) | 2 lines
  #1726198: replace while 1: fp.readline() with file iteration.
........
  r60164 | georg.brandl | 2008-01-21 18:29:23 +0100 (Mon, 21 Jan 2008) | 2 lines
  Clarify $ behavior in re docstring. #1631394.
........
  r60165 | vinay.sajip | 2008-01-21 18:39:22 +0100 (Mon, 21 Jan 2008) | 1 line
  Minor documentation change - hyperlink tidied up.
........
  r60166 | georg.brandl | 2008-01-21 18:42:40 +0100 (Mon, 21 Jan 2008) | 2 lines
  #1530959: change distutils build dir for --with-pydebug python builds.
........
  r60167 | vinay.sajip | 2008-01-21 19:16:05 +0100 (Mon, 21 Jan 2008) | 1 line
  Updated to include news on recent logging fixes and documentation changes.
........
  r60168 | georg.brandl | 2008-01-21 19:35:49 +0100 (Mon, 21 Jan 2008) | 3 lines
  Issue #1882: when compiling code from a string, encoding cookies in the
  second line of code were not always recognized correctly.
........
  r60170 | georg.brandl | 2008-01-21 19:36:51 +0100 (Mon, 21 Jan 2008) | 2 lines
  Add NEWS entry for #1882.
........
  r60172 | georg.brandl | 2008-01-21 19:41:24 +0100 (Mon, 21 Jan 2008) | 2 lines
  Use original location of document, which has translations.
........
  r60173 | walter.doerwald | 2008-01-21 21:18:04 +0100 (Mon, 21 Jan 2008) | 2 lines
  Follow PEP 8 in module docstring.
........
  r60175 | georg.brandl | 2008-01-21 21:20:53 +0100 (Mon, 21 Jan 2008) | 2 lines
  Adapt to latest doctools refactoring.
........
											
										 
											2008-01-21 20:36:10 +00:00
										 |  |  |        else:
 | 
					
						
							|  |  |  |            config.remove_option(section1, option)
 | 
					
						
							| 
									
										
										
										
											2010-02-19 06:08:41 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Some configuration files are known to include settings without values, but which
 | 
					
						
							|  |  |  | otherwise conform to the syntax supported by :mod:`configparser`.  The
 | 
					
						
							| 
									
										
										
										
											2010-07-28 13:13:46 +00:00
										 |  |  | *allow_no_value* parameter to the :meth:`__init__` method can be used to
 | 
					
						
							|  |  |  | indicate that such values should be accepted:
 | 
					
						
							| 
									
										
										
										
											2010-02-19 06:08:41 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | .. doctest::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    >>> import configparser
 | 
					
						
							|  |  |  |    >>> import io
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    >>> sample_config = """
 | 
					
						
							|  |  |  |    ... [mysqld]
 | 
					
						
							| 
									
										
										
										
											2010-07-28 13:13:46 +00:00
										 |  |  |    ...   user = mysql
 | 
					
						
							|  |  |  |    ...   pid-file = /var/run/mysqld/mysqld.pid
 | 
					
						
							|  |  |  |    ...   skip-external-locking
 | 
					
						
							|  |  |  |    ...   old_passwords = 1
 | 
					
						
							|  |  |  |    ...   skip-bdb
 | 
					
						
							|  |  |  |    ...   skip-innodb # we don't need ACID today
 | 
					
						
							| 
									
										
										
										
											2010-02-19 06:08:41 +00:00
										 |  |  |    ... """
 | 
					
						
							|  |  |  |    >>> config = configparser.RawConfigParser(allow_no_value=True)
 | 
					
						
							| 
									
										
										
										
											2010-08-15 20:21:26 +00:00
										 |  |  |    >>> config.read_file(io.BytesIO(sample_config))
 | 
					
						
							| 
									
										
										
										
											2010-02-19 06:08:41 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    >>> # Settings with values are treated as before:
 | 
					
						
							|  |  |  |    >>> config.get("mysqld", "user")
 | 
					
						
							|  |  |  |    'mysql'
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    >>> # Settings without values provide None:
 | 
					
						
							|  |  |  |    >>> config.get("mysqld", "skip-bdb")
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    >>> # Settings which aren't specified still raise an error:
 | 
					
						
							|  |  |  |    >>> config.get("mysqld", "does-not-exist")
 | 
					
						
							|  |  |  |    Traceback (most recent call last):
 | 
					
						
							|  |  |  |      ...
 | 
					
						
							|  |  |  |    configparser.NoOptionError: No option 'does-not-exist' in section: 'mysqld'
 |