Python - pythoncom.PumpMessages ()

I am surprised to see that in the function pythoncom.PumpMessages()or for the module pythoncomthere is no detailed documentation on the documentation.

So what to do pythoncom.PumpMessages()and pythoncom.PumpWaitingMessages()how? Everything I really know about this is used to detect events from input devices.

+4
source share
1 answer

Documentation of these methods can be found here .

Matching bits:

  • PumpWaitingMessages: Punishes all pending messages for the current thread.
  • PumpMessages: displays all messages for the current thread before the WM_QUIT message.
+3
source

All Articles