From: Just van Rossum Date: Thu, 13 Dec 2001 12:57:11 +0000 (+0000) Subject: Don't barf when an AppleEvent was not handled. It's ok to ignore. X-Git-Tag: v2.2.1c1~391 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d9c9b57e293799d131a9041f70c499f23575164f;p=python Don't barf when an AppleEvent was not handled. It's ok to ignore. --- diff --git a/Mac/Lib/FrameWork.py b/Mac/Lib/FrameWork.py index c0692b941e..f383609858 100644 --- a/Mac/Lib/FrameWork.py +++ b/Mac/Lib/FrameWork.py @@ -392,8 +392,9 @@ class Application: try: AEProcessAppleEvent(event) except: - print "AEProcessAppleEvent error:" - traceback.print_exc() + pass + #print "AEProcessAppleEvent error:" + #traceback.print_exc() def do_unknownevent(self, event): if DEBUG: