1. 31a3ec3 Issue #22338: Fix a crash in the json module on memory allocation failure. by Victor Stinner · 10 years ago
  2. 70d92a9 merge 3.3 by Benjamin Peterson · 10 years ago
  3. 9beee04 merge 3.2 by Benjamin Peterson · 10 years ago
  4. 6ef2b36 disallow a negative idx parameter by Benjamin Peterson · 10 years ago
  5. 584f5cb merge 3.3 by Benjamin Peterson · 10 years ago
  6. 156285c merge 3.2 by Benjamin Peterson · 10 years ago
  7. 99b5afa in scan_once, prevent the reading of arbitrary memory when passed a negative index by Benjamin Peterson · 10 years ago
  8. 687ff0e Issue #11489: JSON decoder now accepts lone surrogates. by Serhiy Storchaka · 11 years ago
  9. c93329b Issue #11489: JSON decoder now accepts lone surrogates. by Serhiy Storchaka · 11 years ago
  10. a4998a7 Close #18264: int- and float-derived enums now converted to int or float. by Ethan Furman · 11 years ago
  11. 75e923f Issue #16847: Fixed improper use of _PyUnicode_CheckConsistency() in by Christian Heimes · 12 years ago
  12. f402e92 Issue #16847: Fixed improper use of _PyUnicode_CheckConsistency() in by Christian Heimes · 12 years ago
  13. 37623ab #16009: JSON error messages now provide more information. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  14. cbb0284 Issue #16590: remove obsolete compatibility code from the _json module. by Antoine Pitrou · 12 years ago
  15. 53d36b6 Issue #16228: Fix a crash in the json module where a list changes size while it is being encoded. by Antoine Pitrou · 12 years ago
  16. 5ebe65f Issue #16228: Fix a crash in the json module where a list changes size while it is being encoded. by Antoine Pitrou · 12 years ago
  17. 9f69e79 Issue #16228: Fix a crash in the json module where a list changes size while it is being encoded. by Antoine Pitrou · 12 years ago
  18. 76df43d Issue #16330: Use surrogate-related macros by Victor Stinner · 12 years ago
  19. 802d669 Issue #5067: improve some json error messages. Patch by Serhiy Storchaka. by Antoine Pitrou · 12 years ago
  20. 2d24e94 Issue #5067: improve some json error messages. Patch by Serhiy Storchaka. by Antoine Pitrou · 12 years ago
  21. 8f82506 Check newly created consistency using _PyUnicode_CheckConsistency(str, 1) by Victor Stinner · 12 years ago
  22. d0acb41 Issue #14387: Do not include accu.h from Python.h. by Antoine Pitrou · 12 years ago
  23. f5cff56 Issue #13088: Add shared Py_hexdigits constant to format a number into base 16 by Victor Stinner · 13 years ago
  24. d9c0631 Strip trailing spaces in _json.c by Victor Stinner · 13 years ago
  25. c4f281e Fix misuse of PyUnicode_GET_SIZE, use PyUnicode_GET_LENGTH instead by Victor Stinner · 13 years ago
  26. 699cd9f Remove unused variable by Antoine Pitrou · 13 years ago
  27. 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
  28. c47adb0 Change PyUnicode_KIND to 1,2,4. Drop _KIND_SIZE and _CHARACTER_SIZE. by Martin v. Löwis · 13 years ago
  29. 90c30e8 Remove now duplicate code in _json.c; instead, reuse the new private lib by Antoine Pitrou · 13 years ago
  30. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  31. 18bb330 Fix compilation under Windows by Antoine Pitrou · 13 years ago
  32. df7fc9d Issue #12778: Reduce memory consumption when JSON-encoding a large container of many small objects. by Antoine Pitrou · 13 years ago
  33. f8d6fd6 #12051: merge with 3.2. by Ezio Melotti · 13 years ago
  34. f188bc5 #12051: merge with 3.1. by Ezio Melotti · 13 years ago
  35. 1367265 #12051: Fix segfault in json.dumps() while encoding highly-nested objects using the C accelerations. by Ezio Melotti · 13 years ago
  36. 9c18778 #12017: merge with 3.2. by Ezio Melotti · 13 years ago
  37. 06383ee #12017: merge with 3.1. by Ezio Melotti · 13 years ago
  38. 362b951 #12017: Fix segfault in json.loads() while decoding highly-nested objects using the C accelerations. by Ezio Melotti · 13 years ago
  39. f645451 Issue #11856: Speed up parsing of JSON numbers. by Antoine Pitrou · 13 years ago
  40. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 13 years ago
  41. 2397dd5 Issue #10314: improve performance of JSON encoding with sort_keys=True by Antoine Pitrou · 14 years ago
  42. ae136da Merged revisions 85342 via svnmerge from by Antoine Pitrou · 14 years ago
  43. 5b0e9e8 Issue #10055: Make json C89-compliant in UCS4 mode. by Antoine Pitrou · 14 years ago
  44. 4009c9e Merged revisions 82805-82806,83523-83527,83536,83538,83542,83546-83548,83550-83555,83558,83560 via svnmerge from by Georg Brandl · 14 years ago
  45. 7d6e076 Issue #7451: Improve decoding performance of JSON objects, and reduce by Antoine Pitrou · 14 years ago
  46. c8284cf #9087: update json docstrings -- unicode and long do not exist anymore. by Georg Brandl · 14 years ago
  47. 76e5794 Merged revisions 83016 via svnmerge from by Doug Hellmann · 14 years ago
  48. 1c52475 Apply patch from Ray Allen for issue 9296 by Doug Hellmann · 14 years ago
  49. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  50. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  51. 4fad6bd Merged revisions 76710 via svnmerge from by Antoine Pitrou · 15 years ago
  52. 781eba7 Merged revisions 76708 via svnmerge from by Antoine Pitrou · 15 years ago
  53. 491a4cb Fix TODO: do the sort by just the key, not the key/value pair. by Raymond Hettinger · 15 years ago
  54. bcf6f92 * Fix-up a TODO (support the sort_key option). by Raymond Hettinger · 15 years ago
  55. c8d952d Issue 6105: json encoder to respect iteration order of its inputs. by Raymond Hettinger · 15 years ago
  56. 5968205 Merged revisions 72314 via svnmerge from by Georg Brandl · 15 years ago
  57. fecf5d1 Fixed warning. (Should not use *const* as variable name) by Hirokazu Yamamoto · 15 years ago
  58. c6b607d port simplejson upgrade from the trunk #4136 by Benjamin Peterson · 15 years ago
  59. 8e8c215 Merged revisions 66938,66942 via svnmerge from by Benjamin Peterson · 16 years ago
  60. a13d475 merge r66932 and add a few py3k only checks by Benjamin Peterson · 16 years ago
  61. ee58fa4 #3560: cleanup C memoryview API by Antoine Pitrou · 16 years ago
  62. 423be95 Merged revisions 65654 via svnmerge from by Martin v. Löwis · 16 years ago
  63. 7af6eec Merged revisions 65147 via svnmerge from by Benjamin Peterson · 16 years ago
  64. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  65. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  66. cb0cdce Move variable declaration to the top of the block, by Amaury Forgeot d'Arc · 16 years ago
  67. 9054000 Merged revisions 62734,62736,62748,62769 via svnmerge from by Christian Heimes · 16 years ago