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 1QUerK-0007Bo-2H for garchives@archives.gentoo.org; Thu, 09 Jun 2011 13:01:14 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2D1A11C021; Thu, 9 Jun 2011 13:01:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id EE92F1C021 for ; Thu, 9 Jun 2011 13:01:04 +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 814481B401F for ; Thu, 9 Jun 2011 13:01:04 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id E94228003C for ; Thu, 9 Jun 2011 13:01:03 +0000 (UTC) From: "Arfrever Frehtes Taifersar Arahesis" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arfrever Frehtes Taifersar Arahesis" Message-ID: Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/util/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/util/__init__.py X-VCS-Directories: pym/portage/util/ X-VCS-Committer: arfrever X-VCS-Committer-Name: Arfrever Frehtes Taifersar Arahesis X-VCS-Revision: a2e391558915c29a5d1771bed2f39173398b289d Date: Thu, 9 Jun 2011 13:01:03 +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: 934222aef47d2f0bcc7abc77b2386bdd commit: a2e391558915c29a5d1771bed2f39173398b289d Author: Arfrever Frehtes Taifersar Arahesis Gentoo Org> AuthorDate: Thu Jun 9 13:00:55 2011 +0000 Commit: Arfrever Frehtes Taifersar Arahesis gentoo org> CommitDate: Thu Jun 9 13:00:55 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Da2e39155 Fix a typo and update a comment. --- pym/portage/util/__init__.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/portage/util/__init__.py b/pym/portage/util/__init__.py index 28e9428..8c53522 100644 --- a/pym/portage/util/__init__.py +++ b/pym/portage/util/__init__.py @@ -535,8 +535,8 @@ def getconfig(mycfg, tolerant=3D0, allow_sourcing=3DF= alse, expand=3DTrue): expand_map =3D {} mykeys =3D {} try: - # NOTE: shex doesn't seem to support unicode objects - # (produces spurious \0 characters with python-2.6.2) + # NOTE: shlex doesn't support unicode objects with Python 2 + # (produces spurious \0 characters). if sys.hexversion < 0x3000000: content =3D open(_unicode_encode(mycfg, encoding=3D_encodings['fs'], errors=3D'strict'), 'rb').read()