Skip to content
Snippets Groups Projects
Commit 8e9a7125 authored by Damien George's avatar Damien George
Browse files

py: Implement DELETE_GLOBAL in showbc.c.

parent 34254313
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment