Merge pull request #735 from robsonpeixoto/patch-1

Cleaning up *.py[co] and __pycache__ tip
This commit is contained in:
2016-10-31 15:00:41 -04:00
committed by GitHub
+1 -1
View File
@@ -224,7 +224,7 @@ Removing Bytecode (.pyc) Files
Here's nice trick for removing all of these files, if they already exist::
$ find . -name "*.pyc" -delete
$ find . -type f -name "*.py[co]" -delete -or -type d -name "__pycache__" -delete
Run that from the root directory of your project, and all ``.pyc`` files
will suddenly vanish. Much better.