mirror of
https://github.com/micropython/micropython.git
synced 2026-01-04 19:20:22 +01:00
Implement "from module import *" construct.
This commit is contained in:
@@ -390,6 +390,10 @@ void mp_byte_code_print(const byte *ip, int len) {
|
||||
printf("IMPORT_FROM %s", qstr_str(qstr));
|
||||
break;
|
||||
|
||||
case MP_BC_IMPORT_STAR:
|
||||
printf("IMPORT_STAR");
|
||||
break;
|
||||
|
||||
default:
|
||||
printf("code %p, byte code 0x%02x not implemented\n", ip, op);
|
||||
assert(0);
|
||||
|
||||
Reference in New Issue
Block a user