use PyMac_Yield() instead of PyMac_Idle()

This commit is contained in:
Guido van Rossum 1995-03-23 10:41:41 +00:00
parent a4007eb816
commit e375b3f1e5
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ AEEventHandlerUPP upp_GenericEventHandler;
static pascal Boolean AEIdleProc(EventRecord *theEvent, long *sleepTime, RgnHandle *mouseRgn)
{
(void) PyMac_Idle();
PyMac_Yield();
return 0;
}