Disable python event handling in mainloop (discovered by Tasselli Marco)
diff --git a/Mac/Demo/cgi/realcgitest.py b/Mac/Demo/cgi/realcgitest.py
index ca846bf..5b45ed4 100644
--- a/Mac/Demo/cgi/realcgitest.py
+++ b/Mac/Demo/cgi/realcgitest.py
@@ -11,7 +11,9 @@
 		self.installaehandler('aevt', 'oapp', self.open_app)
 		self.installaehandler('aevt', 'quit', self.quit)
 		self.installaehandler('WWW\275', 'sdoc', self.cgihandler)
+		oldparams = MacOS.SchedParams(0, 0)
 		self.mainloop()
+		apply(MacOS.SchedParams, oldparams)
 
 	def quit(self, **args):
 		self.quitting = 1