diff options
Diffstat (limited to 'setuptools/sandbox.py')
-rwxr-xr-x | setuptools/sandbox.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/setuptools/sandbox.py b/setuptools/sandbox.py index b90d1e1b..f99532f6 100755 --- a/setuptools/sandbox.py +++ b/setuptools/sandbox.py @@ -8,6 +8,9 @@ import re import contextlib import pickle +import six +from six.moves import builtins + import pkg_resources if os.name == "java": @@ -22,9 +25,6 @@ _open = open from distutils.errors import DistutilsError from pkg_resources import working_set -from setuptools import compat -from setuptools.compat import builtins - __all__ = [ "AbstractSandbox", "DirectorySandbox", "SandboxViolation", "run_setup", ] @@ -125,7 +125,7 @@ def save_modules(): class_, exc, tb = sys.exc_info() new_cls = pickle.loads(saved_cls) new_exc = pickle.loads(saved_exc) - compat.reraise(new_cls, new_exc, tb) + six.reraise(new_cls, new_exc, tb) def _clear_modules(module_names): |