]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-98644: point people to tomllib from configparser’s docs (GH-98645)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 26 Oct 2022 14:14:44 +0000 (07:14 -0700)
committerGitHub <noreply@github.com>
Wed, 26 Oct 2022 14:14:44 +0000 (07:14 -0700)
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
(cherry picked from commit 5e74bad93ccc681f0d407aaa3a6830a2d54a20a2)

Co-authored-by: Philipp A <flying-sheep@web.de>
Doc/library/configparser.rst

index 72aa20d73d8bd3b82950f19d48646ac7729634aa..bfd6a7f58b3e50e7d821ab4e8ee8ed7865679d9e 100644 (file)
@@ -33,13 +33,17 @@ can be customized by end users easily.
 
 .. seealso::
 
+   Module :mod:`tomllib`
+      TOML is a well-specified format for application configuration files.
+      It is specifically designed to be an improved version of INI.
+
    Module :mod:`shlex`
-      Support for creating Unix shell-like mini-languages which can be used as
-      an alternate format for application configuration files.
+      Support for creating Unix shell-like mini-languages which can also
+      be used for application configuration files.
 
    Module :mod:`json`
-      The json module implements a subset of JavaScript syntax which can also
-      be used for this purpose.
+      The ``json`` module implements a subset of JavaScript syntax which is
+      sometimes used for configuration, but does not support comments.
 
 
 .. testsetup::