如何在VIM中执行Python代码时禁止警告

时间:2014-05-27 10:20:44

标签: python linux unix editor vi

从comman行运行代码时我没有问题:

$ python mycode.py > output.txt

但是在VI编辑器中运行那些代码会引发警告:

:! python mycod.py > output.txt
/opt6/tools/python2.6.2/lib/python2.6/site-packages/numpy/oldnumeric/__init__.py:11: ModuleDeprecationWarning: The oldnumeric module will be dropped in Numpy 1.9
  warnings.warn(_msg, ModuleDeprecationWarning)

为什么这样以及如何从VI中禁用它?

1 个答案:

答案 0 :(得分:0)