summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-05-11 18:48:38 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2015-05-11 18:48:38 (GMT)
commit59eb9a4da504315345b5b0d8fb8eebddc22ccb92 (patch)
treed86de5b0adb841e211f37adbe00ea8f9b25b343f /Misc
parent740169cd24fc108913e4480e98e608f0517a7b8a (diff)
downloadcpython-59eb9a4da504315345b5b0d8fb8eebddc22ccb92.zip
cpython-59eb9a4da504315345b5b0d8fb8eebddc22ccb92.tar.gz
cpython-59eb9a4da504315345b5b0d8fb8eebddc22ccb92.tar.bz2
asyncio: async() function is deprecated in favour of ensure_future().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 3 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c7d1f0f..e29919f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -42,7 +42,9 @@ Core and Builtins
- Issue #21354: PyCFunction_New function is exposed by python DLL again.
-- asyncio: New event loop APIs: set_task_factory() and get_task_factory()
+- asyncio: New event loop APIs: set_task_factory() and get_task_factory().
+
+- asyncio: async() function is deprecated in favour of ensure_future().
Library
-------