summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorRobert Collins <rbtcollins@hp.com>2014-11-04 14:09:01 (GMT)
committerRobert Collins <rbtcollins@hp.com>2014-11-04 14:09:01 (GMT)
commitbf2bda3c9704181cebb6163f5eacd5ad4e1c15f4 (patch)
tree1f2e15056fc7e7bd965dd5b043183bc575d28f62 /Misc/NEWS
parentd39e199a0d49504583c5672252f653fc01837e32 (diff)
downloadcpython-bf2bda3c9704181cebb6163f5eacd5ad4e1c15f4.zip
cpython-bf2bda3c9704181cebb6163f5eacd5ad4e1c15f4.tar.gz
cpython-bf2bda3c9704181cebb6163f5eacd5ad4e1c15f4.tar.bz2
Close #22457: Honour load_tests in the start_dir of discovery.
We were not honouring load_tests in a package/__init__.py when that was the start_dir parameter, though we do when it is a child package. The fix required a little care since it introduces the possibility of infinite recursion.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 27e8c8e..f69aa8b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -212,6 +212,8 @@ Library
- Issue #22217: Implemented reprs of classes in the zipfile module.
+- Issue #22457: Honour load_tests in the start_dir of discovery.
+
- Issue #18216: gettext now raises an error when a .mo file has an
unsupported major version number. Patch by Aaron Hill.