在python中导入时重定向C函数的stdout问题

时间:2011-07-11 18:50:49

标签: python c swig python-c-extension

我写了一个简单的C模块,使用printf打印到stdout。

// sample.c
func_print()
{
    printf("Hello World!\n");
}

后来,我使用SWIG创建了一个包装器,以便我也可以在我的python程序中使用func_print。在这个程序中,我已将stdout重定向到textctrl小部件。我使用print打印的任何内容都会在textctrl小部件中正确打印,如预期的那样。

# sample.py
...
sys.stdout = textctrl          # textctrl is a TextCtrl widget (wxPython).
print 'Hello from Python!'     # prints in the textctrl widget, as expected.

但是,当我调用C函数func_print()(来自sample.py)时,它会打印到终端而不是textctrl小部件。

func_print()                   # [Problem] prints to the terminal window, instead of the textctrl widget.  

不知何故,似乎C模块中函数的stdout没有按预期重定向。请帮我解决这个问题。谢谢。

1 个答案:

答案 0 :(得分:5)

您的问题是sys.stdout是Python对象,而不是实际的C流或文件描述符。来自sys.stdout documentation

  

(更改这些对象不会影响标准I / O流   由os.popen(),os.system()或exec *()系列执行的进程   os模块中的函数。)

您的C代码与os.system生成的进程没有什么不同,因为它只能访问传统的Unix文件描述符以进行输出,而不是Python对象。 (好吧,无论如何,不​​是没有额外的工作。)

如果您只想将系统级别的stdout重定向到另一个文件或套接字,请参阅os.dup2

但是如果你真的想从C发送输出到Python对象,请参阅Calling Python Functions From C