pythonizer icon indicating copy to clipboard operation
pythonizer copied to clipboard

Need to flatten qw inside anonymous arrays

Open snoopyjc opened this issue 3 years ago • 1 comments

Need to flatten qw inside anonymous arrays. For example:

our %EXPORT_TAGS = (
    Det    => [qw( det )],
    Normal => [qw( det identityMatrix matrixAdd matrixScalarMultiply matrixMultiplication )],
);

The value at key Det needs to be ['det'], not [['det']].

snoopyjc avatar Feb 25 '22 15:02 snoopyjc

Fixed in my v0.959 https://github.com/snoopyjc/pythonizer/

snoopyjc avatar Mar 31 '22 22:03 snoopyjc