diff options
author | Guido van Rossum <guido@python.org> | 1995-03-23 10:41:41 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-03-23 10:41:41 (GMT) |
commit | e375b3f1e577a05e5ac826e02fdd99f732024c5a (patch) | |
tree | 23c8a937a293527b6faaa4c2f7fc4ae940068dbf /Mac/Modules | |
parent | a4007eb816c2e065915cf9cd2571c0c889aad9ba (diff) | |
download | cpython-e375b3f1e577a05e5ac826e02fdd99f732024c5a.zip cpython-e375b3f1e577a05e5ac826e02fdd99f732024c5a.tar.gz cpython-e375b3f1e577a05e5ac826e02fdd99f732024c5a.tar.bz2 |
use PyMac_Yield() instead of PyMac_Idle()
Diffstat (limited to 'Mac/Modules')
-rw-r--r-- | Mac/Modules/ae/aesupport.py | 2 |
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; } |