Richard Bell wrote:
> Question 3: Does PumpWaitingMessages insure that at MOST one message/event
> is pumped such that reentrancy is not an issue?
>   

I can't answer the other two questions, but I can answer this one,
definitively yes.  A Windows message queue is associated with a single
thread only, and only that thread can dispatch the messages.  It will
not dispatch message #2 until message #1 has completed and returned.

-- 
Tim Roberts, [EMAIL PROTECTED]
Providenza & Boekelheide, Inc.

_______________________________________________
Python-win32 mailing list
Python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32

Reply via email to