From: Guido van Rossum Date: Thu, 23 Mar 1995 10:41:41 +0000 (+0000) Subject: use PyMac_Yield() instead of PyMac_Idle() X-Git-Tag: v1.2~64 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e375b3f1e577a05e5ac826e02fdd99f732024c5a;p=thirdparty%2FPython%2Fcpython.git use PyMac_Yield() instead of PyMac_Idle() --- diff --git a/Mac/Modules/ae/aesupport.py b/Mac/Modules/ae/aesupport.py index 7c69f3e062a7..a11e873f8f52 100644 --- a/Mac/Modules/ae/aesupport.py +++ b/Mac/Modules/ae/aesupport.py @@ -106,7 +106,7 @@ AEEventHandlerUPP upp_GenericEventHandler; static pascal Boolean AEIdleProc(EventRecord *theEvent, long *sleepTime, RgnHandle *mouseRgn) { - (void) PyMac_Idle(); + PyMac_Yield(); return 0; }