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 1RyW9Q-0003Ru-JI for garchives@archives.gentoo.org; Fri, 17 Feb 2012 22:19:36 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7C3C2E092F; Fri, 17 Feb 2012 22:19:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 4D05AE0930 for ; Fri, 17 Feb 2012 22:19:18 +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 A42B51B4008 for ; Fri, 17 Feb 2012 22:19:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 5EFAAE5400 for ; Fri, 17 Feb 2012 22:19:16 +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: <1329517085.4d4e590947553d7d57cc7d303d5d6a9a2edfd948.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/dbapi/, pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/EbuildExecuter.py pym/portage/dbapi/_MergeProcess.py X-VCS-Directories: pym/portage/dbapi/ pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 4d4e590947553d7d57cc7d303d5d6a9a2edfd948 X-VCS-Branch: master Date: Fri, 17 Feb 2012 22:19:16 +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: ee8708fd-1378-4974-9821-1c0f396227c7 X-Archives-Hash: 8add6e53e83b57812bc9cc84596eff39 commit: 4d4e590947553d7d57cc7d303d5d6a9a2edfd948 Author: Zac Medico gentoo org> AuthorDate: Fri Feb 17 22:18:05 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Fri Feb 17 22:18:05 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D4d4e5909 Remove redundant inherited __slots__ values. --- pym/_emerge/EbuildExecuter.py | 2 +- pym/portage/dbapi/_MergeProcess.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/_emerge/EbuildExecuter.py b/pym/_emerge/EbuildExecuter.p= y index 2b8f120..fd663a4 100644 --- a/pym/_emerge/EbuildExecuter.py +++ b/pym/_emerge/EbuildExecuter.py @@ -12,7 +12,7 @@ from portage.package.ebuild.doebuild import _prepare_fa= ke_distdir =20 class EbuildExecuter(CompositeTask): =20 - __slots__ =3D ("pkg", "scheduler", "settings") + __slots__ =3D ("pkg", "settings") =20 _phases =3D ("prepare", "configure", "compile", "test", "install") =20 diff --git a/pym/portage/dbapi/_MergeProcess.py b/pym/portage/dbapi/_Merg= eProcess.py index 9a185b4..301625c 100644 --- a/pym/portage/dbapi/_MergeProcess.py +++ b/pym/portage/dbapi/_MergeProcess.py @@ -21,7 +21,7 @@ class MergeProcess(SpawnProcess): """ =20 __slots__ =3D ('mycat', 'mypkg', 'settings', 'treetype', - 'vartree', 'scheduler', 'blockers', 'pkgloc', 'infloc', 'myebuild', + 'vartree', 'blockers', 'pkgloc', 'infloc', 'myebuild', 'mydbapi', 'prev_mtimes', 'unmerge', '_elog_reader_fd', '_elog_reg_id'= , '_buf', '_elog_keys', '_locked_vdb') =20