Would you mind testing this patch (made against 0.6c11? Thanks!
Index: setuptools/sandbox.py
===================================================================
--- setuptools/sandbox.py (revision 75384)
+++ setuptools/sandbox.py (working copy)
@@ -207,6 +207,7 @@
self._violation("tmpnam")
def _ok(self,path):
+ if hasattr(_os,'devnull') and path==_os.devnull: return True
active = self._active
try:
self._active = False
|