summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-10-10 21:08:31 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-10-10 21:08:31 (GMT)
commit4de39cda18c1a0a0c5ca4ae31b272374f48d7480 (patch)
tree4d48ea9deebe82276e76c89de49bac4630cb7022 /Misc/NEWS
parent5de65b43fa4439730d4637460cc6d435d8433cf0 (diff)
downloadcpython-4de39cda18c1a0a0c5ca4ae31b272374f48d7480.zip
cpython-4de39cda18c1a0a0c5ca4ae31b272374f48d7480.tar.gz
cpython-4de39cda18c1a0a0c5ca4ae31b272374f48d7480.tar.bz2
Merged revisions 75312 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r75312 | antoine.pitrou | 2009-10-10 22:52:11 +0200 (sam., 10 oct. 2009) | 4 lines 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 479c7e3..1d4b678 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -271,6 +271,9 @@ Documentation
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.