summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_json/test_dump.py
Commit message (Collapse)AuthorAgeFilesLines
* [3.13] gh-131884: Fix incorrect formatting in json.dumps() when using indent ↵Serhiy Storchaka2025-06-051-0/+8
| | | | | | | and skipkeys=True (GH-132200) (GH-135061) (cherry picked from commit ec12559ebafca01ded22c9013de64abe535c838d) Co-authored-by: Roei Ben Artzi <155478676+roeibenartzi@users.noreply.github.com>
* bpo-37805: Add tests for json.dump(..., skipkeys=True) (GH-15489)Dong-hee Na2019-08-261-0/+10
| | | | | | | https://bugs.python.org/issue37805 Automerge-Triggered-By: @methane
* just sort the items tuple directly (closes #24094)Benjamin Peterson2015-05-031-0/+19
|
* #18273: move the tests in Lib/test/json_tests to Lib/test/test_json and make ↵Ezio Melotti2013-08-081-0/+49
them discoverable by unittest. Patch by Zachary Ware.