summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_json
Commit message (Collapse)AuthorAgeFilesLines
* Issue #24683: Fixed crashes in _json functions called with arguments ofSerhiy Storchaka2015-07-261-0/+6
| | | | inappropriate type.
* merge 3.3 (#24094)Benjamin Peterson2015-05-031-0/+19
|\
| * just sort the items tuple directly (closes #24094)Benjamin Peterson2015-05-031-0/+19
| |
* | merge 3.3Benjamin Peterson2015-02-021-1/+2
|\ \ | |/
| * reduce memory usage of test (closes #23369)Benjamin Peterson2015-02-021-1/+2
| |
* | merge 3.3Benjamin Peterson2015-02-011-1/+0
|\ \ | |/
| * remove extra wsBenjamin Peterson2015-02-011-1/+0
| |
* | merge 3.3 (#23369)Benjamin Peterson2015-02-011-1/+8
|\ \ | |/
| * fix possible overflow in encode_basestring_ascii (closes #23369)Benjamin Peterson2015-02-011-1/+8
| |
* | Issue #22002: Make full use of test discovery in test sub-packages.Zachary Ware2014-07-231-15/+4
| | | | | | | | | | | | Adds `load_package_tests` function to test.support, uses it in test_asyncio, test_email, test_json, test_tools, test_importlib and all test_importlib sub-packages to implement test discovery.
* | merge 3.3Benjamin Peterson2014-04-141-0/+4
|\ \ | |/
| * merge 3.2Benjamin Peterson2014-04-141-0/+4
| |
* | Issue #11489: JSON decoder now accepts lone surrogates.Serhiy Storchaka2013-11-261-4/+47
|\ \ | |/
| * Issue #11489: JSON decoder now accepts lone surrogates.Serhiy Storchaka2013-11-261-4/+47
| |
* | #18958: Improve error message for json.load(s) while passing a string that ↵Ezio Melotti2013-10-201-0/+14
| | | | | | | | starts with a UTF-8 BOM.
* | #19307: Improve error message for json.load(s) while passing objects of the ↵Ezio Melotti2013-10-201-1/+8
| | | | | | | | wrong type.
* | Close #18745: Improve enum tests in test_json for infinities and NaN.Ethan Furman2013-09-021-5/+44
| |
* | Close #18264: int- and float-derived enums now converted to int or float.Ethan Furman2013-08-101-0/+81
| |
* | #18273: merge with 3.3.Ezio Melotti2013-08-082-0/+93
|/
* #18273: move the tests in Lib/test/json_tests to Lib/test/test_json and make ↵Ezio Melotti2013-08-0818-0/+975
them discoverable by unittest. Patch by Zachary Ware.