pythonizer
pythonizer copied to clipboard
Dereferencing an array or hash ref generates bad python code
Dereferencing an array or hash ref generates bad python code. For example:
@three = @{$options{three}};
Generates:
three=@[options['three']]
instead the dereference should be ignored and this code should be generated:
three=options['three']
Fixed in https://github.com/snoopyjc/pythonizer