summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2022-01-28 00:35:13 (GMT)
committerGitHub <noreply@github.com>2022-01-28 00:35:13 (GMT)
commite7a6285f1be18992191599792524d3aa6aedfa55 (patch)
treeb9589053c722ce2c95b207f6d9011add8288eaee /Misc/NEWS.d
parent18ea973c21ee4a6adc26be41027881043fa498eb (diff)
downloadcpython-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.rst2
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.