8000 bpo-35954: Clarify string conversion in ConfigParser by remilapeyre · Pull Request #11918 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-35954: Clarify string conversion in ConfigParser #11918

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update Doc/library/configparser.rst
Co-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com>
  • Loading branch information
remilapeyre and iritkatriel authored May 2, 2024
commit 5a6a8f7fe348c3c53ae0826a4a7a430bc72b730e
2 changes: 1 addition & 1 deletion Doc/library/configparser.rst
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ provide equivalent :meth:`~ConfigParser.getint` and
:meth:`~ConfigParser.getfloat` methods. You can register your own
converters and customize the provided ones. [1]_

Section names will also be stored as strings and will need to be converted
Section names are also stored as strings and need to be converted
manually when reading a section:

.. doctest::
Expand Down
0