Issue #29314: Merge with 3.6

This commit is contained in:
Mariatta Wijaya 2017-02-06 22:06:04 -08:00
commit 189413dcfe
1 changed files with 2 additions and 1 deletions

View File

@ -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)