aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/tests/test_sandbox.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-07-05 14:42:49 -0400
committerJason R. Coombs <jaraco@jaraco.com>2014-07-05 14:42:49 -0400
commitc4ecbd1e58a3384a5ab730450fa5487e48b68721 (patch)
tree48c2ea3b73cd70fdb47d2c1e4d2ee966c36b5377 /setuptools/tests/test_sandbox.py
parentf3829d8bd0cd852be133f8822aa4493a7a12fd51 (diff)
downloadexternal_python_setuptools-c4ecbd1e58a3384a5ab730450fa5487e48b68721.tar.gz
external_python_setuptools-c4ecbd1e58a3384a5ab730450fa5487e48b68721.tar.bz2
external_python_setuptools-c4ecbd1e58a3384a5ab730450fa5487e48b68721.zip
Since Python 3 will always need the _execfile functionality (to fulfill the test in test_sandbox), this functionality should become part of the core implementation.
Diffstat (limited to 'setuptools/tests/test_sandbox.py')
-rw-r--r--setuptools/tests/test_sandbox.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_sandbox.py b/setuptools/tests/test_sandbox.py
index 3dad1376..06b3d434 100644
--- a/setuptools/tests/test_sandbox.py
+++ b/setuptools/tests/test_sandbox.py
@@ -72,7 +72,7 @@ class TestSandbox(unittest.TestCase):
target = pkg_resources.resource_filename(__name__,
'script-with-bom.py')
namespace = types.ModuleType('namespace')
- setuptools.sandbox.execfile(target, vars(namespace))
+ setuptools.sandbox._execfile(target, vars(namespace))
assert namespace.result == 'passed'
if __name__ == '__main__':