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 | 972299813683fa941a2cfef0b9e4b7dc31b53a0f (patch) | |
tree | 1728c61eb12af68f25ffdb486e69bacc70d77f77 | |
parent | 54f87fafbf5d4be0a25568ec4df61456eea31d59 (diff) | |
download | python-coveragepy-972299813683fa941a2cfef0b9e4b7dc31b53a0f.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 |