diff options
author | Victor Stinner <vstinner@python.org> | 2022-01-28 00:35:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-28 00:35:13 (GMT) |
commit | e7a6285f1be18992191599792524d3aa6aedfa55 (patch) | |
tree | b9589053c722ce2c95b207f6d9011add8288eaee /Misc/NEWS.d | |
parent | 18ea973c21ee4a6adc26be41027881043fa498eb (diff) | |
download | cpython-e7a6285f1be18992191599792524d3aa6aedfa55.zip cpython-e7a6285f1be18992191599792524d3aa6aedfa55.tar.gz cpython-e7a6285f1be18992191599792524d3aa6aedfa55.tar.bz2 |
bpo-46542: test_json uses support.infinite_recursion() (GH-30972)
Fix test_json tests checking for RecursionError: modify these tests
to use support.infinite_recursion().
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2022-01-28-01-17-10.bpo-46542.xRLTdj.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2022-01-28-01-17-10.bpo-46542.xRLTdj.rst b/Misc/NEWS.d/next/Tests/2022-01-28-01-17-10.bpo-46542.xRLTdj.rst new file mode 100644 index 0000000..c6b64ce --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2022-01-28-01-17-10.bpo-46542.xRLTdj.rst @@ -0,0 +1,2 @@ +Fix ``test_json`` tests checking for :exc:`RecursionError`: modify these tests +to use ``support.infinite_recursion()``. Patch by Victor Stinner. |