pythonizer
pythonizer copied to clipboard
keys is a method, not a property
Generated code for:
@arr = keys %hash;
is
arr=hash.keys
It should be:
arr=hash.keys()
Fixed in https://github.com/snoopyjc/pythonizer