[Python-checkins] python/nondist/sandbox/setuptools/setuptools sandbox.py, 1.1, 1.2
pje@users.sourceforge.net
pje at users.sourceforge.net
Sun Jun 12 05:07:55 CEST 2005
Update of /cvsroot/python/python/nondist/sandbox/setuptools/setuptools
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31950/setuptools
Modified Files:
sandbox.py
Log Message:
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.
Index: sandbox.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/setuptools/sandbox.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- sandbox.py 12 Jun 2005 01:12:34 -0000 1.1
+++ sandbox.py 12 Jun 2005 03:07:53 -0000 1.2
@@ -8,7 +8,7 @@
]
-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()
More information about the Python-checkins
mailing list