summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-01-21 04:49:16 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-01-21 04:49:16 (GMT)
commitdfc538acae7b896058e01571dcf36669e80d8e8b (patch)
tree7e9e64e1673322bf53771bdf0a0d682c6f19feb6 /Lib/test
parent384fd106e89ec859ace7c098620aad8ce2c2abaa (diff)
downloadcpython-dfc538acae7b896058e01571dcf36669e80d8e8b.zip
cpython-dfc538acae7b896058e01571dcf36669e80d8e8b.tar.gz
cpython-dfc538acae7b896058e01571dcf36669e80d8e8b.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test___all__.py3
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()