I wrote a simple C module which prints to stdout using printf.
// sample.c
func_print()
{
printf("Hello World!\n");
}
Later, I made a wrapper around this using SWIG so that I could use func_print in my python program too. In this program, I have redirected the stdout to a textctrl widget. Anything I print using print prints correctly in the textctrl widget, as expected.
# sample.py
...
sys.stdout = textctrl # textctrl is a TextCtrl widget (wxPython).
print 'Hello from Python!' # prints in the textctrl widget, as expected.
However, when I call the C function func_print() (from sample.py), it prints to the terminal instead of the textctrl widget.
func_print() # [Problem] prints to the terminal window, instead of the textctrl widget.
Somehow, it seems that the stdout for functions in the C module do not get redirected as expected. Please help me fix this. Thank you.