Search Results

1
vote

Building Python C extension modules for Windows

Setuptools and distutils don't come with gcc, but they use the same compiler Python was built with. The difference is mostly that on the typical UNIX system that compiler is 'gcc' and you have it i …
2
votes

Reading 32bit Packed Binary Data On 64bit System

The 'struct' module should be able to do this, although alignment of structs in the middle of the data is always an issue. It's not very hard to get it right, however: find out (once) what boundary …