STINNER Victor <[email protected]> added the comment:

By the way, removing *.pyc and *.pyo is useless: Python 3.3 only generates such 
files in __pycache__:

+       -find $(srcdir) -name '*.py[co]' -print0 | xargs -0r rm -f
+       -find $(srcdir) -name '__pycache__' -print0 | xargs -0r rmdir

can be simplified to

+       -find $(srcdir) -name '__pycache__' -print0 | xargs -0r rm -rf

----------

_______________________________________
Python tracker <[email protected]>
<http://bugs.python.org/issue13326>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to