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 ncoghlan
Recipients jwp, ncoghlan
Date 2009-02-25.11:36:59
SpamBayes Score 5.196295e-07
Marked as misclassified No
Message-id <1235561823.35.0.0632785074553.issue5251@psf.upfronthosting.co.za>
In-reply-to
Content
That's an interesting problem... since one of the things I like about
CMs is the ability to turn pretty much any block of code into a context
manager by substituting a yield statement at the appropriate point, not
having the ability to skip the yield is actually something of a hole in
the design.

This will need a bit of python-dev discussion, and may even turn into a
PEP (assuming we do go ahead with adding a SkipBlock exception and
modifying the with statement to check for it being raised by __enter__()
methods).
History
Date User Action Args
2009-02-25 11:37:03ncoghlansetrecipients: + ncoghlan, jwp
2009-02-25 11:37:03ncoghlansetmessageid: <1235561823.35.0.0632785074553.issue5251@psf.upfronthosting.co.za>
2009-02-25 11:37:01ncoghlanlinkissue5251 messages
2009-02-25 11:36:59ncoghlancreate