aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_json/test_recursion.py
Commit message (Collapse)AuthorAge
* bpo-46542: test_json uses support.infinite_recursion() (GH-30972)Victor Stinner2022-01-28
| | | | Fix test_json tests checking for RecursionError: modify these tests to use support.infinite_recursion().
* bpo-40462: Fix typo in test_json (GH-20094)Victor Stinner2020-05-15
|
* Issue #19235: Add new RecursionError exception. Patch by Georg Brandl.Yury Selivanov2015-07-03
|
* #18273: move the tests in Lib/test/json_tests to Lib/test/test_json and make ↵Ezio Melotti2013-08-08
them discoverable by unittest. Patch by Zachary Ware.