py: Implement DELETE_GLOBAL in showbc.c.

stackless
Damien George 2015-03-20 17:12:09 +00:00
parent 3425431370
commit 8e9a71257d
1 changed files with 5 additions and 0 deletions

View File

@ -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;