diff --git a/test/stdlib/compile-file.py b/test/stdlib/compile-file.py index cfbb9c5c..382e2828 100755 --- a/test/stdlib/compile-file.py +++ b/test/stdlib/compile-file.py @@ -19,6 +19,6 @@ bytecode = "%s-%s.pyc" % (basename, PY_VERSION) import py_compile print("compiling %s to %s" % (source, bytecode)) -py_compile.compile(source, bytecode, 'exec') +py_compile.compile(source, bytecode, source) # import os # os.system("../bin/uncompyle6 %s" % bytecode)