diff options
author | Georg Brandl <georg@python.org> | 2007-09-01 13:51:09 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-09-01 13:51:09 (GMT) |
commit | 55ac8f0f26efdbbcb5cc197f9369d23d50bee908 (patch) | |
tree | a0d5b7128c055d8c767652dc3948c3404be06396 /Doc/library/configparser.rst | |
parent | 1617457cff847fed9fadb01f1acf6ba8bb621726 (diff) | |
download | cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.zip cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.gz cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.bz2 |
Get rid of the remaining versionadded/versionchanged directives.
Diffstat (limited to 'Doc/library/configparser.rst')
-rw-r--r-- | Doc/library/configparser.rst | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/Doc/library/configparser.rst b/Doc/library/configparser.rst index dd91d59..b4c89e8 100644 --- a/Doc/library/configparser.rst +++ b/Doc/library/configparser.rst @@ -63,11 +63,6 @@ write-back, as will be the keys within each section. options within a section, and for the default values. This class does not support the magical interpolation behavior. - .. versionadded:: 2.3 - - .. versionchanged:: 2.6 - *dict_type* was added. - .. class:: ConfigParser([defaults]) @@ -94,8 +89,6 @@ write-back, as will be the keys within each section. .. % XXX Need to explain what's safer/more predictable about it. - .. versionadded:: 2.3 - .. exception:: NoSectionError @@ -131,16 +124,12 @@ write-back, as will be the keys within each section. Exception raised when an option referenced from a value does not exist. Subclass of :exc:`InterpolationError`. - .. versionadded:: 2.3 - .. exception:: InterpolationSyntaxError Exception raised when the source text into which substitutions are made does not conform to the required syntax. Subclass of :exc:`InterpolationError`. - .. versionadded:: 2.3 - .. exception:: MissingSectionHeaderError @@ -206,8 +195,6 @@ RawConfigParser Objects If the given section exists, and contains the given option, return :const:`True`; otherwise return :const:`False`. - .. versionadded:: 1.6 - .. method:: RawConfigParser.read(filenames) @@ -229,9 +216,6 @@ RawConfigParser Objects config.readfp(open('defaults.cfg')) config.read(['site.cfg', os.path.expanduser('~/.myapp.cfg')]) - .. versionchanged:: 2.4 - Returns list of successfully parsed filenames. - .. method:: RawConfigParser.readfp(fp[, filename]) @@ -281,16 +265,12 @@ RawConfigParser Objects true) for *internal* storage of non-string values, full functionality (including interpolation and output to files) can only be achieved using string values. - .. versionadded:: 1.6 - .. method:: RawConfigParser.write(fileobject) Write a representation of the configuration to the specified file object. This representation can be parsed by a future :meth:`read` call. - .. versionadded:: 1.6 - .. method:: RawConfigParser.remove_option(section, option) @@ -298,8 +278,6 @@ RawConfigParser Objects not exist, raise :exc:`NoSectionError`. If the option existed to be removed, return :const:`True`; otherwise return :const:`False`. - .. versionadded:: 1.6 - .. method:: RawConfigParser.remove_section(section) @@ -339,8 +317,6 @@ The :class:`ConfigParser` class extends some methods of the 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. - .. versionadded:: 2.3 - .. _safeconfigparser-objects: @@ -357,5 +333,3 @@ The :class:`SafeConfigParser` class implements the same extended interface as otherwise raise :exc:`NoSectionError`. *value* must be a string (:class:`str` or :class:`unicode`); if not, :exc:`TypeError` is raised. - .. versionadded:: 2.4 - |