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 <gentoo-commits+bounces-396700-garchives=archives.gentoo.org@lists.gentoo.org>) id 1RJzh6-0004qO-9h for garchives@archives.gentoo.org; Sat, 29 Oct 2011 03:34:52 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F0F8B21C021; Sat, 29 Oct 2011 03:34:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id BB52F21C021 for <gentoo-commits@lists.gentoo.org>; Sat, 29 Oct 2011 03:34:44 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3DEF81B4020 for <gentoo-commits@lists.gentoo.org>; Sat, 29 Oct 2011 03:34:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 5D5B780042 for <gentoo-commits@lists.gentoo.org>; Sat, 29 Oct 2011 03:34:43 +0000 (UTC) From: "Zac Medico" <zmedico@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" <zmedico@gentoo.org> Message-ID: <81e1f72cc7c749b4c46bac995e144678dea2d3fe.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/__init__.py X-VCS-Directories: pym/portage/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 81e1f72cc7c749b4c46bac995e144678dea2d3fe Date: Sat, 29 Oct 2011 03:34:43 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 1d9d1cfb4a3e6cc5edecbccc690217a4 commit: 81e1f72cc7c749b4c46bac995e144678dea2d3fe Author: Zac Medico <zmedico <AT> gentoo <DOT> org> AuthorDate: Sat Oct 29 03:34:34 2011 +0000 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org> CommitDate: Sat Oct 29 03:34:34 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D81e1f72c _trees_dict: define __slots__ --- pym/portage/__init__.py | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index e4abab3..27353a1 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -480,6 +480,7 @@ def portageexit(): close_portdbapi_caches() =20 class _trees_dict(dict): + __slots__ =3D ('_running_eroot', '_target_eroot',) def __init__(self, *pargs, **kargs): dict.__init__(self, *pargs, **kargs) self._running_eroot =3D None