diff options
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)) |