Robert Bauck Hamar wrote:
> hg wrote:
>
>> Robert Bauck Hamar wrote:
>>
>>> hg wrote:
>>>
Hi,
I have the following
* C extention - redir.c
#include "Python.h"
PyObject * test_redir_test(PyObject *self) {
fprintf(
hg wrote:
> Robert Bauck Hamar wrote:
>
>> hg wrote:
>>
>>> Hi,
>>>
>>> I have the following
>>>
>>> * C extention - redir.c
>>>
>>>
>>> #include "Python.h"
>>>
>>> PyObject * test_redir_test(PyObject *self) {
>>> fprintf(stdout, "Hello from an extention!\n");
>>> P
Robert Bauck Hamar wrote:
> hg wrote:
>
>> Hi,
>>
>> I have the following
>>
>> * C extention - redir.c
>>
>>
>> #include "Python.h"
>>
>> PyObject * test_redir_test(PyObject *self) {
>> fprintf(stdout, "Hello from an extention!\n");
>> Py_INCREF(Py_None);
>> retur
hg wrote:
> Hi,
>
> I have the following
>
> * C extention - redir.c
>
>
> #include "Python.h"
>
> PyObject * test_redir_test(PyObject *self) {
> fprintf(stdout, "Hello from an extention!\n");
> Py_INCREF(Py_None);
> return Py_None;
> }
>
[...]
> **