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 577561382C5 for ; Mon, 30 Apr 2018 19:28:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 683ABE0828; Mon, 30 Apr 2018 19:28:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 4735DE0828 for ; Mon, 30 Apr 2018 19:28:13 +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 26549335C90 for ; Mon, 30 Apr 2018 19:28:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2D28526C for ; Mon, 30 Apr 2018 19:28: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: <1525115107.2bd3d97d18644f2dc348df808a0f32d4d36e7120.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/AbstractPollTask.py X-VCS-Directories: pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 2bd3d97d18644f2dc348df808a0f32d4d36e7120 X-VCS-Branch: master Date: Mon, 30 Apr 2018 19:28: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-Archives-Salt: 0db6a05d-41c1-490c-ad05-a4e96108f017 X-Archives-Hash: 06bcc113da2ce0af3149f57c2ba8010b commit: 2bd3d97d18644f2dc348df808a0f32d4d36e7120 Author: Zac Medico gentoo org> AuthorDate: Mon Apr 30 19:05:07 2018 +0000 Commit: Zac Medico gentoo org> CommitDate: Mon Apr 30 19:05:07 2018 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=2bd3d97d AbstractPollTask: remove unused IO_* references Fixes: c11a6ec05f02 ("AbstractPollTask: add_reader asyncio compat (bug 654382)") pym/_emerge/AbstractPollTask.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/pym/_emerge/AbstractPollTask.py b/pym/_emerge/AbstractPollTask.py index 3a869cb46..f68cd3a15 100644 --- a/pym/_emerge/AbstractPollTask.py +++ b/pym/_emerge/AbstractPollTask.py @@ -16,15 +16,6 @@ class AbstractPollTask(AsynchronousTask): _bufsize = 4096 - @property - def _exceptional_events(self): - return self.scheduler.IO_ERR | self.scheduler.IO_NVAL - - @property - def _registered_events(self): - return self.scheduler.IO_IN | self.scheduler.IO_HUP | \ - self._exceptional_events - def isAlive(self): return bool(self._registered)