Re: need the unsigned value from dl.call()

2007-12-11 Thread MRAB
On Dec 11, 10:51 pm, eliss <[EMAIL PROTECTED]> wrote: > On Dec 11, 2:28 pm, eliss <[EMAIL PROTECTED]> wrote: > > > > > On Dec 11, 12:38 pm, Larry Bates <[EMAIL PROTECTED]> wrote: > > > > Diez B. Roggisch wrote: > > > > Larry Bates wrote: > > > > >> eliss wrote: > > > >>> I'm using dl.call() to call

Re: need the unsigned value from dl.call()

2007-12-11 Thread Gabriel Genellina
En Tue, 11 Dec 2007 19:28:34 -0300, eliss <[EMAIL PROTECTED]> escribi�: > On Dec 11, 12:38 pm, Larry Bates <[EMAIL PROTECTED]> wrote: >> Diez B. Roggisch wrote: >> > Larry Bates wrote: >> >> eliss wrote: >> >>> working great so far except for one function, which returns an >> >>> unsigned int in

Re: need the unsigned value from dl.call()

2007-12-11 Thread eliss
On Dec 11, 2:28 pm, eliss <[EMAIL PROTECTED]> wrote: > On Dec 11, 12:38 pm, Larry Bates <[EMAIL PROTECTED]> wrote: > > > > > Diez B. Roggisch wrote: > > > Larry Bates wrote: > > > >> eliss wrote: > > >>> I'm using dl.call() to call a C function in an external library. It's > > >>> working great so

Re: need the unsigned value from dl.call()

2007-12-11 Thread eliss
On Dec 11, 12:38 pm, Larry Bates <[EMAIL PROTECTED]> wrote: > Diez B. Roggisch wrote: > > Larry Bates wrote: > > >> eliss wrote: > >>> I'm using dl.call() to call a C function in an external library. It's > >>> working great so far except for one function, which returns an > >>> unsigned int in the

Re: need the unsigned value from dl.call()

2007-12-11 Thread Larry Bates
Diez B. Roggisch wrote: > Larry Bates wrote: > >> eliss wrote: >>> I'm using dl.call() to call a C function in an external library. It's >>> working great so far except for one function, which returns an >>> unsigned int in the C version. However, in python it returns a signed >>> value to me. How

Re: need the unsigned value from dl.call()

2007-12-11 Thread Diez B. Roggisch
Larry Bates wrote: > eliss wrote: >> I'm using dl.call() to call a C function in an external library. It's >> working great so far except for one function, which returns an >> unsigned int in the C version. However, in python it returns a signed >> value to me. How can I get the unsigned value fro

Re: need the unsigned value from dl.call()

2007-12-11 Thread Larry Bates
eliss wrote: > I'm using dl.call() to call a C function in an external library. It's > working great so far except for one function, which returns an > unsigned int in the C version. However, in python it returns a signed > value to me. How can I get the unsigned value from this? I haven't > brushe