Remi Pointel <pyt...@xiri.fr> added the comment:

> According to the man page, find -print0 and xargs -r are also GNU extensions. 
> Even though they work on OpenBSD (do they?), they could still break on some 
> platforms.

Yes, it works fine, but you're allright.

> As find -exec cmd {} ';' is already used for everything but __pycache__, I'd 
> rather only change the removal of __pycache__. I believe there are more files 
> that match '*.py[co]' than '__pycache__', and people are already waiting for 
> a separate rm process to be invoked on each *.py[co], so invoking a separate 
> rmdir for each __pycache__ shouldn't make it much slower.

You mean to just exec rmdir instead of rm only for __pycache__?

Cheers,

Remi.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<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