donno2048/pygoto: Use goto in Python
2y 11mon ago by programming.dev/u/jnovinger in programming_horror@programming.dev from github.comOr a better idea: don't use goto. In any language. Especially not one that needs line numbers to work and not labels, as soon as someone edits the file utter chaos will ensue. This has all the normal downsides of gotos with labels, but with far more downsides.
It also only works for the main module and only until you hit the recursion limit.