From: ryan-duve Date: Tue, 19 Dec 2023 10:29:55 +0000 (-0500) Subject: gh-113234: tomllib docs: reorder conversion table & add remaining types (GH-113236) X-Git-Tag: v3.13.0a3~329 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=76d757b38b414964546393bdccff31c1f8be3843;p=thirdparty%2FPython%2Fcpython.git gh-113234: tomllib docs: reorder conversion table & add remaining types (GH-113236) --- diff --git a/Doc/library/tomllib.rst b/Doc/library/tomllib.rst index 918576eb37ea..f9e2dfeb13dc 100644 --- a/Doc/library/tomllib.rst +++ b/Doc/library/tomllib.rst @@ -95,7 +95,7 @@ Conversion Table +------------------+--------------------------------------------------------------------------------------+ | TOML | Python | +==================+======================================================================================+ -| table | dict | +| TOML document | dict | +------------------+--------------------------------------------------------------------------------------+ | string | str | +------------------+--------------------------------------------------------------------------------------+ @@ -115,3 +115,9 @@ Conversion Table +------------------+--------------------------------------------------------------------------------------+ | array | list | +------------------+--------------------------------------------------------------------------------------+ +| table | dict | ++------------------+--------------------------------------------------------------------------------------+ +| inline table | dict | ++------------------+--------------------------------------------------------------------------------------+ +| array of tables | list of dicts | ++------------------+--------------------------------------------------------------------------------------+