diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-03-30 22:41:53 +0000 |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-03-30 22:41:53 +0000 |
commit | 068a1e208f272d01415ecc511fe9e97c92636a90 (patch) | |
tree | 02f49289a555659728d8042b781a80e1f5f2e35c /Lib/plat-mac/lib-scriptpackages/Terminal/Standard_Suite.py | |
parent | 2dc16f2a1e2589a8644323fab8adce6b8e1047cb (diff) | |
download | cpython-068a1e208f272d01415ecc511fe9e97c92636a90.tar.gz cpython-068a1e208f272d01415ecc511fe9e97c92636a90.zip |
Regenerated again, now clases are sorted by code, and with synonyms after
the primary name.
Diffstat (limited to 'Lib/plat-mac/lib-scriptpackages/Terminal/Standard_Suite.py')
-rw-r--r-- | Lib/plat-mac/lib-scriptpackages/Terminal/Standard_Suite.py | 70 |
1 files changed, 35 insertions, 35 deletions
diff --git a/Lib/plat-mac/lib-scriptpackages/Terminal/Standard_Suite.py b/Lib/plat-mac/lib-scriptpackages/Terminal/Standard_Suite.py index e17b7fbb7fa..c48e4470f5d 100644 --- a/Lib/plat-mac/lib-scriptpackages/Terminal/Standard_Suite.py +++ b/Lib/plat-mac/lib-scriptpackages/Terminal/Standard_Suite.py @@ -354,26 +354,6 @@ class version(aetools.NProperty): applications = application -class color(aetools.ComponentItem): - """color - A color. """ - want = 'colr' - -colors = color - -class document(aetools.ComponentItem): - """document - A document. """ - want = 'docu' -class modified(aetools.NProperty): - """modified - Has the document been modified since the last save? """ - which = 'imod' - want = 'bool' -class path(aetools.NProperty): - """path - The document's path. """ - which = 'ppth' - want = 'utxt' - -documents = document - class item(aetools.ComponentItem): """item - A scriptable object. """ want = 'cobj' @@ -388,6 +368,12 @@ class properties(aetools.NProperty): items = item +class color(aetools.ComponentItem): + """color - A color. """ + want = 'colr' + +colors = color + class window(aetools.ComponentItem): """window - A window. """ want = 'cwin' @@ -449,6 +435,20 @@ class zoomed(aetools.NProperty): want = 'bool' windows = window + +class document(aetools.ComponentItem): + """document - A document. """ + want = 'docu' +class modified(aetools.NProperty): + """modified - Has the document been modified since the last save? """ + which = 'imod' + want = 'bool' +class path(aetools.NProperty): + """path - The document's path. """ + which = 'ppth' + want = 'utxt' + +documents = document application._superclassnames = ['item'] application._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, @@ -460,21 +460,6 @@ application._privelemdict = { 'document' : document, 'window' : window, } -color._superclassnames = ['item'] -color._privpropdict = { - '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, -} -color._privelemdict = { -} -document._superclassnames = ['item'] -document._privpropdict = { - '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, - 'modified' : modified, - 'name' : name, - 'path' : path, -} -document._privelemdict = { -} item._superclassnames = [] item._privpropdict = { 'class_' : class_, @@ -482,6 +467,12 @@ item._privpropdict = { } item._privelemdict = { } +color._superclassnames = ['item'] +color._privpropdict = { + '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, +} +color._privelemdict = { +} window._superclassnames = ['item'] window._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, @@ -503,6 +494,15 @@ window._privpropdict = { } window._privelemdict = { } +document._superclassnames = ['item'] +document._privpropdict = { + '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, + 'modified' : modified, + 'name' : name, + 'path' : path, +} +document._privelemdict = { +} class _3c_(aetools.NComparison): """< - Less than """ class _3d_(aetools.NComparison): |