Improve a comment.
authorArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>
Thu, 25 Aug 2011 21:50:06 +0000 (23:50 +0200)
committerArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>
Thu, 25 Aug 2011 21:50:06 +0000 (23:50 +0200)
pym/portage/__init__.py

index 2a2eb99ade21f3e389ce429c46606e5ef0bf763b..78d9b54751f3c09d69caa89f07c62a56a2f6223f 100644 (file)
@@ -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: