Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: e9f73ac1fd5184173179596d4fa5caa45682d301 authored by Larry Hastings on 10 February 2014, 22:45:05 UTC
Python 3.4.0rc1: Version bump.
Tip revision: e9f73ac
clean-amd64.bat
@rem Used by the buildbot "clean" step.
call "%VS100COMNTOOLS%\..\..\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
msbuild /target:clean pcbuild.sln /p:Configuration=Release /p:PlatformTarget=x64
msbuild /target:clean pcbuild.sln /p:Configuration=Debug /p:PlatformTarget=x64
cd ..
back to top