gh-98644: point people to tomllib from configparser’s docs (#98645)

Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
This commit is contained in:
Philipp A 2022-10-26 16:06:20 +02:00 committed by GitHub
parent 9495360c72
commit 5e74bad93c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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::