Issue #29314: Set the stacklevel to two in asyncio.async() Deprecation Warning

This commit is contained in:
Mariatta Wijaya 2017-02-06 22:03:00 -08:00
parent 81b8977349
commit 4e7ff8b1a3
1 changed files with 2 additions and 1 deletions

View File

@ -535,7 +535,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)