This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients petri.lehtinen, pitrou, rpointel, vstinner
Date 2011-11-03.09:24:48
SpamBayes Score 0.012742929
Marked as misclassified No
Message-id <1320312289.07.0.811525535106.issue13326@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2011-11-03 09:24:49vstinnersetrecipients: + vstinner, pitrou, petri.lehtinen, rpointel
2011-11-03 09:24:49vstinnersetmessageid: <1320312289.07.0.811525535106.issue13326@psf.upfronthosting.co.za>
2011-11-03 09:24:48vstinnerlinkissue13326 messages
2011-11-03 09:24:48vstinnercreate