diff options
author | Philipp A <flying-sheep@web.de> | 2022-10-26 14:06:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-26 14:06:20 (GMT) |
commit | 5e74bad93ccc681f0d407aaa3a6830a2d54a20a2 (patch) | |
tree | 9079fbaac50d7880a911557ba45c4c36c7afd0f1 /Doc/library/configparser.rst | |
parent | 9495360c7256938a6185838561cf416599b7e94f (diff) | |
download | cpython-5e74bad93ccc681f0d407aaa3a6830a2d54a20a2.zip cpython-5e74bad93ccc681f0d407aaa3a6830a2d54a20a2.tar.gz cpython-5e74bad93ccc681f0d407aaa3a6830a2d54a20a2.tar.bz2 |
gh-98644: point people to tomllib from configparser’s docs (#98645)
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
Diffstat (limited to 'Doc/library/configparser.rst')
-rw-r--r-- | Doc/library/configparser.rst | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Doc/library/configparser.rst b/Doc/library/configparser.rst index bf49f2b..a925a3d 100644 --- a/Doc/library/configparser.rst +++ b/Doc/library/configparser.rst @@ -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:: |