py: Implement DELETE_GLOBAL in showbc.c.
This commit is contained in:
parent
3425431370
commit
8e9a71257d
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue