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 1STomN-0002Oi-5u for garchives@archives.gentoo.org; Mon, 14 May 2012 06:29:11 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 255E3E05BE; Mon, 14 May 2012 06:28:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id E5515E05BE for ; Mon, 14 May 2012 06:28:56 +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 578401B40ED for ; Mon, 14 May 2012 06:28:56 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 19898E5429 for ; Mon, 14 May 2012 06:28:55 +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: <1336976921.2dc778ce4b8590fb57dcc59508b3babda8513c87.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/BlockerCache.py X-VCS-Directories: pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 2dc778ce4b8590fb57dcc59508b3babda8513c87 X-VCS-Branch: master Date: Mon, 14 May 2012 06:28:55 +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: dd159bdc-d28d-4075-b04c-4b504a2e5ad6 X-Archives-Hash: a12d24d0e61be57701338a2675ffe6f8 commit: 2dc778ce4b8590fb57dcc59508b3babda8513c87 Author: Zac Medico gentoo org> AuthorDate: Mon May 14 06:28:41 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Mon May 14 06:28:41 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D2dc778ce BlockerCache: use _unicode() for pickled atoms --- pym/_emerge/BlockerCache.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/_emerge/BlockerCache.py b/pym/_emerge/BlockerCache.py index 3ec63ce..fce81f8 100644 --- a/pym/_emerge/BlockerCache.py +++ b/pym/_emerge/BlockerCache.py @@ -162,8 +162,8 @@ class BlockerCache(portage.cache.mappings.MutableMapp= ing): @param blocker_data: An object with counter and atoms attributes. @type blocker_data: BlockerData """ - self._cache_data["blockers"][_unicode(cpv)] =3D \ - (blocker_data.counter, tuple(str(x) for x in blocker_data.atoms)) + self._cache_data["blockers"][_unicode(cpv)] =3D (blocker_data.counter, + tuple(_unicode(x) for x in blocker_data.atoms)) self._modified.add(cpv) =20 def __iter__(self):