diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-05-13 18:10:38 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-05-13 18:10:38 (GMT) |
commit | 29f88c22e69a33dcf6d66f1d141c111188c5d212 (patch) | |
tree | 98de80cde64578ce11bcdb71a292b974bea6d920 /Misc | |
parent | 77772c0e7b8bcc21ddcfbc1be84df34bbd84942b (diff) | |
download | cpython-29f88c22e69a33dcf6d66f1d141c111188c5d212.zip cpython-29f88c22e69a33dcf6d66f1d141c111188c5d212.tar.gz cpython-29f88c22e69a33dcf6d66f1d141c111188c5d212.tar.bz2 |
Issue 24178: support 'async with' for asyncio locks.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -116,6 +116,9 @@ Library - asyncio: async() function is deprecated in favour of ensure_future(). +- Issue 24178: asyncio.Lock, Condition, Semaphore, and BoundedSemaphore + support new 'async with' syntax. Contributed by Yury Selivanov. + Tests ----- |