summaryrefslogtreecommitdiffstats
path: root/pym/portage/__init__.py
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>2011-08-25 23:50:06 +0200
committerArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>2011-08-25 23:50:06 +0200
commit2aea972aa0c36531445172500ded32d7ddc07762 (patch)
tree7eda993fad3bd938eee082241796fda3579aa1e8 /pym/portage/__init__.py
parent48f340f78ef75efe8813045b9a75aa9839b89690 (diff)
downloadportage-2aea972aa0c36531445172500ded32d7ddc07762.tar.gz
portage-2aea972aa0c36531445172500ded32d7ddc07762.tar.bz2
portage-2aea972aa0c36531445172500ded32d7ddc07762.zip
Improve a comment.
Diffstat (limited to 'pym/portage/__init__.py')
-rw-r--r--pym/portage/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index 2a2eb99ad..78d9b5475 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -215,7 +215,7 @@ class _unicode_func_wrapper(object):
rval = self._func(*wrapped_args, **wrapped_kwargs)
# 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 >=3.2.
if rval.__class__ in (list, tuple):
decoded_rval = []
for x in rval: