mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Issue #29314: Merge with 3.6
This commit is contained in:
commit
189413dcfe
1 changed files with 2 additions and 1 deletions
|
@ -487,7 +487,8 @@ def async_(coro_or_future, *, loop=None):
|
|||
"""
|
||||
|
||||
warnings.warn("asyncio.async() function is deprecated, use ensure_future()",
|
||||
DeprecationWarning)
|
||||
DeprecationWarning,
|
||||
stacklevel=2)
|
||||
|
||||
return ensure_future(coro_or_future, loop=loop)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue