[Python-3000] Win64 buildbot

Paul Moore p.f.moore at gmail.com
Fri Nov 16 00:32:33 CET 2007


On 15/11/2007, Guido van Rossum <guido at python.org> wrote:
> Ideally, the clean step should not depend on Python existing. On Unix
> it doesn't need it!

>From a quick look, rmpyc.py is deleting .pyc and .pyo files in ..\Lib.
This could be done (I believe) using simply

   cd ..\Lib
   del /S *.pyc *.pyo

I haven't tested this (no time right now) but certainly on XP, the del
command accepts a /S flag to delete recursively.

Paul.


More information about the Python-3000 mailing list