diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-02-21 07:29:48 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-02-21 07:29:48 (GMT) |
commit | 0009c4ea590b5bb4c00c33bc96dca47a42e720f1 (patch) | |
tree | 2abfdee35e04475cb7cd4f2065620174fe2f4943 /Lib/test/test_compile.py | |
parent | edf2210221f2803dfea62493ebff5eafd5cbc851 (diff) | |
download | cpython-0009c4ea590b5bb4c00c33bc96dca47a42e720f1.zip cpython-0009c4ea590b5bb4c00c33bc96dca47a42e720f1.tar.gz cpython-0009c4ea590b5bb4c00c33bc96dca47a42e720f1.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_compile.py')
-rw-r--r-- | Lib/test/test_compile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_compile.py b/Lib/test/test_compile.py index cb24060..17d3500 100644 --- a/Lib/test/test_compile.py +++ b/Lib/test/test_compile.py @@ -24,7 +24,7 @@ except SyntaxError: print "testing complex args" def comp_args((a, b)): - print a,b + print a,b comp_args((1, 2)) |