[Python-checkins] python/dist/src/Lib/plat-mac pimp.py,1.31,1.32
jackjansen at users.sourceforge.net
jackjansen at users.sourceforge.net
Sat Mar 13 18:03:41 EST 2004
Update of /cvsroot/python/python/dist/src/Lib/plat-mac
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23522
Modified Files:
pimp.py
Log Message:
Force option should be applied to a single package, not recursively
to its dependencies. Fixes #733819.
Index: pimp.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/pimp.py,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -d -r1.31 -r1.32
*** pimp.py 11 Mar 2004 23:03:59 -0000 1.31
--- pimp.py 13 Mar 2004 23:03:38 -0000 1.32
***************
*** 922,926 ****
for pkg, descr in prereqs:
if pkg:
! self._prepareInstall(pkg, force, recursive)
else:
self._curmessages.append("Problem with dependency: %s" % descr)
--- 922,926 ----
for pkg, descr in prereqs:
if pkg:
! self._prepareInstall(pkg, False, recursive)
else:
self._curmessages.append("Problem with dependency: %s" % descr)
More information about the Python-checkins
mailing list