summaryrefslogtreecommitdiffstatshomepage
path: root/py/showbc.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-03-22 12:33:20 +0000
committerDamien George <damien.p.george@gmail.com>2014-03-22 12:33:20 +0000
commitc2a4cb4f04c82d7e283fd7af9609230ae46eb5a2 (patch)
tree349fa5a7c17a11ca7e33b55cfabccefc30117675 /py/showbc.c
parentfb25c2d95f2c2e9e5fdf372caa16398eafe3910d (diff)
parentda8d21e0dd236ae5e31bfac4ff8d5b73ddd49282 (diff)
downloadmicropython-c2a4cb4f04c82d7e283fd7af9609230ae46eb5a2.tar.gz
micropython-c2a4cb4f04c82d7e283fd7af9609230ae46eb5a2.zip
Merge branch 'master' of github.com:micropython/micropython
Diffstat (limited to 'py/showbc.c')
-rw-r--r--py/showbc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/py/showbc.c b/py/showbc.c
index bc81086c7d..9bdf811d9a 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));