summaryrefslogtreecommitdiff
path: root/CHANGELOG
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2021-12-21 12:57:04 -0500
committerLeonard Richardson <leonardr@segfault.org>2021-12-21 12:57:04 -0500
commit3ac8524a1263f170ae0a9096d255d3e28aa76340 (patch)
treee6aab155135f553f3043a425dcf8e61884091919 /CHANGELOG
parent792a9e485e1b110534345a4f96fd65099879421e (diff)
It's now possible to customize the way output is indented by
providing a value for the 'indent' argument to the Formatter constructor. The 'indent' argument works very similarly to the argument of the same name in the Python standard library's json.dump() method. [bug=1955497]
Diffstat (limited to 'CHANGELOG')
-rw-r--r--CHANGELOG6
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index d235cf4..8ac1f2a 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -11,6 +11,12 @@ Python 2 was revision 605.
to make it possible to treat ruby text specially in get_text() calls.
[bug=1941980]
+* It's now possible to customize the way output is indented by
+ providing a value for the 'indent' argument to the Formatter
+ constructor. The 'indent' argument works very similarly to the
+ argument of the same name in the Python standard library's
+ json.dump() method. [bug=1955497]
+
* If the charset-normalizer Python module
(https://pypi.org/project/charset-normalizer/) is installed, Beautiful
Soup will use it to detect the character sets of incoming documents.