Coin,

Peter Eisentraut <[EMAIL PROTECTED]> writes:

> But removing .pyo files in the clean target from the source tree doesn't do 
> anything about that.

Yes, sorry, i was out of it. The real problem is distutils left alone
files. You patched the class to remove .pyc earlier, but .pyo files
should be removed too.

Here are the lines to fix:

# Calling setup.py clean may create .pyc files, so we need a final
cleanup
# pass here.
clean::
        find . -name '*.pyc' -exec rm '{}' ';'

-- 
Marc Dequènes (Duck)

Attachment: pgp8Besrhwp4U.pgp
Description: PGP signature

Reply via email to