When sitecustomize.py fails, don't make all of site.py fail,
unless PYTHONVERBOSE is set.
diff --git a/Lib/site.py b/Lib/site.py
index 01086b7..da7bfaa 100644
--- a/Lib/site.py
+++ b/Lib/site.py
@@ -385,6 +385,13 @@
         import sitecustomize
     except ImportError:
         pass
+    except Exception, err:
+        if os.environ.get("PYTHONVERBOSE"):
+            raise
+        sys.stderr.write(
+            "Error in sitecustomize; set PYTHONVERBOSE for traceback:\n"
+            "%s: %s\n" %
+            (err.__class__.__name__, err))
 
 
 def main():