gstarnberger/uncompyle

numpy indices use literal ellipsis wrongly

flying-sheep opened this issue · 0 comments

i don’t have breaking code code, but sometimes, indices that are written like this: s_[..., 8, 3] are decompiled to the invalid syntax s_[(..., 8, 3)], instead of the original or an also working s_[(Ellipsis, 8, 3)]