19877230 importing native module causes python 3.4 to fail further imports from .py files
authorJohn Beck <John.Beck@Oracle.COM>
Wed, 22 Oct 2014 15:26:11 -0700
changeset 2168 416ecfb814c9
parent 2167 c9ff638a3018
child 2169 f78677fd112a
19877230 importing native module causes python 3.4 to fail further imports from .py files
components/python/python34/patches/06-solaris-64-bit.patch
--- a/components/python/python34/patches/06-solaris-64-bit.patch	Wed Oct 22 14:45:12 2014 -0700
+++ b/components/python/python34/patches/06-solaris-64-bit.patch	Wed Oct 22 15:26:11 2014 -0700
@@ -126,7 +126,7 @@
  
 --- Python-3.4.1/Lib/importlib/_bootstrap.py.~1~	2014-05-18 22:19:38.000000000 -0700
 +++ Python-3.4.1/Lib/importlib/_bootstrap.py	2014-08-27 08:46:00.145242823 -0700
-@@ -2046,6 +2046,15 @@
+@@ -2046,6 +2046,14 @@
                  is_namespace = _path_isdir(base_path)
          # Check for a file w/ a proper suffix exists.
          for suffix, loader_class in self._loaders:
@@ -137,7 +137,6 @@
 +                full_path = _path_join(self.path, '64', tail_module + suffix)
 +                _verbose_message('trying {}'.format(full_path), verbosity=2)
 +                if _path_isfile(full_path):
-+                    self.path += '/64'
 +                    return self._get_spec(loader_class, fullname, full_path, None, target)
              full_path = _path_join(self.path, tail_module + suffix)
              _verbose_message('trying {}'.format(full_path), verbosity=2)