Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
0a11f96f
Commit
0a11f96f
authored
May 14, 2008
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update configparser docs for lowercasing rename.
parent
e3a23c07
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
8 deletions
+14
-8
Doc/library/configparser.rst
Doc/library/configparser.rst
+7
-1
Doc/library/logging.rst
Doc/library/logging.rst
+6
-6
Doc/library/shlex.rst
Doc/library/shlex.rst
+1
-1
No files found.
Doc/library/configparser.rst
View file @
0a11f96f
:mod:`ConfigParser` --- Configuration file parser
:mod:`ConfigParser` --- Configuration file parser
=================================================
=================================================
.. module:: ConfigParser
.. module:: ConfigParser
:synopsis: Old name for the configparser module.
.. module:: configparser
:synopsis: Configuration file parser.
:synopsis: Configuration file parser.
.. moduleauthor:: Ken Manheimer <klm@zope.com>
.. moduleauthor:: Ken Manheimer <klm@zope.com>
.. moduleauthor:: Barry Warsaw <bwarsaw@python.org>
.. moduleauthor:: Barry Warsaw <bwarsaw@python.org>
.. moduleauthor:: Eric S. Raymond <esr@thyrsus.com>
.. moduleauthor:: Eric S. Raymond <esr@thyrsus.com>
.. sectionauthor:: Christopher G. Petrilli <petrilli@amber.org>
.. 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::
.. index::
pair: .ini; file
pair: .ini; file
...
...
Doc/library/logging.rst
View file @
0a11f96f
...
@@ -2240,12 +2240,12 @@ in :mod:`logging` itself) and defining handlers which are declared either in
...
@@ -2240,12 +2240,12 @@ in :mod:`logging` itself) and defining handlers which are declared either in
.. function:: fileConfig(fname[, defaults])
.. function:: fileConfig(fname[, defaults])
Reads the logging configuration from a
ConfigParser-format file named *fname*.
Reads the logging configuration from a
:mod:`configparser`\-format file named
This function can be called several times from an application, allowing an end
*fname*. This function can be called several times from an application,
user the ability to select from various pre-canned configurations (if the
allowing an end user the ability to select from various pre-canned
developer provides a mechanism to present the choices and load the chosen
configurations (if the developer provides a mechanism to present the choices
configuration). Defaults to be passed to ConfigParser can be specified in the
and load the chosen configuration). Defaults to be passed to the ConfigParser
*defaults* argument.
can be specified in the
*defaults* argument.
.. function:: listen([port])
.. function:: listen([port])
...
...
Doc/library/shlex.rst
View file @
0a11f96f
...
@@ -63,7 +63,7 @@ The :mod:`shlex` module defines the following class:
...
@@ -63,7 +63,7 @@ The :mod:`shlex` module defines the following class:
.. seealso::
.. seealso::
Module :mod:`
ConfigP
arser`
Module :mod:`
configp
arser`
Parser for configuration files similar to the Windows :file:`.ini` files.
Parser for configuration files similar to the Windows :file:`.ini` files.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment