2019-08-13 00:14:39 +03:00
|
|
|
@echo off
|
|
|
|
|
|
|
|
pushd %~dp0
|
|
|
|
del /s /q *.pyc
|
|
|
|
del /s /q *.pyo
|
2019-09-14 05:59:11 +03:00
|
|
|
for /d /r %%i in (__pycache__.*) do rd "%%i"
|
2019-08-13 00:14:39 +03:00
|
|
|
popd
|
|
|
|
|
|
|
|
pushd %~dp0\src
|
|
|
|
del /s /q *.pyd
|
|
|
|
popd
|
|
|
|
|
|
|
|
pushd %~dp0\tests
|
|
|
|
del /s /q *.pyd
|
|
|
|
popd
|