diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-02-14 00:22:06 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-02-14 00:30:36 +0200 |
commit | da1ce93da8aaa2ae050610ec51fdb3e72988a589 (patch) | |
tree | 942683bc38d2c8cb9b945a0a7291079cfccac71c /py/showbc.c | |
parent | a8d404e0e1cfc3ad1fb171b5515f2685af4ffeca (diff) | |
download | micropython-da1ce93da8aaa2ae050610ec51fdb3e72988a589.tar.gz micropython-da1ce93da8aaa2ae050610ec51fdb3e72988a589.zip |
Implement "from module import *" construct.
Diffstat (limited to 'py/showbc.c')
-rw-r--r-- | py/showbc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/py/showbc.c b/py/showbc.c index 9dfbc88721..e3387dbe27 100644 --- a/py/showbc.c +++ b/py/showbc.c @@ -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); |