pythonizer
pythonizer copied to clipboard
Pre-increment as a statement doesn't generate proper code
Pre-increment as a statement doesn't generate proper code:
++$i;
should generate the same code as:
$i++;
Fixed in https://github.com/snoopyjc/pythonizer