在python中导入时重定向C函数的stdout问题
作者:互联网
我写了一个简单的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没有按预期重定向.请帮我解决这个问题.谢谢.
解决方法:
您的问题是sys.stdout是一个Python对象,而不是一个实际的C流或文件描述符.从sys.stdout documentation:
(Changing these objects doesn’t affect the standard I/O streams of
processes executed by os.popen(), os.system() or the exec*() family of
functions in the os module.)
你的C代码与os.system产生的进程没有什么不同,因为它只能访问传统的Unix文件描述符来输出,而不是Python对象. (好吧,无论如何,不是没有一些额外的工作.)
如果您只想将系统级别的stdout重定向到另一个文件或套接字,请参阅os.dup2.
但是如果你真的想从C发送输出到Python对象,请参阅Calling Python Functions From C.
标签:python,c-3,swig,python-c-extension 来源: https://codeday.me/bug/20190621/1254000.html