Louise Hoffman wrote:

> I was wondering, if Python in the foerseeable future will allocate one
> CPU core just for the interpreter, so heavy Python operations does
> slow down the OS?

When running scripts, or loading modules, Python does not really behave 
as an interpreter. Instead it compiles the human-readable code to a 
bytecode which it then runs on a virtual machine.
-- 
Michael Hoffman (no relation)
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to