[Numpy-discussion] Python needs goto

Charles R Harris charlesr.harris at gmail.com
Thu Sep 24 01:24:21 EDT 2015


At last, goto for python <https://github.com/snoack/python-goto>!

Usage:

from goto import with_goto

@with_goto
def range(start, stop):
    i = start
    result = []

    label .begin
    if i == stop:
        goto .end

    result.append(i)
    i += 1
    goto .begin

    label .end
    return result


HT: LWN

Chuck
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/numpy-discussion/attachments/20150923/823afd25/attachment.html>


More information about the NumPy-Discussion mailing list