summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuel Arias <emmanuelarias30@gmail.com>2019-09-10 08:46:12 -0300
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-09-10 04:46:12 -0700
commit9008be303a89bfab8c3314c6a42330b5523adc8b (patch)
tree3dea5bc60360ec41f6984a927ba628947c8e4589
parent57ea33560662e0f20a3b0334bb20065771edf4da (diff)
downloadcpython-git-9008be303a89bfab8c3314c6a42330b5523adc8b.tar.gz
bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [queue] (GH-13950)
This PR deprecate explicit loop parameters in all public asyncio APIs This issues is split to be easier to review. fourth step: queue.py https://bugs.python.org/issue36373
-rw-r--r--Doc/library/asyncio-queue.rst4
-rw-r--r--Lib/asyncio/queues.py4
2 files changed, 8 insertions, 0 deletions
diff --git a/Doc/library/asyncio-queue.rst b/Doc/library/asyncio-queue.rst
index 7be1023c80..e7775da54f 100644
--- a/Doc/library/asyncio-queue.rst
+++ b/Doc/library/asyncio-queue.rst
@@ -32,6 +32,10 @@ Queue
the queue is always known and can be returned by calling the
:meth:`qsize` method.
+ .. deprecated-removed:: 3.8 3.10
+ The *loop* parameter.
+
+
This class is :ref:`not thread safe <asyncio-multithreading>`.
.. attribute:: maxsize
diff --git a/Lib/asyncio/queues.py b/Lib/asyncio/queues.py
index 2a8d3e7604..c96b4a0c1b 100644
--- a/Lib/asyncio/queues.py
+++ b/Lib/asyncio/queues.py
@@ -2,6 +2,7 @@ __all__ = ('Queue', 'PriorityQueue', 'LifoQueue', 'QueueFull', 'QueueEmpty')
import collections
import heapq
+import warnings
from . import events
from . import locks
@@ -34,6 +35,9 @@ class Queue:
self._loop = events.get_event_loop()
else:
self._loop = loop
+ warnings.warn("The loop argument is deprecated since Python 3.8, "
+ "and scheduled for removal in Python 3.10.",
+ DeprecationWarning, stacklevel=2)
self._maxsize = maxsize
# Futures.