This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rhettinger
Recipients cool-RR, rhettinger, terry.reedy
Date 2014-07-03.21:16:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1404422215.94.0.502745480396.issue20663@psf.upfronthosting.co.za>
In-reply-to
Content
Your suggestion and an example appears to have been taken directly from the itertools recipes:

def iter_except(func, exception, first=None):
    """ Call a function repeatedly until an exception is raised.

    Converts a call-until-exception interface to an iterator interface.
    Like __builtin__.iter(func, sentinel) but uses an exception instead
    of a sentinel to end the loop.

    Examples:
        bsddbiter = iter_except(db.next, bsddb.error, db.first)
        heapiter = iter_except(functools.partial(heappop, h), IndexError)
        dictiter = iter_except(d.popitem, KeyError)
        dequeiter = iter_except(d.popleft, IndexError)
        queueiter = iter_except(q.get_nowait, Queue.Empty)
        setiter = iter_except(s.pop, KeyError)

    """
    try:
        if first is not None:
            yield first()
        while 1:
            yield func()
    except exception:
        pass

FWIW, this idea was explored before an aside from the examples given in the docstring above, it seems to have very limited application.  Accordingly, it was left as a recipe and not added to itertools or the the iter() function.
History
Date User Action Args
2014-07-03 21:16:55rhettingersetrecipients: + rhettinger, terry.reedy, cool-RR
2014-07-03 21:16:55rhettingersetmessageid: <1404422215.94.0.502745480396.issue20663@psf.upfronthosting.co.za>
2014-07-03 21:16:55rhettingerlinkissue20663 messages
2014-07-03 21:16:55rhettingercreate