summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2014-08-04 16:15:10 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2014-08-04 16:15:10 (GMT)
commit69fb6a41c56a6a92f091108c1429d406cc8d0296 (patch)
tree9778017ab2640bc55bd302889de4c3c224473792 /Misc
parentd577480197f7cc427ac75deaebae3106399a9cd3 (diff)
downloadcpython-69fb6a41c56a6a92f091108c1429d406cc8d0296.zip
cpython-69fb6a41c56a6a92f091108c1429d406cc8d0296.tar.gz
cpython-69fb6a41c56a6a92f091108c1429d406cc8d0296.tar.bz2
Issue #22104: Don't hold a reference to the loaded TestSuite in runtest_inner
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b554afd..21b5ffa 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -239,6 +239,9 @@ IDLE
Tests
-----
+- Issue #22104: regrtest.py no longer holds a reference to the suite of tests
+ loaded from test modules that don't define test_main().
+
- Issue #22002: Added ``load_package_tests`` function to test.support and used
it to implement/augment test discovery in test_asyncio, test_email,
test_importlib, test_json, and test_tools.