Open snoopyjc opened 2 years ago
perl eval block should generate a try block instead of a syntax error. Catch any exception and set the message in $@ else clear that special variable. Change die to raise an exception instead of calling sys.exit().
$@
die
sys.exit()
Fixed in https://github.com/snoopyjc/pythonizer
perl eval block should generate a try block instead of a syntax error. Catch any exception and set the message in
$@
else clear that special variable. Changedie
to raise an exception instead of callingsys.exit()
.