Ver código fonte

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).
Kyle Lippincott 8 anos atrás
pai
commit
b5b2fb57e1
1 arquivos alterados com 3 adições e 0 exclusões
  1. 3 0
      python/ycm/paths.py

+ 3 - 0
python/ycm/paths.py

@@ -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 ];"