summaryrefslogtreecommitdiffstats
path: root/Lib/json/decoder.py
Commit message (Collapse)AuthorAgeFilesLines
* #17368: Fix an off-by-one error in the Python JSON decoder that caused a ↵Ezio Melotti2013-03-121-1/+1
| | | | failure while decoding empty object literals when object_pairs_hook was specified.
* Issue #17225: JSON decoder now counts columns in the first line startingSerhiy Storchaka2013-02-211-1/+1
| | | | with 1, as in other lines.
* Issue #5067: improve some json error messages.Antoine Pitrou2012-06-281-8/+7
| | | | Patch by Serhiy Storchaka.
* #5723: Improve json tests to be executed with and without accelerations.Ezio Melotti2011-05-141-2/+2
|
* #9233: Fix json.loads({}) to return a dict (instead of a list), when _json ↵Ezio Melotti2011-04-131-0/+6
| | | | is not available.
* Recorded merge of revisions 85543 via svnmerge fromGeorg Brandl2010-10-151-0/+14
| | | | | | | | | | 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. ........
* #7092: fix DeprecationWarnings for json when the tests are run with -3 -Wd.Ezio Melotti2010-01-261-2/+4
|
* Issue 5381: Add object_pairs_hook to the json module.Raymond Hettinger2009-03-191-4/+11
|
* merge json library with simplejson 2.0.9 (issue 4136)Bob Ippolito2009-03-171-126/+143
|
* Intern static stringChristian Heimes2008-05-061-11/+1
| | | | Use float constructors instead of magic code for float constants
* Add the 'json' package. Code taken from simplejson 1.9 and contributed by BobBrett Cannon2008-05-051-0/+349
Ippolito. Closes issue #2750.