commit | 8e9a71257dbbd60881f74f897b6447e457937063 | [log] [tgz] |
---|---|---|
author | Damien George <damien.p.george@gmail.com> | Fri Mar 20 17:12:09 2015 +0000 |
committer | Damien George <damien.p.george@gmail.com> | Fri Mar 20 17:12:09 2015 +0000 |
tree | 0eaecaf89b9011351d73a75e8cc16c3004fd0981 | |
parent | 3425431370ea138b7283a9e631a873f0949067a3 [diff] [blame] |
py: Implement DELETE_GLOBAL in showbc.c.
diff --git a/py/showbc.c b/py/showbc.c index adfa754..3a46832 100644 --- a/py/showbc.c +++ b/py/showbc.c
@@ -275,6 +275,11 @@ printf("DELETE_NAME %s", qstr_str(qst)); break; + case MP_BC_DELETE_GLOBAL: + DECODE_QSTR; + printf("DELETE_GLOBAL %s", qstr_str(qst)); + break; + case MP_BC_DUP_TOP: printf("DUP_TOP"); break;