summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPieter Eendebak <pieter.eendebak@gmail.com>2024-05-06 08:04:39 (GMT)
committerGitHub <noreply@github.com>2024-05-06 08:04:39 (GMT)
commit05adfbba2abafcdd271bf144a7b3f80bcd927288 (patch)
treea52b118653d204eb15630e4aba5e4c2daa035a7d /Misc
parent7758be431807d574e0f1bbab003796585ae46719 (diff)
downloadcpython-05adfbba2abafcdd271bf144a7b3f80bcd927288.zip
cpython-05adfbba2abafcdd271bf144a7b3f80bcd927288.tar.gz
cpython-05adfbba2abafcdd271bf144a7b3f80bcd927288.tar.bz2
gh-95382: Improve performance of json encoder with indent (GH-118105)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2024-05-03-18-01-26.gh-issue-95382.73FSEv.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2024-05-03-18-01-26.gh-issue-95382.73FSEv.rst b/Misc/NEWS.d/next/Core and Builtins/2024-05-03-18-01-26.gh-issue-95382.73FSEv.rst
new file mode 100644
index 0000000..097a663
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2024-05-03-18-01-26.gh-issue-95382.73FSEv.rst
@@ -0,0 +1,2 @@
+Improve performance of :func:`json.dumps` and :func:`json.dump` when using the argument *indent*. Depending on the data the encoding using
+:func:`json.dumps` with *indent* can be up to 2 to 3 times faster.