diff options
author | Thomas Wouters <thomas@python.org> | 2000-08-27 20:16:32 +0000 |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2000-08-27 20:16:32 +0000 |
commit | 70c1c1205e96df69086961b529327d9446c35772 (patch) | |
tree | 5e5dbe89e03e2741da5181de74ea8f88474a2552 /Python/compile.c | |
parent | 0850482530405107ac60fc106564ac4b5e73bf54 (diff) | |
download | cpython-70c1c1205e96df69086961b529327d9446c35772.tar.gz |
Re-allow 'import mod.submod as s', and change its meaning to what it should
mean; the same as 'from mod import submod as s'.
Diffstat (limited to 'Python/compile.c')
-rw-r--r-- | Python/compile.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Python/compile.c b/Python/compile.c index e8462c6539..dc6e2fb5fe 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -2354,12 +2354,15 @@ com_import_stmt(struct compiling *c, node *n) com_addopname(c, IMPORT_NAME, CHILD(subn, 0)); com_push(c, 1); if (NCH(subn) > 1) { - if (strcmp(STR(CHILD(subn, 1)), "as") != 0 || - NCH(CHILD(subn, 0)) > 1) { + int j; + if (strcmp(STR(CHILD(subn, 1)), "as") != 0) { com_error(c, PyExc_SyntaxError, "invalid syntax"); return; } + for (j=2 ; j < NCH(CHILD(subn, 0)); j += 2) + com_addopname(c, LOAD_ATTR, + CHILD(CHILD(subn, 0), j)); com_addopname(c, STORE_NAME, CHILD(subn, 2)); } else com_addopname(c, STORE_NAME, |