summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-10-10 20:52:11 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-10-10 20:52:11 (GMT)
commit58d2f2689a9d50bd649b446ffde87412cd128b97 (patch)
tree8d57588e30c5bd2b03d9e72a2f33137d18b067b1 /Misc/NEWS
parent1c77b7f84c5fca050980854a677539ba377439dd (diff)
downloadcpython-58d2f2689a9d50bd649b446ffde87412cd128b97.zip
cpython-58d2f2689a9d50bd649b446ffde87412cd128b97.tar.gz
cpython-58d2f2689a9d50bd649b446ffde87412cd128b97.tar.bz2
Issue #7055: test___all__ now greedily detects all modules which have an
__all__ attribute, rather than using a hardcoded and incomplete list.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index bdd657c..ddd909f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1452,6 +1452,9 @@ Extension Modules
Tests
-----
+- Issue #7055: test___all__ now greedily detects all modules which have an
+ __all__ attribute, rather than using a hardcoded and incomplete list.
+
- Issue #7058: Added save/restore for argv and os.environ to runtest_inner
in regrtest, with warnings if the called test modifies them.