In C extension .pyd, sizeof INT64 = 4?

"Martin v. Lo"wis" martin at v.loewis.de
Tue Jun 12 16:06:55 EDT 2007


Allen schrieb:
> My C extension works wrong, and debug it, found that sizeof (INT64) =
> 4, not 8.
> I compile on Windows XP platform.
> Please tell me how to fix it to support INT64?

What *is* INT64? It's not a builtin type of standard C, it isn't
defined by Microsoft C, and it isn't predefined by Python.

So it must be something that you have defined, and apparently
incorrectly. How did you define it?

Regards,
Martin



More information about the Python-list mailing list