> What makes you think so? File python.exe is not used by vim. You may remove > it completely leaving relevant DLL library and vim will continue to work with > +python and so will be plugins written in python. Why should output of > sys.executable change if you remove irrelevant python.exe?
Don't forget that ":py print sys.executable" will return the actual path to the Python interpreter (something like /usr/bin/python) on all Unix machines when run from Vim, but will return a path to Vim on Windows. At the very least, the output of sys.executable in Vim should be consistent across platforms. It should either always return the path to Vim or to Python. I'd go with the path to Python since that's what the Python docs say it should return. The API of Python system functions shouldn't change just because it's running inside Vim. -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
