diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2013-06-19 15:11:01 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-06-19 15:11:01 -0500 |
| commit | 1f98cb2880de5d716933ada52604044cbe5b3cbc (patch) | |
| tree | 468d8b819af1ef8c90304ef65fba985b85487c1e /setuptools/sandbox.py | |
| parent | 48b0d2bfbd4aee6cc34ae6656d7c7033298f5ac0 (diff) | |
| parent | 1c5400fd8216c101b7d120e1b079e46add869ade (diff) | |
| download | python-setuptools-git-1f98cb2880de5d716933ada52604044cbe5b3cbc.tar.gz | |
Merged in vinay.sajip/setuptools/single-codebase (pull request #5)
Additional changes relating to single codebase support
Diffstat (limited to 'setuptools/sandbox.py')
| -rwxr-xr-x | setuptools/sandbox.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/sandbox.py b/setuptools/sandbox.py index 441cae01..4e527446 100755 --- a/setuptools/sandbox.py +++ b/setuptools/sandbox.py @@ -86,7 +86,7 @@ def run_setup(setup_script, args): # exclude any encodings modules. See #285 and not mod_name.startswith('encodings.') ] - map(sys.modules.__delitem__, del_modules) + list(map(sys.modules.__delitem__, del_modules)) os.chdir(old_dir) sys.path[:] = save_path sys.argv[:] = save_argv |
