From 728c01040bc60351e65ff7ad55ed40e86f7ab5ea Mon Sep 17 00:00:00 2001 From: Hypercube Date: Sun, 3 Dec 2023 00:00:00 +0000 Subject: [PATCH] Remove the note mentioning YAML --- index.rst | 7 ------- 1 file changed, 7 deletions(-) diff --git a/index.rst b/index.rst index f57d650..9959b09 100644 --- a/index.rst +++ b/index.rst @@ -148,13 +148,6 @@ Serializing multiple objects to JSON lines (newline-delimited JSON):: >>> ''.join(dumps_lines([{'count': 1}, {'count': 2}, {'count': 3}])) '{"count":1}\n{"count":2}\n{"count":3}\n' -.. note:: - - JSON is a subset of `YAML `_ 1.2. The JSON produced by - this module's default settings (in particular, the default *separators* - value) is also a subset of YAML 1.0 and 1.1. This module can thus also be - used as a YAML serializer. - Basic Usage -----------