Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: cd0dc16fdc60860bb69be020518234c0e897a1fb authored by Georg Brandl on 09 July 2011, 06:56:21 UTC
Bump version to 3.2.1.
Tip revision: cd0dc16
clean.bat
@rem Used by the buildbot "clean" step.
call "%VS90COMNTOOLS%vsvars32.bat"
@echo Deleting .pyc/.pyo files ...
del /s Lib\*.pyc Lib\*.pyo
@echo Deleting test leftovers ...
rmdir /s /q build
cd PCbuild
vcbuild /clean pcbuild.sln "Release|Win32"
vcbuild /clean pcbuild.sln "Debug|Win32"
cd ..
back to top