summaryrefslogtreecommitdiffstats
path: root/Modules/_json.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #11489: JSON decoder now accepts lone surrogates.Serhiy Storchaka2013-11-261-19/+7
|\
| * Issue #11489: JSON decoder now accepts lone surrogates.Serhiy Storchaka2013-11-261-19/+7
* | Close #18264: int- and float-derived enums now converted to int or float.Ethan Furman2013-08-101-7/+58
* | Issue #16847: Fixed improper use of _PyUnicode_CheckConsistency() inChristian Heimes2013-01-031-0/+2
|\ \ | |/
| * Issue #16847: Fixed improper use of _PyUnicode_CheckConsistency() inChristian Heimes2013-01-031-0/+2
* | #16009: JSON error messages now provide more information. Patch by Serhiy St...Ezio Melotti2013-01-031-24/+24
* | Issue #16590: remove obsolete compatibility code from the _json module.Antoine Pitrou2012-12-011-40/+5
* | Issue #16228: Fix a crash in the json module where a list changes size while ...Antoine Pitrou2012-11-011-7/+3
|\ \ | |/
| * Issue #16228: Fix a crash in the json module where a list changes size while ...Antoine Pitrou2012-11-011-7/+3
| |\
| | * Issue #16228: Fix a crash in the json module where a list changes size while ...Antoine Pitrou2012-11-011-7/+3
* | | Issue #16330: Use surrogate-related macrosVictor Stinner2012-10-301-11/+10
|/ /
* | Issue #5067: improve some json error messages.Antoine Pitrou2012-06-281-4/+4
|\ \ | |/
| * Issue #5067: improve some json error messages.Antoine Pitrou2012-06-281-4/+4
* | Check newly created consistency using _PyUnicode_CheckConsistency(str, 1)Victor Stinner2012-04-271-0/+1
* | Issue #14387: Do not include accu.h from Python.h.Antoine Pitrou2012-03-221-0/+2
|\ \ | |/
* | Issue #13088: Add shared Py_hexdigits constant to format a number into base 16Victor Stinner2011-10-141-8/+8
* | Strip trailing spaces in _json.cVictor Stinner2011-10-111-15/+15
* | Fix misuse of PyUnicode_GET_SIZE, use PyUnicode_GET_LENGTH insteadVictor Stinner2011-10-111-1/+1
* | Remove unused variableAntoine Pitrou2011-10-111-1/+0
* | Use identifier API for PyObject_GetAttrString.Martin v. Löwis2011-10-101-0/+1
* | Change PyUnicode_KIND to 1,2,4. Drop _KIND_SIZE and _CHARACTER_SIZE.Martin v. Löwis2011-10-071-2/+2
* | Remove now duplicate code in _json.c; instead, reuse the new private libAntoine Pitrou2011-10-061-123/+22
* | Implement PEP 393.Martin v. Löwis2011-09-281-100/+152
* | Fix compilation under WindowsAntoine Pitrou2011-08-201-1/+2
* | Issue #12778: Reduce memory consumption when JSON-encoding a large container ...Antoine Pitrou2011-08-191-49/+154
* | #12051: merge with 3.2.Ezio Melotti2011-05-101-2/+15
|\ \ | |/
| * #12051: merge with 3.1.Ezio Melotti2011-05-101-2/+15
| |\
| | * #12051: Fix segfault in json.dumps() while encoding highly-nested objects usi...Ezio Melotti2011-05-101-2/+15
* | | #12017: merge with 3.2.Ezio Melotti2011-05-071-2/+13
|\ \ \ | |/ /
| * | #12017: merge with 3.1.Ezio Melotti2011-05-071-2/+13
| |\ \ | | |/
| | * #12017: Fix segfault in json.loads() while decoding highly-nested objects usi...Ezio Melotti2011-05-071-2/+13
| | * Merged revisions 85342 via svnmerge fromAntoine Pitrou2010-10-091-1/+1
| | * Merged revisions 82805-82806,83523-83527,83536,83538,83542,83546-83548,83550-...Georg Brandl2010-10-061-3/+3
| | * Merged revisions 83016 via svnmerge fromDoug Hellmann2010-07-211-1/+1
| | * Recorded merge of revisions 81032 via svnmerge fromAntoine Pitrou2010-05-091-18/+18
| | * Merged revisions 76710 via svnmerge fromAntoine Pitrou2009-12-081-4/+15
* | | Issue #11856: Speed up parsing of JSON numbers.Antoine Pitrou2011-04-251-15/+31
* | | Issue #8914: fix various warnings from the Clang static analyzer v254.Brett Cannon2011-02-221-11/+10
|/ /
* | Issue #10314: improve performance of JSON encoding with sort_keys=TrueAntoine Pitrou2010-11-041-20/+25
* | Issue #10055: Make json C89-compliant in UCS4 mode.Antoine Pitrou2010-10-091-1/+1
* | Issue #7451: Improve decoding performance of JSON objects, and reduceAntoine Pitrou2010-09-041-45/+82
* | #9087: update json docstrings -- unicode and long do not exist anymore.Georg Brandl2010-08-021-3/+3
* | Apply patch from Ray Allen for issue 9296Doug Hellmann2010-07-211-1/+1
* | Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-18/+18
* | Merged revisions 76708 via svnmerge fromAntoine Pitrou2009-12-081-4/+15
|/
* Fix TODO: do the sort by just the key, not the key/value pair.Raymond Hettinger2009-05-271-15/+20
* * Fix-up a TODO (support the sort_key option).Raymond Hettinger2009-05-271-20/+40
* Issue 6105: json encoder to respect iteration order of its inputs.Raymond Hettinger2009-05-271-5/+22
* Merged revisions 72314 via svnmerge fromGeorg Brandl2009-05-051-3/+3
* Fixed warning. (Should not use *const* as variable name)Hirokazu Yamamoto2009-05-021-1/+1