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 B360213835A for ; Mon, 3 Aug 2020 21:42:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E72F0E0BEE; Mon, 3 Aug 2020 21:42:12 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 D089EE0BEE for ; Mon, 3 Aug 2020 21:42:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 AFB1234F1F6 for ; Mon, 3 Aug 2020 21:42:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 320D6308 for ; Mon, 3 Aug 2020 21:42:10 +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: <1596489347.639b415ff50c07a89cbf10ac0a2cff250f079cc8.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: lib/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: lib/_emerge/PollScheduler.py X-VCS-Directories: lib/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 639b415ff50c07a89cbf10ac0a2cff250f079cc8 X-VCS-Branch: master Date: Mon, 3 Aug 2020 21:42:10 +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: 9ebddd94-c198-40e9-93dc-4ca475a952d8 X-Archives-Hash: 15c542617c82864d40f40bb7a99be233 commit: 639b415ff50c07a89cbf10ac0a2cff250f079cc8 Author: Aaron Bauman gentoo org> AuthorDate: Mon Aug 3 20:20:20 2020 +0000 Commit: Zac Medico gentoo org> CommitDate: Mon Aug 3 21:15:47 2020 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=639b415f lib/_emerge/PollScheduler.py: drop unused-import * Drop unused-import * Update copyright Signed-off-by: Aaron Bauman gentoo.org> Signed-off-by: Zac Medico gentoo.org> lib/_emerge/PollScheduler.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/_emerge/PollScheduler.py b/lib/_emerge/PollScheduler.py index f51c5b005..89d940fed 100644 --- a/lib/_emerge/PollScheduler.py +++ b/lib/_emerge/PollScheduler.py @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 try: @@ -6,10 +6,8 @@ try: except ImportError: import dummy_threading as threading -import portage from portage.util.futures import asyncio from portage.util._async.SchedulerInterface import SchedulerInterface -from portage.util._eventloop.EventLoop import EventLoop from portage.util._eventloop.global_event_loop import global_event_loop from _emerge.getloadavg import getloadavg