summaryrefslogtreecommitdiff
path: root/Doc/library/json.rst
Commit message (Expand)AuthorAgeFilesLines
* Issues #29189: Merge indentation fixes from 3.5Martin Panter2017-01-241-8/+26
|\
| * Issue #29281: Fill-in a missing versionchanged entryRaymond Hettinger2017-01-191-0/+5
| * Issue #28763: Use double hyphens (rendered as en-dashes) in numerical rangesSerhiy Storchaka2016-11-261-8/+21
| |\
| | * Fixed the documentation of parse_constant argument in json.load().Serhiy Storchaka2016-11-121-8/+21
| | |\
| | | * Issue #19795: Mark up None as literal text.Serhiy Storchaka2016-10-191-2/+3
| | | |\
| | | * | Issue #17909: Accept binary input in json.loadsNick Coghlan2016-09-101-2/+3
| | | * | Issue #4945: Improved the documenting of boolean arguments in the json module.Serhiy Storchaka2016-06-301-22/+26
| | | |\ \
| | | * \ \ Merge with 3.5Terry Jan Reedy2016-06-221-6/+18
| | | |\ \ \
| | | | * | | Issue #18726: All optional parameters of the dump(), dumps(),Serhiy Storchaka2016-06-221-6/+18
* | | | | | | Issue #29189: Fix indentation in RST markupMartin Panter2017-01-241-11/+11
|/ / / / / /
* | | | | | Issue #28763: Use double hyphens (rendered as en-dashes) in numerical rangesSerhiy Storchaka2016-11-261-1/+1
|/ / / / /
* | | | | Fixed the documentation of parse_constant argument in json.load().Serhiy Storchaka2016-11-121-2/+2
| |_|_|/ |/| | |
* | | | Issue #19795: Mark up None as literal text.Serhiy Storchaka2016-10-191-2/+3
| |_|/ |/| |
* | | Issue #4945: Improved the documenting of boolean arguments in the json module.Serhiy Storchaka2016-06-301-22/+26
|/ /
* | Issue #27304: Source code links for sub-packages in the same file.Terry Jan Reedy2016-06-221-1/+7
|/
* Issue #22558: Add remaining doc links to source code for Python-coded modules.Terry Jan Reedy2016-06-111-0/+5
* Issue #26736: Used HTTPS for external links in the documentation if possible.Serhiy Storchaka2016-05-071-1/+1
* Closes #25910: fix dead and permanently redirected links in the docs. Thanks ...Georg Brandl2016-02-261-1/+1
* Issue #25161: Merge full stops from 3.4 into 3.5Martin Panter2015-10-101-3/+100
|\
| * Issue #19361: JSON decoder now raises JSONDecodeError instead of ValueError.Serhiy Storchaka2015-01-261-3/+36
| * Issue #23181: More "codepoint" -> "code point".Serhiy Storchaka2015-01-181-1/+1
| |\
| * \ Issue #21514: The documentation of the json module now refers to new JSON RFCSerhiy Storchaka2014-11-271-0/+64
| |\ \
| | * | Issue #21650: Add an `--sort-keys` option to json.tool CLI.Berker Peksag2014-11-101-0/+11
| | * | merge with 3.4Georg Brandl2014-10-281-2/+2
| | |\ \
| | * \ \ merge with 3.4Georg Brandl2014-09-211-1/+1
| | |\ \ \
| | * | | | correct sphinx mark up for cmdline options (closes #21210)Benjamin Peterson2014-04-131-2/+4
| | * | | | improve the command-line interface of json.tool (closes #21000)Benjamin Peterson2014-03-211-0/+51
| | |/ / /
* | | | | Issue #25161: Add full stops in documentation; patch by Takase ArihiroMartin Panter2015-10-101-1/+1
| |_|_|/ |/| | |
* | | | Issue #23181: More "codepoint" -> "code point".Serhiy Storchaka2015-01-181-1/+1
|/ / /
* | | Issue #21514: The documentation of the json module now refers to new JSON RFCSerhiy Storchaka2014-11-271-39/+72
| |/ |/|
* | Using "-m module" is easier to read and understand than "-mmodule".Georg Brandl2014-10-281-2/+2
|/
* Documenting that json.load may raise a ValueError.Felix Crux2013-08-121-0/+2
* Documenting that json.load may raise a ValueError.Felix Crux2013-08-121-0/+2
* Documenting that json.load may raise a ValueError.Felix Crux2013-08-121-0/+2
* Close #18264: int- and float-derived enums now converted to int or float.Ethan Furman2013-08-101-17/+20
* #17438: merge with 3.3.Ezio Melotti2013-03-291-18/+13
|\
| * Merge #16057: Clarify why the base method default is called in custom encoders.R David Murray2013-03-171-18/+13
| |\
| | * Issue #17332: fix json doc typo /convered/converted/ found by Ernie Hershey.Terry Jan Reedy2013-03-081-1/+1
| | |\
| | * \ Issue #17225: JSON decoder now counts columns in the first line startingSerhiy Storchaka2013-02-211-1/+1
| | |\ \
| | * | | #16333: use (",", ": ") as default separator when indent is specified to avoi...Ezio Melotti2012-11-291-5/+13
* | | | | #17438: add links to the conversion tables in dump(s)/load(s).Ezio Melotti2013-03-291-5/+12
|/ / / /
* | | | #16057: Clarify why the base method default is called in custom encoders.R David Murray2013-03-171-0/+2
| |_|/ |/| |
* | | Issue #17332: fix json doc typo /convered/converted/ found by Ernie Hershey.Terry Jan Reedy2013-03-081-1/+1
| |/ |/|
* | Issue #17225: JSON decoder now counts columns in the first line startingSerhiy Storchaka2013-02-211-1/+1
* | #16333: document a way to get rid of trailing whitespace when indent is used.Ezio Melotti2012-11-291-1/+14
|/
* Issue #14570: Document json sort_keys parameter properly.Andrew Svetlov2012-10-281-2/+11
* #11964: Document a change in v3.2 to the json indent parameterPetri Lehtinen2012-08-281-4/+12
* Fix a JSON doc typoPetri Lehtinen2012-08-271-1/+1
* Add glossary referencesAntoine Pitrou2012-08-241-3/+3
* Issue #14674: Add a discussion of the json module's standard compliance.Antoine Pitrou2012-08-241-6/+111