Disable sitecustomize when checking python version

Sitecustomize files can be slow or broken and might hang editor
startup.  Since they aren't necessary for checking the python version,
disable them to get a small speed boost for everyone, and an editor
that doesn't hang indefinitely on startup if the sitecustomize gets
into an infinite loop (due to a bad NFS mount or similar).
This commit is contained in:
Kyle Lippincott 2017-01-11 11:52:32 -08:00
parent d02de4b399
commit b5b2fb57e1

View File

@ -118,6 +118,9 @@ def IsPythonVersionCorrect( path ):
return False
command = [ path,
# Disable site customize. Faster, and less likely to encounter
# issues with disconnected mounts (nfs, fuse, etc.)
'-S',
'-c',
"import sys;"
"major, minor = sys.version_info[ :2 ];"