From: Jeremy Hylton Date: Tue, 27 Nov 2001 23:35:10 +0000 (+0000) Subject: Fix [ #484645 ] little bug in pycodegen.py X-Git-Tag: v2.2.1c1~693 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=57911ae35a76276997fb51afb78f0a8dfeb684b8;p=python Fix [ #484645 ] little bug in pycodegen.py --- diff --git a/Lib/compiler/pycodegen.py b/Lib/compiler/pycodegen.py index 83e64336d9..f526ae18bb 100644 --- a/Lib/compiler/pycodegen.py +++ b/Lib/compiler/pycodegen.py @@ -1378,4 +1378,4 @@ if __name__ == "__main__": import sys for file in sys.argv[1:]: - compile(file) + compileFile(file)