¿Cuál es el equivalente en Python del siguiente código en Ruby?Python equivalente de continuaciones con Ruby
def loop
cont=nil
for i in 1..4
puts i
callcc {|continuation| cont=continuation} if i==2
end
return cont
end
> c=loop
1
2
3
4
> c.call
3
4
Referencia: Secrets of lightweight development success, Part 9: Continuations-based frameworks
No es tan fácil, consulte http://stackoverflow.com/questions/312794/#313073 – jfs