We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4af2850 commit f7f4728Copy full SHA for f7f4728
docs/writing/gotchas.rst
@@ -224,7 +224,7 @@ Removing Bytecode (.pyc) Files
224
225
Here's nice trick for removing all of these files, if they already exist::
226
227
- $ find . -name "*.pyc" -exec rm -rf {} \;
+ $ find . -name "*.pyc" -delete
228
229
Run that from the root directory of your project, and all ``.pyc`` files
230
will suddenly vanish. Much better.
0 commit comments