diff --git a/tests/compiled/test_calls.3.1.pyc b/tests/compiled/test_calls.3.1.pyc new file mode 100644 index 0000000..63dd6e5 Binary files /dev/null and b/tests/compiled/test_calls.3.1.pyc differ diff --git a/tests/compiled/test_calls.3.10.pyc b/tests/compiled/test_calls.3.10.pyc new file mode 100644 index 0000000..a4886aa Binary files /dev/null and b/tests/compiled/test_calls.3.10.pyc differ diff --git a/tests/compiled/test_calls.3.5.pyc b/tests/compiled/test_calls.3.5.pyc new file mode 100644 index 0000000..3e7d6f6 Binary files /dev/null and b/tests/compiled/test_calls.3.5.pyc differ diff --git a/tests/compiled/test_calls.3.8.pyc b/tests/compiled/test_calls.3.8.pyc new file mode 100644 index 0000000..5a68f9d Binary files /dev/null and b/tests/compiled/test_calls.3.8.pyc differ diff --git a/tests/input/test_calls.py b/tests/input/test_calls.py new file mode 100644 index 0000000..c2ec4d0 --- /dev/null +++ b/tests/input/test_calls.py @@ -0,0 +1,9 @@ +import sys +import os + +sys.stdout.write('Test\n') +sys.stdout.write(os.path.join('foo', 'bar')) + +print('\n') +print(eval('4 * 13')) +print() diff --git a/tests/tokenized/test_calls.txt b/tests/tokenized/test_calls.txt new file mode 100644 index 0000000..3300e23 --- /dev/null +++ b/tests/tokenized/test_calls.txt @@ -0,0 +1,7 @@ +import sys +import os +sys . stdout . write ( 'Test\n' ) +sys . stdout . write ( os . path . join ( 'foo' , 'bar' ) ) +print ( '\n' ) +print ( eval ( '4 * 13' ) ) +print ( )