summaryrefslogtreecommitdiffstats
path: root/Lib/json
Commit message (Expand)AuthorAgeFilesLines
* gh-95382: Improve performance of json encoder with indent (GH-118105)Pieter Eendebak2024-05-061-7/+7
* doc: Use super() in subclassed JSONEncoder examples (GH-115565)Jan Max Meyer2024-02-281-1/+1
* gh-58032: Do not use argparse.FileType in module CLIs and scripts (GH-113649)Serhiy Storchaka2024-01-101-15/+19
* gh-113149: Improve error message when JSON has trailing comma (GH-113227)Carson Radtke2023-12-171-0/+7
* Revert "GH-96145: Add AttrDict to JSON module for use with object_hook (#9614...Łukasz Langa2023-06-261-51/+1
* gh-96959: Update HTTP links which are redirected to HTTPS (GH-96961)Serhiy Storchaka2022-09-243-3/+3
* GH-96145: Add AttrDict to JSON module for use with object_hook (#96146)Raymond Hettinger2022-08-231-1/+51
* bpo-46565: `del` loop vars that are leaking into module namespaces (GH-30993)Nikita Sobolev2022-02-031-0/+1
* bpo-46001: Change OverflowError to RecursionError in JSON library docstrings ...James Gerity2021-12-072-3/+3
* bpo-45644: Make json.tool read infile before writing to outfile (GH-29273)Chris Wesseling2021-11-061-7/+14
* bpo-39828: Fix json.tool to catch BrokenPipeError (GH-18779)Dong-hee Na2020-03-101-1/+4
* bpo-39377: json: Remove the encoding option. (GH-18075)Inada Naoki2020-01-201-11/+0
* bpo-29636: json.tool: Add document for indentation options. (GH-17482)Daniel Himmelstein2019-12-071-1/+2
* bpo-27413: json.tool: Add --no-ensure-ascii option. (GH-17472)wim glenn2019-12-061-0/+3
* bpo-33684: json.tool: Use utf-8 for infile and outfile. (GH-17460)Inada Naoki2019-12-041-2/+4
* bpo-29636: Add --(no-)indent arguments to json.tool (GH-345)Daniel Himmelstein2019-12-041-7/+23
* json.tool: use stdin and stdout in default cmdlne arguments (GH-11992)Hervé Beraud2019-05-141-4/+6
* bpo-36793: Remove unneeded __str__ definitions. (GH-13081)Serhiy Storchaka2019-05-061-2/+2
* bpo-33461: emit DeprecationWarning when json.loads(encoding=...) is used (GH-...Matthias Bussonnier2019-04-091-2/+11
* bpo-31553: add --json-lines option to json.tool (#10051)HongWeipeng2018-11-071-5/+11
* bpo-23493: json: Change sort_keys in Python encoder same to C (GH-8131)INADA Naoki2018-07-061-1/+1
* bpo-30877: Fix clearing a cache in the the JSON decoder. (GH-7048)Serhiy Storchaka2018-05-221-1/+1
* bpo-32360: Remove object_pairs_hook=OrderedDict examples (GH-5001)INADA Naoki2018-04-032-17/+7
* bpo-32360: Remove OrderedDict usage from json.tool (GH-5315)INADA Naoki2018-01-251-6/+1
* bpo-24641: Improved error message for JSON unserializible keys. (#4364)Serhiy Storchaka2017-11-252-6/+8
* Fix trivial typo in json module docstring (GH-2274)dong-jy2017-06-201-1/+1
* bpo-29762: More use "raise from None". (#569)Serhiy Storchaka2017-04-052-2/+3
* Fixed the documentation of parse_constant argument in json.load().Serhiy Storchaka2016-11-121-1/+1
|\
| * Fixed the documentation of parse_constant argument in json.load().Serhiy Storchaka2016-11-121-1/+1
* | Issue #28541: Improve test coverage for encoding detection in json library.Serhiy Storchaka2016-10-301-1/+2
* | Issue #17909: Accept binary input in json.loadsNick Coghlan2016-09-101-8/+42
* | Issue #4945: Improved the documenting of boolean arguments in the json module.Serhiy Storchaka2016-06-301-2/+2
|\ \ | |/
| * Issue #4945: Improved the documenting of boolean arguments in the json module.Serhiy Storchaka2016-06-301-2/+2
* | Issue #18726: All optional parameters of the dump(), dumps(),Serhiy Storchaka2016-06-213-6/+6
* | Issue #26623: TypeError message for JSON unserializible object now containsSerhiy Storchaka2016-04-101-1/+2
|/
* Issue #26719: More efficient formatting of ints and floats in json.Serhiy Storchaka2016-04-101-10/+10
* Issue #24540: merger from 3.4Ned Deily2015-07-051-1/+1
|\
| * Issue #24540: fix typo in json.dumps docstringNed Deily2015-07-051-1/+1
* | Issue #19361: JSON decoder now raises JSONDecodeError instead of ValueError.Serhiy Storchaka2015-01-262-48/+45
* | Issue #23206: Make ``json.dumps(..., ensure_ascii=False)`` as fast as the def...Antoine Pitrou2015-01-111-1/+8
* | Issue #21650: Add an `--sort-keys` option to json.tool CLI.Berker Peksag2014-11-101-2/+10
* | improve the command-line interface of json.tool (closes #21000)Benjamin Peterson2014-03-221-12/+15
|/
* Remove mentions of Python 2.x and being externally maintained fromGregory P. Smith2013-12-081-5/+2
|\
| * Remove mentions of Python 2.x and being externally maintained fromGregory P. Smith2013-12-081-5/+2
* | Issue #11489: JSON decoder now accepts lone surrogates.Serhiy Storchaka2013-11-261-18/+17
|\ \ | |/
| * Issue #11489: JSON decoder now accepts lone surrogates.Serhiy Storchaka2013-11-261-18/+17
* | #18958: Improve error message for json.load(s) while passing a string that st...Ezio Melotti2013-10-201-0/+2
* | #19307: Improve error message for json.load(s) while passing objects of the w...Ezio Melotti2013-10-201-0/+3
* | Close #18264: int- and float-derived enums now converted to int or float.Ethan Furman2013-08-101-8/+19
* | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-043-4/+4