summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-03-23 10:41:41 (GMT)
committerGuido van Rossum <guido@python.org>1995-03-23 10:41:41 (GMT)
commite375b3f1e577a05e5ac826e02fdd99f732024c5a (patch)
tree23c8a937a293527b6faaa4c2f7fc4ae940068dbf /Mac
parenta4007eb816c2e065915cf9cd2571c0c889aad9ba (diff)
downloadcpython-e375b3f1e577a05e5ac826e02fdd99f732024c5a.zip
cpython-e375b3f1e577a05e5ac826e02fdd99f732024c5a.tar.gz
cpython-e375b3f1e577a05e5ac826e02fdd99f732024c5a.tar.bz2
use PyMac_Yield() instead of PyMac_Idle()
Diffstat (limited to 'Mac')
-rw-r--r--Mac/Modules/ae/aesupport.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Modules/ae/aesupport.py b/Mac/Modules/ae/aesupport.py
index 7c69f3e..a11e873 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;
}