summaryrefslogtreecommitdiff
path: root/Lib/json/tests/test_decode.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #27993: Fix problems with the plural “objects” in docs and commentsMartin Panter2016-09-081-1/+1
|
* in scan_once, prevent the reading of arbitrary memory when passed a negative ↵Benjamin Peterson2014-04-131-0/+5
| | | | | | index Bug reported by Guido Vranken.
* #17368: Fix an off-by-one error in the Python JSON decoder that caused a ↵Ezio Melotti2013-03-131-2/+7
| | | | failure while decoding empty object literals when object_pairs_hook was specified.
* Issue #15615: Add some tests for the json module's handling of invalid input ↵Antoine Pitrou2012-08-181-0/+9
| | | | | | data. Patch by Kushal Das.
* #5723: Improve json tests to be executed with and without accelerations.Ezio Melotti2011-05-141-17/+20
|
* #11982: fix json.loads('""') to return u'' rather than ''.Ezio Melotti2011-05-041-1/+2
|
* #9233: Fix json.loads({}) to return a dict (instead of a list), when _json ↵Ezio Melotti2011-04-131-0/+5
| | | | is not available.
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-3/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-2/+2
|
* Issue 5381: fix regression in pure python code path, Issue 5584: fix a ↵Bob Ippolito2009-03-291-4/+7
| | | | decoder bug for unicode float literals outside of a container
* Issue 5381: Add object_pairs_hook to the json module.Raymond Hettinger2009-03-191-0/+16
|
* merge json library with simplejson 2.0.9 (issue 4136)Bob Ippolito2009-03-171-0/+7
|
* Add the 'json' package. Code taken from simplejson 1.9 and contributed by BobBrett Cannon2008-05-051-0/+15
Ippolito. Closes issue #2750.