[Python-checkins] commit of r41743 - in python/trunk: Doc/ref/ref7.tex Misc/NEWS

Neal Norwitz nnorwitz at gmail.com
Sun Dec 18 06:51:36 CET 2005


On 12/17/05, Reinhold Birkenfeld <reinhold-birkenfeld-nospam at wolke7.net> wrote:
> neal.norwitz wrote:
>
> > +\keyword{finally} clause is executed.  If there is a saved exception,
> > +it is re-raised at the end of the \keyword{finally} clause.
> > +If the \keyword{finally} clause raises another exception or
> >  executes a \keyword{return} or \keyword{break} statement, the saved
> >  exception is lost.  A \keyword{continue} statement is illegal in the
> >  \keyword{finally} clause.  (The reason is a problem with the current
> [implementation].
>
> What's the status of this? Could this be addressed here, too?

AFAIK, it's not related to any of these changes.  I think mwh and
Armin know more about fixing that problem.  IIRC, it requires changes
to eval frame.

n


More information about the Python-checkins mailing list