diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-08-01 18:55:29 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-08-01 18:55:29 -0400 |
commit | c5b1e4dd59e326a113c5f184100f728a4c75d537 (patch) | |
tree | 312a6f1f2f7fbe3980b76d2cb6fc30c005ca7fdc | |
parent | 07e76277e8cc53df30e71f78bb7128e86e5b04a8 (diff) | |
download | python-coveragepy-git-c5b1e4dd59e326a113c5f184100f728a4c75d537.tar.gz |
Python 3.2 now puts .pyc in __pycache__ directories.
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -14,6 +14,7 @@ clean: -rm -f *.pyo */*.pyo */*/*.pyo */*/*/*.pyo */*/*/*/*.pyo */*/*/*/*/*.pyo -rm -f *.bak */*.bak */*/*.bak */*/*/*.bak */*/*/*/*.bak */*/*/*/*/*.bak -rm -f *$$py.class */*$$py.class */*/*$$py.class */*/*/*$$py.class */*/*/*/*$$py.class */*/*/*/*/*$$py.class + -rm -rf __pycache__ */__pycache__ */*/__pycache__ */*/*/__pycache__ */*/*/*/__pycache__ */*/*/*/*/__pycache__ -rm -f coverage/*,cover -rm -f MANIFEST -rm -f .coverage .coverage.* coverage.xml |