8
votes
Translate algorithmic C to Python
There is frankly no way to mechanically and meaningfully translate C to Python without suffering an insane performance penalty. As we all know Python isn't anywhere near C speed (with current compi …
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 …
1
vote
Is it feasible to compile Python to machine code?
The answer is "Yes, it is possible". You could take Python code and attempt to compile it into the equivalent C code using the CPython API. In fact, there used to be a Python2C project that did jus …
