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 petri.lehtinen
Recipients Arfrever, eric.araujo, hynek, jcea, mrts, neologix, petri.lehtinen, pitrou, rosslagerwall, schmir, tarek, teamnoir
Date 2012-05-18.11:42:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1337341369.64.0.853203975551.issue4489@psf.upfronthosting.co.za>
In-reply-to
Content
+    Same a rmtree but uses safe functions to avoid race conditions
          ^
         typo

+                    onerror(os.unlinkat, os.path.join(path, name), sys.exc_info())
+        onerror(os.fwalk, path, sys.exc_info())

The documentation currently states that the first argument of onerror will be one of os.path.islink, os.listdir, os.remove, os.rmdir. You shuld probably add os.unlinkat and os.fwalk to that list now.

Otherwise, looks good to me.
History
Date User Action Args
2012-05-18 11:42:49petri.lehtinensetrecipients: + petri.lehtinen, jcea, pitrou, schmir, tarek, eric.araujo, Arfrever, mrts, neologix, teamnoir, rosslagerwall, hynek
2012-05-18 11:42:49petri.lehtinensetmessageid: <1337341369.64.0.853203975551.issue4489@psf.upfronthosting.co.za>
2012-05-18 11:42:49petri.lehtinenlinkissue4489 messages
2012-05-18 11:42:48petri.lehtinencreate