beeware / voc

A transpiler that converts Python code into Java bytecode

Home Page:http://beeware.org/voc

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Complex list unpacking causes stack underflow

jorants opened this issue · comments

Unpacking lists in the following manner

 a, *rest = [1,2,3]  

leads to a class file that causes a stack underflow.
This example is extracted from nttplib.py in the standard library.
This also prevents the standard library from being DEXed for android usage. (related to #950)