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 asvetlov
Recipients asvetlov, yselivanov
Date 2017-12-08.08:59:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1512723580.6.0.213398074469.issue32253@psf.upfronthosting.co.za>
In-reply-to
Content
Now constructions like

await lock  # "yield from lock" can be used as well
try:
    ...
finally:
    lock.release()

and

with (yield from lock):
    ...

are supported. Let's deprecate them in favor of

async with lock:
    ...
History
Date User Action Args
2017-12-08 08:59:40asvetlovsetrecipients: + asvetlov, yselivanov
2017-12-08 08:59:40asvetlovsetmessageid: <1512723580.6.0.213398074469.issue32253@psf.upfronthosting.co.za>
2017-12-08 08:59:40asvetlovlinkissue32253 messages
2017-12-08 08:59:40asvetlovcreate