softpano / pythonizer

Translator (or more correctly transcriber) from Perl to Python
http://www.softpanorama.org/Scripting/Pythonorama/Python_for_perl_programmers/Pythonizer/index.shtml
Other
39 stars 17 forks source link

return is not a function in python #61

Open snoopyjc opened 2 years ago

snoopyjc commented 2 years ago

Translation of:

return;

to:

return()

actually returns an empty tuple. The proper code should be:

return
snoopyjc commented 2 years ago

Fixed in https://github.com/snoopyjc/pythonizer