From aa9b74fead359f18a1754f6303e85a1f9cca1625 Mon Sep 17 00:00:00 2001 From: Damien George Date: Fri, 14 Feb 2014 23:06:33 +0000 Subject: [PATCH] py: Fix IMPORT_STAR, needs to pop the stack. --- py/vm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/vm.c b/py/vm.c index 10db35e25f..1fc5b4a57a 100644 --- a/py/vm.c +++ b/py/vm.c @@ -596,7 +596,7 @@ unwind_return: break; case MP_BC_IMPORT_STAR: - rt_import_all(TOP()); + rt_import_all(POP()); break; default: