From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 55B30138359 for ; Mon, 3 Aug 2020 19:31:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1BA0E0B9A; Mon, 3 Aug 2020 19:31:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BC532E0B9A for ; Mon, 3 Aug 2020 19:31:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 932ED34F222 for ; Mon, 3 Aug 2020 19:30:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 84B0C327 for ; Mon, 3 Aug 2020 19:30:52 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1596482568.d4979a4a2fc6e99a48bd417eae26ce77ae288444.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: lib/portage/util/futures/_asyncio/ X-VCS-Repository: proj/portage X-VCS-Files: lib/portage/util/futures/_asyncio/tasks.py X-VCS-Directories: lib/portage/util/futures/_asyncio/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: d4979a4a2fc6e99a48bd417eae26ce77ae288444 X-VCS-Branch: master Date: Mon, 3 Aug 2020 19:30:52 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 298934ba-4e91-44df-90fc-7cceeb087815 X-Archives-Hash: 9c7a08990322f72344652d107c04b3dc commit: d4979a4a2fc6e99a48bd417eae26ce77ae288444 Author: Aaron Bauman gentoo org> AuthorDate: Mon Aug 3 19:06:04 2020 +0000 Commit: Zac Medico gentoo org> CommitDate: Mon Aug 3 19:22:48 2020 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=d4979a4a lib/portage/util/futures/_asyncio/tasks.py: drop unused-import * Drop unused import * Update copyright Signed-off-by: Aaron Bauman gentoo.org> Signed-off-by: Zac Medico gentoo.org> lib/portage/util/futures/_asyncio/tasks.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/portage/util/futures/_asyncio/tasks.py b/lib/portage/util/futures/_asyncio/tasks.py index 84c6f4462..c9db3146e 100644 --- a/lib/portage/util/futures/_asyncio/tasks.py +++ b/lib/portage/util/futures/_asyncio/tasks.py @@ -1,4 +1,4 @@ -# Copyright 2018 Gentoo Foundation +# Copyright 2018-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 ___all___ = ( @@ -14,10 +14,6 @@ import portage portage.proxy.lazyimport.lazyimport(globals(), 'portage.util.futures:asyncio', ) -from portage.util._eventloop.global_event_loop import ( - global_event_loop as _global_event_loop, -) - def wait(futures, loop=None, timeout=None, return_when=ALL_COMPLETED): """