From 8e9a71257dbbd60881f74f897b6447e457937063 Mon Sep 17 00:00:00 2001 From: Damien George Date: Fri, 20 Mar 2015 17:12:09 +0000 Subject: [PATCH] py: Implement DELETE_GLOBAL in showbc.c. --- py/showbc.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/py/showbc.c b/py/showbc.c index adfa7544fd..3a468326db 100644 --- a/py/showbc.c +++ b/py/showbc.c @@ -275,6 +275,11 @@ const byte *mp_bytecode_print_str(const byte *ip) { 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;