On Thu, 14 Oct 2010 05:06:30 -0700 (PDT)
Ashish <amvya...@gmail.com> wrote:
> 
> One more question: If I run the tool from multicore machine, will
> python3.1 or 3.2 be able to actually use multicore? or it will be
> running only on one core?

Only partly. Pure Python code is serialized (by the Global Interpreter
Lock), but some internal C code, such as SSL and socket routines, can
run in parallel with other code.

Regards

Antoine.


-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to