diff options
Diffstat (limited to 'Lib/test/test_cl.py')
-rwxr-xr-x | Lib/test/test_cl.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_cl.py b/Lib/test/test_cl.py index abfe3c19f57..0df7f6f8e28 100755 --- a/Lib/test/test_cl.py +++ b/Lib/test/test_cl.py @@ -69,10 +69,10 @@ clattrs = ['ADDED_ALGORITHM_ERROR', 'ALAW', 'ALGORITHM_ID', def main(): # touch all the attributes of al without doing anything if verbose: - print 'Touching cl module attributes...' + print('Touching cl module attributes...') for attr in clattrs: if verbose: - print 'touching: ', attr + print('touching: ', attr) getattr(cl, attr) main() |