Author: thomas.heller Date: Fri Nov 16 08:00:30 2007 New Revision: 59016 Modified: python/branches/py3k/Tools/buildbot/clean-amd64.bat python/branches/py3k/Tools/buildbot/clean.bat Log: Use 'del' instead of rmpyc.py to remove the pyc and pyo files.
Modified: python/branches/py3k/Tools/buildbot/clean-amd64.bat ============================================================================== --- python/branches/py3k/Tools/buildbot/clean-amd64.bat (original) +++ python/branches/py3k/Tools/buildbot/clean-amd64.bat Fri Nov 16 08:00:30 2007 @@ -2,5 +2,5 @@ call "%VS71COMNTOOLS%vsvars32.bat" cd PCbuild @echo Deleting .pyc/.pyo files ... -python.exe rmpyc.py +del /s Lib\*.pyc Lib\*.pyo devenv.com /clean ReleaseAMD64 pcbuild.sln Modified: python/branches/py3k/Tools/buildbot/clean.bat ============================================================================== --- python/branches/py3k/Tools/buildbot/clean.bat (original) +++ python/branches/py3k/Tools/buildbot/clean.bat Fri Nov 16 08:00:30 2007 @@ -2,6 +2,6 @@ call "%VS71COMNTOOLS%vsvars32.bat" cd PCbuild @echo Deleting .pyc/.pyo files ... -python_d.exe rmpyc.py +del /s Lib\*.pyc Lib\*.pyo devenv.com /clean Release pcbuild.sln devenv.com /clean Debug pcbuild.sln _______________________________________________ Python-3000-checkins mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000-checkins
