Re: printf in python

2008-06-04 Thread Ivan Illarionov
On Wed, 04 Jun 2008 14:10:51 +, Ivan Illarionov wrote: > On Mon, 02 Jun 2008 00:32:33 -0700, gianluca wrote: > >> Hy, I've a problem with may python library generated with swig from C >> code. I works and I can access all function but a simèple function >> that print a string don't work's. >

Re: printf in python

2008-06-04 Thread Ivan Illarionov
On Mon, 02 Jun 2008 00:32:33 -0700, gianluca wrote: > Hy, I've a problem with may python library generated with swig from C > code. I works and I can access all function but a simèple function that > print a string don't work's. > The function is like this: > int PrintTEST() > { > printf("TE

Re: printf in python

2008-06-04 Thread gianluca
On 4 Giu, 03:46, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote: > En Tue, 03 Jun 2008 10:28:57 -0300, gianluca <[EMAIL PROTECTED]> > escribió: > > > > >> > > On Mon, 2 Jun 2008 00:32:33 -0700 (PDT), gianluca > >> <[EMAIL PROTECTED]> > >> > > declaimed the following in comp.lang.python: > > >> > > >

Re: printf in python

2008-06-03 Thread Gabriel Genellina
En Tue, 03 Jun 2008 10:28:57 -0300, gianluca <[EMAIL PROTECTED]> escribió: > > On Mon, 2 Jun 2008 00:32:33 -0700 (PDT), gianluca <[EMAIL PROTECTED]> > > declaimed the following in comp.lang.python: > > > Hy, I've a problem with may python library generated with swig from C > > > code. I wor

Re: printf in python

2008-06-03 Thread gianluca
On 3 Giu, 12:48, gianluca <[EMAIL PROTECTED]> wrote: > On 2 Giu, 20:51, gianluca <[EMAIL PROTECTED]> wrote: > > > > > On 2 Giu, 17:54, Dennis Lee Bieber <[EMAIL PROTECTED]> wrote: > > > > On Mon, 2 Jun 2008 00:32:33 -0700 (PDT), gianluca <[EMAIL PROTECTED]> > > > declaimed the following in comp.lan

Re: printf in python

2008-06-03 Thread gianluca
On 2 Giu, 20:51, gianluca <[EMAIL PROTECTED]> wrote: > On 2 Giu, 17:54, Dennis Lee Bieber <[EMAIL PROTECTED]> wrote: > > > > > On Mon, 2 Jun 2008 00:32:33 -0700 (PDT), gianluca <[EMAIL PROTECTED]> > > declaimed the following in comp.lang.python: > > > > Hy, I've a problem with may python library ge

Re: printf in python

2008-06-02 Thread gianluca
On 2 Giu, 17:54, Dennis Lee Bieber <[EMAIL PROTECTED]> wrote: > On Mon, 2 Jun 2008 00:32:33 -0700 (PDT), gianluca <[EMAIL PROTECTED]> > declaimed the following in comp.lang.python: > > > Hy, I've a problem with may python library generated with swig from C > > code. I works and I can access all fun

Re: printf in python

2008-06-02 Thread gianluca
On 2 Giu, 10:08, Hrvoje Niksic <[EMAIL PROTECTED]> wrote: > gianluca <[EMAIL PROTECTED]> writes: > > Hy, I've a problem with may python library generated with swig from C > > code. I works and I can access all function but a simèple function > > that print a string don't work's. > > The function i

Re: printf in python

2008-06-02 Thread Hrvoje Niksic
gianluca <[EMAIL PROTECTED]> writes: > Hy, I've a problem with may python library generated with swig from C > code. I works and I can access all function but a simèple function > that print a string don't work's. > The function is like this: > int PrintTEST() > { > printf("TEST "); > r

printf in python

2008-06-02 Thread gianluca
Hy, I've a problem with may python library generated with swig from C code. I works and I can access all function but a simèple function that print a string don't work's. The function is like this: int PrintTEST() { printf("TEST "); return 1; } If I call the function (myDLL.PrintTEST()