mirror of https://github.com/python/cpython
Don't stop generating code for import statements after the first "import as"
part. Fixes one bug from #1333982.
This commit is contained in:
parent
147b75931d
commit
ac699efad8
|
@ -2359,8 +2359,9 @@ compiler_import(struct compiler *c, stmt_ty s)
|
|||
ADDOP_NAME(c, IMPORT_NAME, alias->name, names);
|
||||
|
||||
if (alias->asname) {
|
||||
return compiler_import_as(c,
|
||||
alias->name, alias->asname);
|
||||
r = compiler_import_as(c, alias->name, alias->asname);
|
||||
if (!r)
|
||||
return r;
|
||||
}
|
||||
else {
|
||||
identifier tmp = alias->name;
|
||||
|
|
Loading…
Reference in New Issue