Merge branch 'master' of github.com:micropython/micropython

This commit is contained in:
Damien George 2014-03-22 12:33:20 +00:00
commit c2a4cb4f04
1 changed files with 4 additions and 0 deletions

View File

@ -394,6 +394,10 @@ void mp_byte_code_print(const byte *ip, int len) {
printf("YIELD_VALUE");
break;
case MP_BC_YIELD_FROM:
printf("YIELD_FROM");
break;
case MP_BC_IMPORT_NAME:
DECODE_QSTR;
printf("IMPORT_NAME %s", qstr_str(qstr));