diff options
author | Alex Grönholm <alex.gronholm@nextday.fi> | 2019-05-30 15:30:09 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-05-30 15:30:09 (GMT) |
commit | 98ef92002ec289bf8086b0ef3d4f96c2589f4e68 (patch) | |
tree | 0c3420f69cef6e0c306af7508fdd06415b39a853 /Misc/NEWS.d | |
parent | 25ee0c3bf10820496448e2886069f9c2794be7ac (diff) | |
download | cpython-98ef92002ec289bf8086b0ef3d4f96c2589f4e68.zip cpython-98ef92002ec289bf8086b0ef3d4f96c2589f4e68.tar.gz cpython-98ef92002ec289bf8086b0ef3d4f96c2589f4e68.tar.bz2 |
bpo-36999: Add asyncio.Task.get_coro() (GH-13680)
https://bugs.python.org/issue36999
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-05-30-13-30-46.bpo-36999.EjY_L2.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-05-30-13-30-46.bpo-36999.EjY_L2.rst b/Misc/NEWS.d/next/Library/2019-05-30-13-30-46.bpo-36999.EjY_L2.rst new file mode 100644 index 0000000..5c897fb --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-05-30-13-30-46.bpo-36999.EjY_L2.rst @@ -0,0 +1,2 @@ +Add the ``asyncio.Task.get_coro()`` method to publicly expose the tasks's +coroutine object. |