Re: sizeof(long) (was: Re: looking for fix to AMD64 python dl problem....)

2007-02-19 Thread Andrew Sackville-West
On Sun, Feb 18, 2007 at 04:13:39AM -0800, John Pye wrote: > On Feb 18, 5:20 pm, Andrew Sackville-West > <[EMAIL PROTECTED]> wrote: > > > > you've got debian running on a wood stove?! dude that's awesome! I > > Why, what do you guys run yours on? An old dodge slant-6 225. duh! ;) A signature.a

Re: sizeof(long) (was: Re: looking for fix to AMD64 python dl problem....)

2007-02-18 Thread Roberto C. Sanchez
On Sat, Feb 17, 2007 at 07:10:41PM -0800, John Pye wrote: > > As you see, we're only using the dl module to give us the values of > some constants, before then going on and using the standard python > 'import' command. We are *not* using the dl module to perform dlopen > calls. The values of these

Re: sizeof(long) (was: Re: looking for fix to AMD64 python dl problem....)

2007-02-18 Thread John Pye
On Feb 18, 5:20 pm, Andrew Sackville-West <[EMAIL PROTECTED]> wrote: > > you've got debian running on a wood stove?! dude that's awesome! I Why, what do you guys run yours on? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: sizeof(long) (was: Re: looking for fix to AMD64 python dl problem....)

2007-02-17 Thread Andrew Sackville-West
On Sat, Feb 17, 2007 at 07:10:41PM -0800, John Pye wrote: > Hi all > > I'm the said developer. Looks like my replies (via Google Groups) > haven't been getting through. And I also went across town for a load > of firewood. you've got debian running on a wood stove?! dude that's awesome! I though

Re: sizeof(long) (was: Re: looking for fix to AMD64 python dl problem....)

2007-02-17 Thread John Pye
Hi all I'm the said developer. Looks like my replies (via Google Groups) haven't been getting through. And I also went across town for a load of firewood. So you didn't scare me off :-) So, I'll try to summarise what I have tried to send in previous mails. Firstly, 'dl' is not an ugly hack, which

sizeof(long) (was: Re: looking for fix to AMD64 python dl problem....)

2007-02-17 Thread Mathias Brodala
Hello Roberto. Roberto C. Sanchez, 18.02.2007 00:37: > If you run this program on an amd64 machine: > > $ cat sizes.c > #include > > int main(void) { > printf("int: %d; long: %d; char *: %d\n", sizeof(int), sizeof(long), > sizeof(char *)); > return 0; > } > > This is what you