summaryrefslogtreecommitdiffstats
path: root/Lib/json/tests
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-2114-66/+66
| | | | | | | | | | 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. ........
* Issue 10038. Restore the Python 2.6 behavior that json.loads() always returnsBarry Warsaw2010-11-021-0/+2
| | | | unicode. Patch by Patch by Walter Dörwald.
* Backport r72961 fixing issue #6105: json.dumps not following OrderedDict ↵Raymond Hettinger2010-10-301-0/+8
| | | | iteration order.
* Apply patch from Ray Allen for issue 9296Doug Hellmann2010-07-211-0/+9
|
* #7092: fix DeprecationWarnings for json when the tests are run with -3 -Wd.Ezio Melotti2010-01-261-2/+2
|
* Issue #6986: Fix crash in the JSON C accelerator when called with theAntoine Pitrou2009-12-081-2/+11
| | | | wrong parameter types. Patch by Victor Stinner.
* convert usage of fail* to assert*Benjamin Peterson2009-06-302-4/+4
|
* #5932: fix error return in _convertPyInt_AsSsize_t() conversion function.Georg Brandl2009-05-051-0/+3
|
* Issue 5381: fix regression in pure python code path, Issue 5584: fix a ↵Bob Ippolito2009-03-292-5/+12
| | | | decoder bug for unicode float literals outside of a container
* Issue 5381: Add object_pairs_hook to the json module.Raymond Hettinger2009-03-192-0/+32
|
* merge json library with simplejson 2.0.9 (issue 4136)Bob Ippolito2009-03-177-5/+69
|
* check for error conditions in _json #3623Benjamin Peterson2008-10-161-0/+7
|
* PEP 8 nits in json packageBenjamin Peterson2008-05-062-2/+2
|
* Add the 'json' package. Code taken from simplejson 1.9 and contributed by BobBrett Cannon2008-05-0516-0/+624
Ippolito. Closes issue #2750.