Skip to content

Commit c2a4cb4

Browse files
committed
Merge branch 'master' of github.com:micropython/micropython
2 parents fb25c2d + da8d21e commit c2a4cb4

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

py/showbc.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -394,6 +394,10 @@ void mp_byte_code_print(const byte *ip, int len) {
394394
printf("YIELD_VALUE");
395395
break;
396396

397+
case MP_BC_YIELD_FROM:
398+
printf("YIELD_FROM");
399+
break;
400+
397401
case MP_BC_IMPORT_NAME:
398402
DECODE_QSTR;
399403
printf("IMPORT_NAME %s", qstr_str(qstr));

0 commit comments

Comments
 (0)