I wrote a C wrapper using the Python C API on our development machine (which is 32 bit and runs 32 bit Python 2.7). I have since had to move the wrapper and C source code to another machine which is 64 bit and runs 64 bit Python 2.6. The following code in the C wrapper returns a segmentation fault on the 64 bit machine, but not on the 32 bit machine (it works perfectly there):I wrote a C wrapper using the Python C API on o