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_dl.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_dl.py')
-rwxr-xr-x | Lib/test/test_dl.py | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/Lib/test/test_dl.py b/Lib/test/test_dl.py index 029196d..e7902cc 100755 --- a/Lib/test/test_dl.py +++ b/Lib/test/test_dl.py @@ -12,20 +12,20 @@ sharedlibs = [ for s, func in sharedlibs: try: - if verbose: - print 'trying to open:', s, - l = dl.open(s) + if verbose: + print 'trying to open:', s, + l = dl.open(s) except dl.error: - if verbose: - print 'failed' - pass + if verbose: + print 'failed' + pass else: - if verbose: - print 'succeeded...', - l.call(func) - l.close() - if verbose: - print 'worked!' - break + if verbose: + print 'succeeded...', + l.call(func) + l.close() + if verbose: + print 'worked!' + break else: print 'Could not open any shared libraries' |