如何在python中使用ctypes时抑制stdout?

时间:2012-05-28 17:46:39

标签: python ctypes

我正在使用ctypes为c库编写一些绑定:

from ctypes.util import find_library
from ctypes import *


lib = find_library("lvm2app")

if not lib:
    raise Exception("LVM library not found.")

lvmlib = CDLL(lib)

一切都很好,除了库不时地打印到stdout并且它有点烦人。有没有办法可以抑制这些印刷品?感谢。

0 个答案:

没有答案