From: Guido van Rossum Date: Mon, 20 Oct 1997 23:16:58 +0000 (+0000) Subject: Remove .pyo files like .pyc files. X-Git-Tag: v1.5b1~184 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7eecc246a7632d3e39db3a648f5934715301886b;p=python Remove .pyo files like .pyc files. --- diff --git a/Lib/Makefile b/Lib/Makefile index b70dc12f9b..1596ef1544 100644 --- a/Lib/Makefile +++ b/Lib/Makefile @@ -2,7 +2,7 @@ all: @echo Nothing to make in this directory. clean: - find . '(' -name '*.pyc' -o -name '*.fdc' \ + find . '(' -name '*.py[co]' -o -name '*.fdc' \ -o -name core -o -name '*~' \ -o -name '[@,#]*' -o -name '*.old' \ -o -name '*.orig' -o -name '*.rej' \