diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-11-27 23:35:10 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-11-27 23:35:10 (GMT) |
commit | 57911ae35a76276997fb51afb78f0a8dfeb684b8 (patch) | |
tree | f351ecd4a7eeb50d0bccac70bc0f3722b298d8e5 /Lib/compiler | |
parent | b13680bf034ee2522a9252127065100e5ca1c13f (diff) | |
download | cpython-57911ae35a76276997fb51afb78f0a8dfeb684b8.zip cpython-57911ae35a76276997fb51afb78f0a8dfeb684b8.tar.gz cpython-57911ae35a76276997fb51afb78f0a8dfeb684b8.tar.bz2 |
Fix [ #484645 ] little bug in pycodegen.py
Diffstat (limited to 'Lib/compiler')
-rw-r--r-- | Lib/compiler/pycodegen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/compiler/pycodegen.py b/Lib/compiler/pycodegen.py index 83e6433..f526ae1 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) |