diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-14 22:51:10 +0000 |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-14 22:51:10 +0000 |
commit | a79eaaf579ad15a7267dd75a362e1072d1437ba3 (patch) | |
tree | e93051754938ba5fe8c6b97ec4b2ca6f6b63c468 | |
parent | 4ba66ade1b8cea9aaefd1fbe1d7cb14cff0e1509 (diff) | |
download | cpython-a79eaaf579ad15a7267dd75a362e1072d1437ba3.tar.gz |
Added documentation stub for ConfigParser.
-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 fe811debbd..6a4e049f76 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 |