diff options
| author | Paul Sokolovsky | 2014-03-22 13:47:06 +0200 |
|---|---|---|
| committer | Paul Sokolovsky | 2014-03-22 13:52:08 +0200 |
| commit | da8d21e0dd236ae5e31bfac4ff8d5b73ddd49282 (patch) | |
| tree | 6143917c64ef131bf7a71c08fe918ed1fe9254bb | |
| parent | b32db4e1ad381edaaf91320cb2830e4a1b151863 (diff) | |
showbc: Dump YIELD_FROM.
| -rw-r--r-- | py/showbc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/py/showbc.c b/py/showbc.c index bc81086c7..9bdf811d9 100644 --- a/py/showbc.c +++ b/py/showbc.c @@ -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)); |
