aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2021-02-11 19:31:10 -0500
committerGitHub <noreply@github.com>2021-02-11 19:31:10 -0500
commit2068b261e95e9fe9c4041f0102c9e931692dd5aa (patch)
treed5464549b91b25a1afe56231508874aabd6a8b67
parentbpo-43174: Windows: Use /utf-8 compiler option. (GH-24498) (diff)
downloadcpython-2068b261e95e9fe9c4041f0102c9e931692dd5aa.tar.gz
cpython-2068b261e95e9fe9c4041f0102c9e931692dd5aa.tar.bz2
cpython-2068b261e95e9fe9c4041f0102c9e931692dd5aa.zip
bpo-43202: Immediately return code object in codeop._maybe_compile (GH-24508)
The return used to be after code that was ignored when there was a code object.
-rw-r--r--Lib/codeop.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/Lib/codeop.py b/Lib/codeop.py
index 7a08610239..b3af93f1e1 100644
--- a/Lib/codeop.py
+++ b/Lib/codeop.py
@@ -77,10 +77,10 @@ def _maybe_compile(compiler, source, filename, symbol):
source = "pass" # Replace it with a 'pass' statement
err = err1 = err2 = None
- code = code1 = code2 = None
+ code1 = code2 = None
try:
- code = compiler(source, filename, symbol)
+ return compiler(source, filename, symbol)
except SyntaxError:
pass
@@ -100,8 +100,6 @@ def _maybe_compile(compiler, source, filename, symbol):
err2 = e
try:
- if code:
- return code
if not code1 and _is_syntax_error(err1, err2):
raise err1
finally: