无法在vim脚本中使用urllib2模块

时间:2014-10-08 12:02:30

标签: python vim

我无法在vim脚本中使用urllib2模块:

if !has('python')
    finish
endif

function! PrintForecastInfo()

python << EOF

import urllib2

rp5_url = 'http://rp5.ru/'

response = urllib2.urlopen(rp5_url).read()

EOF
endfunc

此代码给了我以下错误:

  

ImportError:DLL加载失败:指定的过程不可能   结果

为什么呢?我究竟做错了什么?我该如何解决?

我正在使用Windows 8顺便说一句。

0 个答案:

没有答案