Open snoopyjc opened 2 years ago
Multiple undef's in a list unpack only generate one in the python code. For example:
(undef, undef, $i) = @arr;
Will generate:
[Null, i] = arr
Fixed in https://github.com/snoopyjc/pythonizer
Multiple undef's in a list unpack only generate one in the python code. For example:
Will generate: