Python about box implemented. Slightly convoluted, since (a) we have
to override an internal sioux routine and (b) we have to override the
"about sioux" menuitem after sioux has created its menus.
diff --git a/Mac/Python/macmain.c b/Mac/Python/macmain.c
index 019e0be..a85f88f 100644
--- a/Mac/Python/macmain.c
+++ b/Mac/Python/macmain.c
@@ -351,6 +351,12 @@
 		}
 	}
 	
+	/*
+	** For reasons I don't fully understand we cannot insert our
+	** menu earlier. Leave it here, we hope to be rid of Sioux soon anyway.
+	*/
+	PyMac_InitMenuBar();
+	
 	Py_Initialize();
 	
 	PySys_SetArgv(argc-1, argv+1);