Tim Delaney wrote: > Also, within a for-loop or block-statement, we could have ``raise > <exception>`` be equivalent to:: > > arg = <exception> > continue For this to work, builtin next() would need to be a bit smarter ... specifically, for an old-style iterator, any non-Iteration exception would need to be re-raised there. Tim Delaney