Alexander Schmolck <[EMAIL PROTECTED]> writes: > what's the best approach to write C(++)-extension code that has to > create a python int from a C pointer and vice versa so that it works > smoothly on 32 bit and 64 platforms (on which sizeof(int) != > sizeof(*void)) equally work (under unix,mac&windows and with gcc, vc > and borland)?
PyLong_FromVoidPtr and PyLong_AsVoidPtr. Thomas -- http://mail.python.org/mailman/listinfo/python-list
