Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 226af70a59df013eaa58b80e01f430f13fa998d3 authored by Georg Brandl on 18 March 2012, 06:34:49 UTC
Bump to 3.2.3rc2.
Tip revision: 226af70
clean-amd64.bat
@rem Used by the buildbot "clean" step.
call "%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64
@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|x64"
vcbuild /clean pcbuild.sln "Debug|x64"
cd ..
back to top