[Python-checkins] r63249 - python/trunk/Doc/library/configparser.rst

alexandre.vassalotti python-checkins at python.org
Thu May 15 00:51:10 CEST 2008


Author: alexandre.vassalotti
Date: Thu May 15 00:51:10 2008
New Revision: 63249

Log:
Added documentation stub for ConfigParser.


Modified:
   python/trunk/Doc/library/configparser.rst

Modified: python/trunk/Doc/library/configparser.rst
==============================================================================
--- python/trunk/Doc/library/configparser.rst	(original)
+++ python/trunk/Doc/library/configparser.rst	Thu May 15 00:51:10 2008
@@ -1,6 +1,9 @@
 :mod:`configparser` --- Configuration file parser
 =================================================
 
+.. module:: ConfigParser
+   :synopsis: Old name for the configparser module.
+
 .. module:: configparser
    :synopsis: Configuration file parser.
 
@@ -9,6 +12,11 @@
 .. moduleauthor:: Eric S. Raymond <esr at thyrsus.com>
 .. sectionauthor:: Christopher G. Petrilli <petrilli at amber.org>
 
+.. note::
+   The :mod:`ConfigParser` module has been renamed to :mod:`configparser` in
+   Python 3.0.  It is importable under both names in Python 2.6 and the rest of
+   the 2.x series.
+
 .. index::
    pair: .ini; file
    pair: configuration; file


More information about the Python-checkins mailing list