diff options
author | Georg Brandl <georg@python.org> | 2008-05-14 22:30:31 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-14 22:30:31 (GMT) |
commit | 0a11f96f673dc6f3a7d43d58c249e1d183b1891c (patch) | |
tree | 2f8735a04001cc6ab84865de1ff34a452c20ffa1 /Doc/library/configparser.rst | |
parent | e3a23c0734a8a6d4417e869c20e501771dab8a81 (diff) | |
download | cpython-0a11f96f673dc6f3a7d43d58c249e1d183b1891c.zip cpython-0a11f96f673dc6f3a7d43d58c249e1d183b1891c.tar.gz cpython-0a11f96f673dc6f3a7d43d58c249e1d183b1891c.tar.bz2 |
Update configparser docs for lowercasing rename.
Diffstat (limited to 'Doc/library/configparser.rst')
-rw-r--r-- | Doc/library/configparser.rst | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Doc/library/configparser.rst b/Doc/library/configparser.rst index 911f8dc..50373fc 100644 --- a/Doc/library/configparser.rst +++ b/Doc/library/configparser.rst @@ -1,14 +1,20 @@ - :mod:`ConfigParser` --- Configuration file parser ================================================= .. module:: ConfigParser + :synopsis: Old name for the configparser module. + +.. module:: configparser :synopsis: Configuration file parser. .. 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> +.. 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 |