1 parent bbcd49a commit ddaf6c1Copy full SHA for ddaf6c1
1 file changed
py/showbc.c
@@ -170,6 +170,16 @@ void mp_byte_code_print(const byte *ip, int len) {
170
printf("STORE_SUBSCR");
171
break;
172
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
182
183
case MP_BC_DUP_TOP:
184
printf("DUP_TOP");
185
0 commit comments