summaryrefslogtreecommitdiffstats
path: root/Lib/json/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix trivial typo in json module docstring (GH-2274) (GH-2432)Mariatta2017-07-061-1/+1
| | | (cherry picked from commit 76c567ee27342d76f631a35c8291b715b2a61f3e)
* Fixed the documentation of parse_constant argument in json.load().Serhiy Storchaka2016-11-121-1/+1
| | | | parse_constant doesn't get called on 'null', 'true', 'false' since 3.1/2.7.
* Issue #4945: Improved the documenting of boolean arguments in the json module.Serhiy Storchaka2016-06-301-3/+3
| | | | Based on patch by Gabriel Genellina.
* Issue #24540: fix typo in json.dumps docstringNed Deily2015-07-051-1/+2
|
* Issue #17225: JSON decoder now counts columns in the first line startingSerhiy Storchaka2013-02-211-1/+1
| | | | with 1, as in other lines.
* #16333: document a way to get rid of trailing whitespace when indent is used.Ezio Melotti2012-11-281-4/+8
|
* Issue #14570: Document json sort_keys parameter properly.Andrew Svetlov2012-10-281-6/+12
| | | | Patch by Chris Rebert.
* #13769: Enhance docs for ensure_ascii semantics in JSON decoding functionsPetri Lehtinen2012-09-011-8/+10
|
* Issue #5067: improve some json error messages.Antoine Pitrou2012-06-281-1/+1
| | | | Patch by Serhiy Storchaka.
* don't rely on dict orderBenjamin Peterson2012-02-211-1/+1
|
* Recorded merge of revisions 85543 via svnmerge fromGeorg Brandl2010-10-151-4/+20
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85543 | georg.brandl | 2010-10-15 19:03:02 +0200 (Fr, 15 Okt 2010) | 1 line #4785: document strict argument of JSONDecoder, plus add object_pairs_hook in the docstrings. ........
* Issue 5381: fix regression in pure python code path, Issue 5584: fix a ↵Bob Ippolito2009-03-291-1/+2
| | | | decoder bug for unicode float literals outside of a container
* Issue 5381: Add object_pairs_hook to the json module.Raymond Hettinger2009-03-191-5/+8
|
* merge json library with simplejson 2.0.9 (issue 4136)Bob Ippolito2009-03-171-54/+55
|
* Add the 'json' package. Code taken from simplejson 1.9 and contributed by BobBrett Cannon2008-05-051-0/+318
Ippolito. Closes issue #2750.