diff options
author | Damien George <damien.p.george@gmail.com> | 2014-02-14 23:06:33 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-02-14 23:06:33 +0000 |
commit | aa9b74fead359f18a1754f6303e85a1f9cca1625 (patch) | |
tree | 7c195d686aa99aafea8b8bf4249dfd09004a1fa9 /py | |
parent | 7ef098000aafe67decba084798df49a8719695db (diff) | |
download | micropython-aa9b74fead359f18a1754f6303e85a1f9cca1625.tar.gz micropython-aa9b74fead359f18a1754f6303e85a1f9cca1625.zip |
py: Fix IMPORT_STAR, needs to pop the stack.
Diffstat (limited to 'py')
-rw-r--r-- | py/vm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -596,7 +596,7 @@ unwind_return: break; case MP_BC_IMPORT_STAR: - rt_import_all(TOP()); + rt_import_all(POP()); break; default: |