Brian wrote:
> As one additional question, can someone point me in the direction of a
> resource that would explain how I could use Python to tell me what core
> is actually handling the process?  I am not even sure if something like
> this exists, but it would be an interesting feature to explore.

Since the GIL is released from time to time (on any system call that may
wait, for example), it is a single core at any one instant, but is not
necessarily the same core over time.

--Scott David Daniels
[EMAIL PROTECTED]
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to