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 hagen
Recipients hagen
Date 2009-06-10.16:08:09
SpamBayes Score 0.023184441
Marked as misclassified No
Message-id <1244650092.01.0.50718314097.issue6256@psf.upfronthosting.co.za>
In-reply-to
Content
This leads to unhelpful warnings:

>>> with contextlib.nested(open("x", "w")) as f: pass
... 
/usr/local/lib/python3.1/contextlib.py:17: DeprecationWarning:
With-statements now directly support multiple context managers
  return next(self.gen)

Patch is attached.
History
Date User Action Args
2009-06-10 16:08:12hagensetrecipients: + hagen
2009-06-10 16:08:12hagensetmessageid: <1244650092.01.0.50718314097.issue6256@psf.upfronthosting.co.za>
2009-06-10 16:08:09hagenlinkissue6256 messages
2009-06-10 16:08:09hagencreate