Ronald Oussoren schrieb: > BTW. several sites on the interweb claim that x86-64 runs faster than > plain x86 due to a larger register set. All my machines are 32-bit so I > can't check if this is relevant for Python (let alone Python on OSX).
That is plausible. OTOH, the AMD64 binaries will often require twice as much main memory, as all pointers double their size, and the Python implementation (or most OO languages, for that matter) is full of pointers. So it will be more efficient only until it starts swapping. (there is also a negative effect of larger pointers on the processor cache; the impact of this effect is hard to estimate). Regards, Martin _______________________________________________ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com