diff options
-rw-r--r-- | pym/portage/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 68b99de6c..acf151aea 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -226,7 +226,9 @@ class _unicode_func_wrapper(object): rval = self._func(*wrapped_args, **wrapped_kwargs) - if isinstance(rval, (list, tuple)): + # Don't use isinstance() since we don't want to convert subclasses + # of tuple such as posix.stat_result in python-3.2. + if rval.__class__ in (list, tuple): decoded_rval = [] for x in rval: try: |