diff options
author | Damien George <damien.p.george@gmail.com> | 2014-02-14 23:00:09 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-02-14 23:00:09 +0000 |
commit | 25735ba6d3f5a3cf35b3fc814a13d55dcfa29497 (patch) | |
tree | 3a150ae5ba3f99bb7c873154ee000eb35c1c89b8 /py/showbc.c | |
parent | 76f8cedb52613e27d4d5a031899154e31e00b045 (diff) | |
parent | e7299b5296d53168ec897511b1427056cb6e888a (diff) |
Merge pull request #282 from pfalcon/from-star
Implement "from mod import *"
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 9dfbc8872..e3387dbe2 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); |