diff options
Diffstat (limited to 'Lib/test/test___all__.py')
-rw-r--r-- | Lib/test/test___all__.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test___all__.py b/Lib/test/test___all__.py index f811732..4947a04 100644 --- a/Lib/test/test___all__.py +++ b/Lib/test/test___all__.py @@ -1,4 +1,3 @@ - from test_support import verify, verbose, TestFailed import sys @@ -8,7 +7,7 @@ def check_all(_modname): "%s has no __all__ attribute" % _modname) exec "del %s" % _modname exec "from %s import *" % _modname - + _keys = locals().keys() _keys.remove("_modname") _keys.sort() |