From: Jack Jansen Date: Tue, 27 Mar 2001 21:34:31 +0000 (+0000) Subject: Added a note about the new (since 2.0) OSA architecture. X-Git-Tag: v2.1c1~225 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=64f9f7108fe7152806aa0b5aa505e79e2255a2c0;p=thirdparty%2FPython%2Fcpython.git Added a note about the new (since 2.0) OSA architecture. --- diff --git a/Mac/Demo/applescript.html b/Mac/Demo/applescript.html index 8a26a9bae2b2..183d66599a2f 100644 --- a/Mac/Demo/applescript.html +++ b/Mac/Demo/applescript.html @@ -94,7 +94,16 @@ details on how to start the program and talk to it, and a class variable _signature which is the default application this class will talk to (you can override this in various when you instantiate your class, see aetools.py for details). -

+

+

+Let us do another sidebar. Since MacPython 2.0 this new structure, with packages +per application and submodules per suite, is used. Older MacPythons had a +single level of modules, with uncertain semantics. With the new structure +it is possible for programs to override standard suites, as programs often do. +It is a good idea to convert your own old programs to the new scheme, but if you +really want the old standard suites are still available in +:Mac:Lib:lib-scripting. +
The Special_Events module is a nice example of a suite module.