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 jwp
Recipients jwp, ncoghlan
Date 2009-03-16.02:34:33
SpamBayes Score 0.00035414935
Marked as misclassified No
Message-id <1237170877.57.0.28962139012.issue5251@psf.upfronthosting.co.za>
In-reply-to
Content
I tested the attached script against v2.

It further identifies consistencies between nested with-statements and
nested() that should exist(and do in v2). It answers the question: what
is the effect of a SkipStatement exception on another, outer CM?

with nested(outer(), trap(), fail()):
 ...

That is, validate that outer()'s __exit__ invocation is not given an
exception.

This is probably an obvious effect of the patch, but I think it merited
a test.
History
Date User Action Args
2009-03-16 02:34:38jwpsetrecipients: + jwp, ncoghlan
2009-03-16 02:34:37jwpsetmessageid: <1237170877.57.0.28962139012.issue5251@psf.upfronthosting.co.za>
2009-03-16 02:34:35jwplinkissue5251 messages
2009-03-16 02:34:34jwpcreate