From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RyW7T-0003DI-7q for garchives@archives.gentoo.org; Fri, 17 Feb 2012 22:17:35 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9FB1BE08CE; Fri, 17 Feb 2012 22:17:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 68D0CE08CE for ; Fri, 17 Feb 2012 22:17:26 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BF2801B4002 for ; Fri, 17 Feb 2012 22:17:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 82F5EE5400 for ; Fri, 17 Feb 2012 22:17:24 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1329517019.d6081e461bc6d14fb8d63e6346fdfda7fc0cc188.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/util/_eventloop/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/util/_eventloop/EventLoop.py X-VCS-Directories: pym/portage/util/_eventloop/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: d6081e461bc6d14fb8d63e6346fdfda7fc0cc188 X-VCS-Branch: master Date: Fri, 17 Feb 2012 22:17:24 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 8c8f1b63-494d-42be-97f0-4cc28db62456 X-Archives-Hash: f4d943651f6fb0bbf2a98b1224eff86b commit: d6081e461bc6d14fb8d63e6346fdfda7fc0cc188 Author: Zac Medico gentoo org> AuthorDate: Fri Feb 17 22:16:59 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Fri Feb 17 22:16:59 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Dd6081e46 EventLoop: fix _io_handler_class "f" attribute --- pym/portage/util/_eventloop/EventLoop.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pym/portage/util/_eventloop/EventLoop.py b/pym/portage/util/= _eventloop/EventLoop.py index 475a4a9..9e4ac28 100644 --- a/pym/portage/util/_eventloop/EventLoop.py +++ b/pym/portage/util/_eventloop/EventLoop.py @@ -30,7 +30,7 @@ class EventLoop(object): __slots__ =3D ("args", "callback", "calling", "source_id") =20 class _io_handler_class(SlotObject): - __slots__ =3D ("args", "callback", "fd", "source_id") + __slots__ =3D ("args", "callback", "f", "source_id") =20 class _timeout_handler_class(SlotObject): __slots__ =3D ("args", "function", "calling", "interval", "source_id",