summaryrefslogtreecommitdiffstats
path: root/Lib/json
Commit message (Collapse)AuthorAgeFilesLines
* #16549: fix test failures on Windows.Ezio Melotti2012-11-291-2/+2
|
* #16476: Fix json.tool to avoid including trailing whitespace.Ezio Melotti2012-11-292-9/+10
|
* #16549: Add tests for json.tools. Initial patch by Berker Peksag and Serhiy ↵Ezio Melotti2012-11-292-6/+77
| | | | Storchaka.
* #16333: document a way to get rid of trailing whitespace when indent is used.Ezio Melotti2012-11-282-5/+12
|
* #16559: Add more tests for the json module. Patch by Serhiy Storchaka.Ezio Melotti2012-11-263-15/+44
|
* Issue #16228: Fix a crash in the json module where a list changes size while ↵Antoine Pitrou2012-11-011-0/+9
| | | | | | it is being encoded. Patch by Serhiy Storchaka.
* 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-012-11/+16
|
* 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.
* Issue #5067: improve some json error messages.Antoine Pitrou2012-06-283-10/+9
| | | | Patch by Serhiy Storchaka.
* #14875: Use float('inf') instead of float('1e66666') in the json module.Ezio Melotti2012-05-211-2/+1
|
* don't rely on dict orderBenjamin Peterson2012-02-211-1/+1
|
* Issue #13774: json: Fix a SystemError when a bogus encoding is passed toAmaury Forgeot d'Arc2012-01-131-0/+4
| | | | json.loads().
* #5723: Improve json tests to be executed with and without accelerations.Ezio Melotti2011-05-1418-211/+267
|
* #12051: Fix segfault in json.dumps() while encoding highly-nested objects ↵Ezio Melotti2011-05-101-1/+21
| | | | using the C accelerations.
* #12017: Fix segfault in json.loads() while decoding highly-nested objects ↵Ezio Melotti2011-05-071-0/+19
| | | | using the C accelerations.
* #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-132-0/+11
| | | | is not available.
* #10019: Fix regression relative to 2.6: add newlines if indent=0R David Murray2011-04-132-1/+17
| | | | Patch by Amaury Forgeot d'Arc, updated by Sando Tosi.
* Remove unnecessary imports and use assertIs instead of assertTrue.Ezio Melotti2011-04-122-5/+3
|
* #9233: skip _json-specific tests when _json is not available.Ezio Melotti2011-04-122-2/+14
|
* 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.
* Recorded merge of revisions 85543 via svnmerge fromGeorg Brandl2010-10-152-4/+34
| | | | | | | | | | 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. ........
* 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-263-8/+7
|
* 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-294-7/+16
| | | | decoder bug for unicode float literals outside of a container
* Issue 5381: Add object_pairs_hook to the json module.Raymond Hettinger2009-03-194-9/+51
|
* merge json library with simplejson 2.0.9 (issue 4136)Bob Ippolito2009-03-1712-410/+550
|
* check for error conditions in _json #3623Benjamin Peterson2008-10-161-0/+7
|
* Replace more float hacks with correct math functionsChristian Heimes2008-05-071-7/+7
|
* Intern static stringChristian Heimes2008-05-061-11/+1
| | | | Use float constructors instead of magic code for float constants
* PEP 8 nits in json packageBenjamin Peterson2008-05-063-2/+3
|
* Add the 'json' package. Code taken from simplejson 1.9 and contributed by BobBrett Cannon2008-05-0521-0/+1780
Ippolito. Closes issue #2750.