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 1Qwhoc-0001c4-8B for garchives@archives.gentoo.org; Thu, 25 Aug 2011 21:50:22 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B750421C135; Thu, 25 Aug 2011 21:50:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 843BC21C135 for ; Thu, 25 Aug 2011 21:50:14 +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 CFD551B4026 for ; Thu, 25 Aug 2011 21:50:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 1E7DA80040 for ; Thu, 25 Aug 2011 21:50:13 +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: <2aea972aa0c36531445172500ded32d7ddc07762.arfrever@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: arfrever X-VCS-Committer-Name: Arfrever Frehtes Taifersar Arahesis X-VCS-Revision: 2aea972aa0c36531445172500ded32d7ddc07762 Date: Thu, 25 Aug 2011 21:50:13 +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: 35420fef9ac9ec9cf67ba0b5d610091c commit: 2aea972aa0c36531445172500ded32d7ddc07762 Author: Arfrever Frehtes Taifersar Arahesis Gentoo Org> AuthorDate: Thu Aug 25 21:50:06 2011 +0000 Commit: Arfrever Frehtes Taifersar Arahesis gentoo org> CommitDate: Thu Aug 25 21:50:06 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D2aea972a Improve a comment. --- pym/portage/__init__.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 2a2eb99..78d9b54 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -215,7 +215,7 @@ class _unicode_func_wrapper(object): rval =3D self._func(*wrapped_args, **wrapped_kwargs) =20 # Don't use isinstance() since we don't want to convert subclasses - # of tuple such as posix.stat_result in python-3.2. + # of tuple such as posix.stat_result in Python >=3D3.2. if rval.__class__ in (list, tuple): decoded_rval =3D [] for x in rval: