> Let me try to get more details from vim + python configure output. > Standalone that python version is fine. I can do from os import > urandom but from within vim it fails.
I'm not entirely sure but I vaguely remember than python on linux uses statically linked python whereas python on windows uses python dlls.. This in turns means that vim uses that python version which vim's makefiles finds first (which may not be your local python at all, but the traces hint that it does). you can try that import random (or whatever fails) within vim and python and compare traces (which .py files are read by vim) and or compare sys.path to get an idea what might be happening. Marc Weber -- 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
