diff options
author | Guido van Rossum <guido@python.org> | 1998-03-26 19:42:58 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-03-26 19:42:58 (GMT) |
commit | 41360a4696f488e49e5409b3b1baf1fff6ae0044 (patch) | |
tree | 9c9b73b7446cc9fc36e09038bf26d889bb5b6f24 /Lib/test/test_cd.py | |
parent | cd0f59ea0824ad6f897f05c2db4d4471e47e6063 (diff) | |
download | cpython-41360a4696f488e49e5409b3b1baf1fff6ae0044.zip cpython-41360a4696f488e49e5409b3b1baf1fff6ae0044.tar.gz cpython-41360a4696f488e49e5409b3b1baf1fff6ae0044.tar.bz2 |
Mass check-in after untabifying all files that need it.
Diffstat (limited to 'Lib/test/test_cd.py')
-rwxr-xr-x | Lib/test/test_cd.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Lib/test/test_cd.py b/Lib/test/test_cd.py index aa51d57..4d56158 100755 --- a/Lib/test/test_cd.py +++ b/Lib/test/test_cd.py @@ -6,8 +6,8 @@ import cd from test_support import verbose cdattrs = ['BLOCKSIZE', 'CDROM', 'DATASIZE', 'ERROR', 'NODISC', 'PAUSED', 'PLAYING', 'READY', - 'STILL', '__doc__', '__name__', 'atime', 'audio', 'catalog', 'control', 'createparser', 'error', - 'ident', 'index', 'msftoframe', 'open', 'pnum', 'ptime'] + 'STILL', '__doc__', '__name__', 'atime', 'audio', 'catalog', 'control', 'createparser', 'error', + 'ident', 'index', 'msftoframe', 'open', 'pnum', 'ptime'] # This is a very inobstrusive test for the existance of the cd module and all it's @@ -17,10 +17,10 @@ cdattrs = ['BLOCKSIZE', 'CDROM', 'DATASIZE', 'ERROR', 'NODISC', 'PAUSED', 'PLAYI def main(): # touch all the attributes of cd without doing anything if verbose: - print 'Touching cd module attributes...' + print 'Touching cd module attributes...' for attr in cdattrs: - if verbose: - print 'touching: ', attr - getattr(cd, attr) + if verbose: + print 'touching: ', attr + getattr(cd, attr) main() |