vb6

Python Equivalent of VB6 DoEvents

Python Equivalent of VB6 DoEvents Question: Is there Python equivalent of VB6 DoEvents statement where the handler will temporarily pass to the OS? I found similar code in http://code.activestate.com/recipes/496767-set-process-priority-in-windows/ def setpriority(pid=None,priority=1): “”” Set The Priority of a Windows Process. Priority is a value between 0-5 where 2 is normal priority. Default sets the priority of …

Total answers: 2