summaryrefslogtreecommitdiff
path: root/Lib/json
Commit message (Expand)AuthorAgeFilesLines
* Fixed the documentation of parse_constant argument in json.load().Serhiy Storchaka2016-11-123-15/+51
|\
| * 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 #18726: All optional parameters of the dump(), dumps(),Serhiy Storchaka2016-06-223-6/+6
| * | Issue #26623: TypeError message for JSON unserializible object now containsSerhiy Storchaka2016-04-101-1/+2
* | | Fixed the documentation of parse_constant argument in json.load().Serhiy Storchaka2016-11-121-1/+1
| |/ |/|
* | Issue #4945: Improved the documenting of boolean arguments in the json module.Serhiy Storchaka2016-06-301-2/+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-211-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-211-0/+2
* | #19307: Improve error message for json.load(s) while passing objects of the w...Ezio Melotti2013-10-211-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
* | Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-133-4/+4
* | Merge #16057: Clarify why the base method default is called in custom encoders.R David Murray2013-03-175-53/+36
|\ \ | |/ |/|
| * #17368: merge with 3.3.Ezio Melotti2013-03-131-1/+1
| |\
| * \ Issue #17225: JSON decoder now counts columns in the first line startingSerhiy Storchaka2013-02-213-3/+3
| |\ \
| * | | #16009: JSON error messages now provide more information. Patch by Serhiy St...Ezio Melotti2013-01-032-9/+9
| * | | #16549: merge with 3.3.Ezio Melotti2012-11-291-9/+11
| |\ \ \
| * | | | Cleanup json decoder: float() has builtin support of nan, +inf, -inf since Py...Victor Stinner2012-11-291-11/+3
| * | | | #16333: fix example in docstring.Ezio Melotti2012-11-291-2/+1
| * | | | #16333: use (",", ": ") as default separator when indent is specified to avoi...Ezio Melotti2012-11-292-9/+14
| * | | | Merge issue #14570: Document json sort_keys parameter properly.Andrew Svetlov2012-10-281-6/+12
| |\ \ \ \
| * | | | | more yield fromPhilip Jenvey2012-10-011-10/+5
* | | | | | Merge #16057: Clarify why the base method default is called in custom encoders.R David Murray2013-03-171-0/+1
|\ \ \ \ \ \ | |_|_|_|_|/ |/| | | | |
| * | | | | #16057: Clarify why the base method default is called in custom encoders.R David Murray2013-03-171-0/+1
* | | | | | #17368: merge with 3.2.Ezio Melotti2013-03-131-2/+1
|\ \ \ \ \ \ | |/ / / / / |/| | | | / | | |_|_|/ | |/| | |
| * | | | Issue #17225: JSON decoder now counts columns in the first line startingSerhiy Storchaka2013-02-213-3/+3
| |\ \ \ \
| * \ \ \ \ #16476: merge with 3.2.Ezio Melotti2012-11-291-2/+1
| |\ \ \ \ \ | | | |_|_|/ | | |/| | |
| | * | | | #16549: merge with 3.2.Ezio Melotti2012-11-291-9/+11
| | |\ \ \ \
| | * \ \ \ \ #16333: merge with 3.2.Ezio Melotti2012-11-292-5/+12
| | |\ \ \ \ \ | | | |_|_|_|/ | | |/| | | |
| | * | | | | Merge issue #14570: Document json sort_keys parameter properly.Andrew Svetlov2012-10-281-6/+12
| | |\ \ \ \ \ | | | |_|_|_|/ | | |/| | | |
| | * | | | | Issue #5067: improve some json error messages.Antoine Pitrou2012-06-293-7/+9
| | |\ \ \ \ \
| | * \ \ \ \ \ #14875: merge with 3.2.Ezio Melotti2012-05-211-2/+1
| | |\ \ \ \ \ \
| | * \ \ \ \ \ \ Merge 3.2: Issue #13703 plus some related test suite fixes.Georg Brandl2012-02-211-2/+1
| | |\ \ \ \ \ \ \
| | | * | | | | | | Implement PEP 393.Martin v. Löwis2011-09-281-2/+1
* | | | | | | | | | #17368: Fix an off-by-one error in the Python JSON decoder that caused a fail...Ezio Melotti2013-03-131-1/+1
| |_|_|_|_|_|_|_|/ |/| | | | | | | |
* | | | | | | | | Issue #17225: JSON decoder now counts columns in the first line startingSerhiy Storchaka2013-02-213-3/+3
|/ / / / / / / /
* | | | | | | | #16476: Fix json.tool to avoid including trailing whitespace.Ezio Melotti2012-11-291-1/+2
| |_|_|_|_|_|/ |/| | | | | |
* | | | | | | #16549: Make json.tool work again on Python 3 and add tests. Initial patch b...Ezio Melotti2012-11-291-9/+11
| |_|_|_|_|/ |/| | | | |