Skip to content

Commit ddaf6c1

Browse files
committed
py: More output in showbc.
1 parent bbcd49a commit ddaf6c1

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

py/showbc.c

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,16 @@ void mp_byte_code_print(const byte *ip, int len) {
170170
printf("STORE_SUBSCR");
171171
break;
172172

173+
case MP_BC_DELETE_FAST_N:
174+
DECODE_UINT;
175+
printf("DELETE_FAST_N " UINT_FMT, unum);
176+
break;
177+
178+
case MP_BC_DELETE_NAME:
179+
DECODE_QSTR;
180+
printf("DELETE_NAME %s", qstr_str(qstr));
181+
break;
182+
173183
case MP_BC_DUP_TOP:
174184
printf("DUP_TOP");
175185
break;

0 commit comments

Comments
 (0)