diff options
author | PJ Eby <distutils-sig@python.org> | 2005-06-12 03:07:53 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-06-12 03:07:53 +0000 |
commit | 449f35743f5d0bc97ebfdba00bb8e7acc79465af (patch) | |
tree | 7c99a2b13a950c6d1d6d7f50e3f8d34a70688b85 /setuptools/sandbox.py | |
parent | 43e707381ef328a5e7cb251463edb391aec5fd32 (diff) | |
download | external_python_setuptools-449f35743f5d0bc97ebfdba00bb8e7acc79465af.tar.gz external_python_setuptools-449f35743f5d0bc97ebfdba00bb8e7acc79465af.tar.bz2 external_python_setuptools-449f35743f5d0bc97ebfdba00bb8e7acc79465af.zip |
Rebalance responsibilities between PackageIndex, Installer, and main() so
that PackageIndex handles all downloading of any kind, Installers can be
reused for multiple packages, and main() manages temporary directories and
all communication between PackageIndex and Installer. Also, change
run_setup to take an argument sequence, because later we will probably need
other arguments to control other aspects of run_setup's behavior.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041050
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 6407947c..0e6f5964 100755 --- a/setuptools/sandbox.py +++ b/setuptools/sandbox.py @@ -8,7 +8,7 @@ __all__ = [ ] -def run_setup(setup_script, *args): +def run_setup(setup_script, args): """Run a distutils setup script, sandboxed in its directory""" old_dir = os.getcwd() |