[Python-Dev] 2.4 & 2.5 beta 3 crash (original) (raw)
Neal Norwitz nnorwitz at gmail.com
Fri Aug 18 09:29:00 CEST 2006
- Previous message: [Python-Dev] 2.4 & 2.5 beta 3 crash
- Next message: [Python-Dev] 2.4 & 2.5 beta 3 crash
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
I did something similar to what Andrew suggested.
Could everyone interested take a look and offer more test cases?
n
On 8/17/06, A.M. Kuchling <amk at amk.ca> wrote:
On Fri, Aug 18, 2006 at 12:26:33AM +0200, Armin Rigo wrote: > Without more inspection, I'd say that this looks like it won't do the > right thing about nested finally's, as in:
I guess it'll have to loop back up through the block stack: for (j=i- 1; j>=0; j--) { switch (c->u->ufblock[j].fbtype) { case FINALLYTRY: raise error; case LOOP: j=0; /* Exit the loop */ break; default: break; } } --amk
Python-Dev mailing list Python-Dev at python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/nnorwitz%40gmail.com
- Previous message: [Python-Dev] 2.4 & 2.5 beta 3 crash
- Next message: [Python-Dev] 2.4 & 2.5 beta 3 crash
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]