mirror of
https://github.com/python/cpython.git
synced 2026-06-13 22:54:50 -04:00
9eea9d39c1
(so that stale test files, which can be very large, get wiped out)
11 lines
290 B
Batchfile
11 lines
290 B
Batchfile
@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 ..
|