summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Library/2018-07-29-11-32-56.bpo-34270.aL6P-3.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/NEWS.d/next/Library/2018-07-29-11-32-56.bpo-34270.aL6P-3.rst')
-rw-r--r--Misc/NEWS.d/next/Library/2018-07-29-11-32-56.bpo-34270.aL6P-3.rst8
1 files changed, 0 insertions, 8 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-07-29-11-32-56.bpo-34270.aL6P-3.rst b/Misc/NEWS.d/next/Library/2018-07-29-11-32-56.bpo-34270.aL6P-3.rst
deleted file mode 100644
index a66e110..0000000
--- a/Misc/NEWS.d/next/Library/2018-07-29-11-32-56.bpo-34270.aL6P-3.rst
+++ /dev/null
@@ -1,8 +0,0 @@
-The default asyncio task class now always has a name which can be get or set
-using two new methods (:meth:`~asyncio.Task.get_name()` and
-:meth:`~asyncio.Task.set_name`) and is visible in the :func:`repr` output. An
-initial name can also be set using the new ``name`` keyword argument to
-:func:`asyncio.create_task` or the
-:meth:`~asyncio.AbstractEventLoop.create_task` method of the event loop.
-If no initial name is set, the default Task implementation generates a name
-like ``Task-1`` using a monotonic counter.