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 1RB70R-0002zp-Jn for garchives@archives.gentoo.org; Tue, 04 Oct 2011 15:34:07 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 97F2C21C07C; Tue, 4 Oct 2011 15:33:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 641A921C07C for ; Tue, 4 Oct 2011 15:33:58 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EDD5E1B4017 for ; Tue, 4 Oct 2011 15:33:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 1316B80042 for ; Tue, 4 Oct 2011 15:33:57 +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: <61cc6d8f20de04d4b4f46618411a0fb568d0b0ab.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/repository/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/repository/config.py X-VCS-Directories: pym/portage/repository/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 61cc6d8f20de04d4b4f46618411a0fb568d0b0ab Date: Tue, 4 Oct 2011 15:33:57 +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: X-Archives-Hash: d39291f05a5df70d9c66e7c2f267be71 commit: 61cc6d8f20de04d4b4f46618411a0fb568d0b0ab Author: Zac Medico gentoo org> AuthorDate: Tue Oct 4 15:33:41 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Oct 4 15:33:41 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D61cc6d8f RepoConfig: sort __slots__ --- pym/portage/repository/config.py | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/pym/portage/repository/config.py b/pym/portage/repository/co= nfig.py index 979b859..e3027a7 100644 --- a/pym/portage/repository/config.py +++ b/pym/portage/repository/config.py @@ -43,10 +43,12 @@ def _gen_valid_repo(name): class RepoConfig(object): """Stores config of one repository""" =20 - __slots__ =3D ['aliases', 'eclass_overrides', 'eclass_locations', 'loca= tion', 'user_location', 'masters', 'main_repo', - 'missing_repo_name', 'name', 'priority', 'sync', 'format', 'sign_manif= est', 'thin_manifest', - 'allow_missing_manifest', 'create_manifest', 'disable_manifest', 'cach= e_is_authoritative', - 'trust_authoritative_cache', 'manifest_hashes'] + __slots__ =3D ('aliases', 'allow_missing_manifest', + 'cache_is_authoritative', 'create_manifest', 'disable_manifest', + 'eclass_overrides', 'eclass_locations', 'format', 'location', + 'main_repo', 'manifest_hashes', 'masters', 'missing_repo_name', + 'name', 'priority', 'sign_manifest', 'sync', 'thin_manifest', + 'trust_authoritative_cache', 'user_location') =20 def __init__(self, name, repo_opts): """Build a RepoConfig with options in repo_opts