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:
parent
d02de4b399
commit
b5b2fb57e1
@ -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 ];"
|
||||
|
Loading…
Reference in New Issue
Block a user