summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/tasks.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2022-10-07 00:30:27 (GMT)
committerGitHub <noreply@github.com>2022-10-07 00:30:27 (GMT)
commit09de8d7aafece264720afbca3052a63eee413b73 (patch)
treebce00a034fb3e8ca5235aac60d549d5c8415d610 /Lib/asyncio/tasks.py
parentc46a423a520b797c3f8c81fef19293864742755d (diff)
downloadcpython-09de8d7aafece264720afbca3052a63eee413b73.zip
cpython-09de8d7aafece264720afbca3052a63eee413b73.tar.gz
cpython-09de8d7aafece264720afbca3052a63eee413b73.tar.bz2
GH-90985: Revert "Deprecate passing a message into cancel()" (#97999)
Reason: we were too hasty in deprecating this. We shouldn't deprecate it before we have a replacement.
Diffstat (limited to 'Lib/asyncio/tasks.py')
-rw-r--r--Lib/asyncio/tasks.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/asyncio/tasks.py b/Lib/asyncio/tasks.py
index 8d6dfcd..5710137 100644
--- a/Lib/asyncio/tasks.py
+++ b/Lib/asyncio/tasks.py
@@ -210,11 +210,6 @@ class Task(futures._PyFuture): # Inherit Python Task implementation
This also increases the task's count of cancellation requests.
"""
- if msg is not None:
- warnings.warn("Passing 'msg' argument to Task.cancel() "
- "is deprecated since Python 3.11, and "
- "scheduled for removal in Python 3.14.",
- DeprecationWarning, stacklevel=2)
self._log_traceback = False
if self.done():
return False