diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-14 22:51:10 (GMT) |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-14 22:51:10 (GMT) |
commit | c92fef9a3ee7481596a18eaff3e12270f4355e2f (patch) | |
tree | 22dee9744b3ca5d20dad8ce4742f72ae796bea83 /Doc/library/configparser.rst | |
parent | e2514c6f1089ab1cdfba6ddc1dbaed1d37dd2be8 (diff) | |
download | cpython-c92fef9a3ee7481596a18eaff3e12270f4355e2f.zip cpython-c92fef9a3ee7481596a18eaff3e12270f4355e2f.tar.gz cpython-c92fef9a3ee7481596a18eaff3e12270f4355e2f.tar.bz2 |
Added documentation stub for ConfigParser.
Diffstat (limited to 'Doc/library/configparser.rst')
-rw-r--r-- | Doc/library/configparser.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/library/configparser.rst b/Doc/library/configparser.rst index fe811de..6a4e049 100644 --- a/Doc/library/configparser.rst +++ b/Doc/library/configparser.rst @@ -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@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 pair: configuration; file |