commit | 7264e92b718d307cc499b2f10eab7644b00f0499 | [log] [tgz] |
---|---|---|
author | Andrew Svetlov <andrew.svetlov@gmail.com> | Wed Sep 11 11:20:24 2019 +0300 |
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | Wed Sep 11 01:20:24 2019 -0700 |
tree | 7c1d18de546bd8373eeb899b8cf3824874a30dfc | |
parent | efd5741ae953e50a6654e04cf731da86a1307296 [diff] [blame] |
bpo-36373: Fix deprecation warnings (GH-15889) https://bugs.python.org/issue36373
diff --git a/Lib/asyncio/queues.py b/Lib/asyncio/queues.py index c96b4a0..390ae9a 100644 --- a/Lib/asyncio/queues.py +++ b/Lib/asyncio/queues.py
@@ -45,7 +45,7 @@ # Futures. self._putters = collections.deque() self._unfinished_tasks = 0 - self._finished = locks.Event(loop=self._loop) + self._finished = locks.Event(loop=loop) self._finished.set() self._init(maxsize)