diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/codeop.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/codeop.py b/Lib/codeop.py index cc9d5b2..e7c0f1f 100644 --- a/Lib/codeop.py +++ b/Lib/codeop.py @@ -72,7 +72,8 @@ def _maybe_compile(compiler, source, filename, symbol): if line and line[0] != '#': break # Leave it alone else: - source = "pass" # Replace it with a 'pass' statement + if symbol != "eval": + source = "pass" # Replace it with a 'pass' statement err = err1 = err2 = None code = code1 = code2 = None |