mirror of
https://github.com/python/cpython.git
synced 2025-11-14 15:56:48 +00:00
Regenerated with fixes to gensuitemodule.
This commit is contained in:
parent
0400515ff0
commit
4ef58af9a7
6 changed files with 44 additions and 44 deletions
|
|
@ -11,7 +11,7 @@ import MacOS
|
||||||
_code = 'reqd'
|
_code = 'reqd'
|
||||||
|
|
||||||
from StdSuites.Required_Suite import *
|
from StdSuites.Required_Suite import *
|
||||||
class Required_Events:
|
class Required_Events(Required_Suite_Events):
|
||||||
|
|
||||||
_argmap_open = {
|
_argmap_open = {
|
||||||
'converting' : 'Conv',
|
'converting' : 'Conv',
|
||||||
|
|
|
||||||
|
|
@ -19,10 +19,10 @@ _code_to_module = {
|
||||||
|
|
||||||
|
|
||||||
_code_to_fullname = {
|
_code_to_fullname = {
|
||||||
'reqd' : 'CodeWarrior.Required',
|
'reqd' : ('CodeWarrior.Required', 'Required'),
|
||||||
'CoRe' : 'CodeWarrior.Standard_Suite',
|
'CoRe' : ('CodeWarrior.Standard_Suite', 'Standard_Suite'),
|
||||||
'CWIE' : 'CodeWarrior.CodeWarrior_suite',
|
'CWIE' : ('CodeWarrior.CodeWarrior_suite', 'CodeWarrior_suite'),
|
||||||
'MMPR' : 'CodeWarrior.Metrowerks_Shell_Suite',
|
'MMPR' : ('CodeWarrior.Metrowerks_Shell_Suite', 'Metrowerks_Shell_Suite'),
|
||||||
}
|
}
|
||||||
|
|
||||||
from Required import *
|
from Required import *
|
||||||
|
|
@ -32,9 +32,9 @@ from Metrowerks_Shell_Suite import *
|
||||||
|
|
||||||
|
|
||||||
class CodeWarrior(Required_Events,
|
class CodeWarrior(Required_Events,
|
||||||
Standard_Suite_Events,
|
Standard_Suite_Events,
|
||||||
CodeWarrior_suite_Events,
|
CodeWarrior_suite_Events,
|
||||||
Metrowerks_Shell_Suite_Events,
|
Metrowerks_Shell_Suite_Events,
|
||||||
aetools.TalkTo):
|
aetools.TalkTo):
|
||||||
_signature = 'CWIE'
|
_signature = 'CWIE'
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ import MacOS
|
||||||
_code = 'reqd'
|
_code = 'reqd'
|
||||||
|
|
||||||
from StdSuites.Required_Suite import *
|
from StdSuites.Required_Suite import *
|
||||||
class Required_suite_Events:
|
class Required_suite_Events(Required_Suite_Events):
|
||||||
|
|
||||||
def open(self, _object, _attributes={}, **_arguments):
|
def open(self, _object, _attributes={}, **_arguments):
|
||||||
"""open: Open the specified object(s)
|
"""open: Open the specified object(s)
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ import MacOS
|
||||||
_code = 'TEXT'
|
_code = 'TEXT'
|
||||||
|
|
||||||
from StdSuites.Text_Suite import *
|
from StdSuites.Text_Suite import *
|
||||||
class Text_Events:
|
class Text_Events(Text_Suite_Events):
|
||||||
|
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -25,13 +25,13 @@ _code_to_module = {
|
||||||
|
|
||||||
|
|
||||||
_code_to_fullname = {
|
_code_to_fullname = {
|
||||||
'reqd' : 'Netscape.Required_suite',
|
'reqd' : ('Netscape.Required_suite', 'Required_suite'),
|
||||||
'CoRe' : 'Netscape.Standard_Suite',
|
'CoRe' : ('Netscape.Standard_Suite', 'Standard_Suite'),
|
||||||
'GURL' : 'Netscape.Standard_URL_suite',
|
'GURL' : ('Netscape.Standard_URL_suite', 'Standard_URL_suite'),
|
||||||
'WWW!' : 'Netscape.WorldWideWeb_suite',
|
'WWW!' : ('Netscape.WorldWideWeb_suite', 'WorldWideWeb_suite'),
|
||||||
'MOSS' : 'Netscape.Mozilla_suite',
|
'MOSS' : ('Netscape.Mozilla_suite', 'Mozilla_suite'),
|
||||||
'ppnt' : 'Netscape.PowerPlant',
|
'ppnt' : ('Netscape.PowerPlant', 'PowerPlant'),
|
||||||
'TEXT' : 'Netscape.Text',
|
'TEXT' : ('Netscape.Text', 'Text'),
|
||||||
}
|
}
|
||||||
|
|
||||||
from Required_suite import *
|
from Required_suite import *
|
||||||
|
|
@ -44,12 +44,12 @@ from Text import *
|
||||||
|
|
||||||
|
|
||||||
class Netscape(Required_suite_Events,
|
class Netscape(Required_suite_Events,
|
||||||
Standard_Suite_Events,
|
Standard_Suite_Events,
|
||||||
Standard_URL_suite_Events,
|
Standard_URL_suite_Events,
|
||||||
WorldWideWeb_suite_Events,
|
WorldWideWeb_suite_Events,
|
||||||
Mozilla_suite_Events,
|
Mozilla_suite_Events,
|
||||||
PowerPlant_Events,
|
PowerPlant_Events,
|
||||||
Text_Events,
|
Text_Events,
|
||||||
aetools.TalkTo):
|
aetools.TalkTo):
|
||||||
_signature = 'MOSS'
|
_signature = 'MOSS'
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -29,15 +29,15 @@ _code_to_module = {
|
||||||
|
|
||||||
|
|
||||||
_code_to_fullname = {
|
_code_to_fullname = {
|
||||||
'ascr' : 'StdSuites.AppleScript_Suite',
|
'ascr' : ('StdSuites.AppleScript_Suite', 'AppleScript_Suite'),
|
||||||
'reqd' : 'StdSuites.Required_Suite',
|
'reqd' : ('StdSuites.Required_Suite', 'Required_Suite'),
|
||||||
'core' : 'StdSuites.Standard_Suite',
|
'core' : ('StdSuites.Standard_Suite', 'Standard_Suite'),
|
||||||
'TEXT' : 'StdSuites.Text_Suite',
|
'TEXT' : ('StdSuites.Text_Suite', 'Text_Suite'),
|
||||||
'qdrw' : 'StdSuites.QuickDraw_Graphics_Suite',
|
'qdrw' : ('StdSuites.QuickDraw_Graphics_Suite', 'QuickDraw_Graphics_Suite'),
|
||||||
'qdsp' : 'StdSuites.QuickDraw_Graphics_Suppleme',
|
'qdsp' : ('StdSuites.QuickDraw_Graphics_Suppleme', 'QuickDraw_Graphics_Suppleme'),
|
||||||
'tbls' : 'StdSuites.Table_Suite',
|
'tbls' : ('StdSuites.Table_Suite', 'Table_Suite'),
|
||||||
'macc' : 'StdSuites.Macintosh_Connectivity_Clas',
|
'macc' : ('StdSuites.Macintosh_Connectivity_Clas', 'Macintosh_Connectivity_Clas'),
|
||||||
'tpnm' : 'StdSuites.Type_Names_Suite',
|
'tpnm' : ('StdSuites.Type_Names_Suite', 'Type_Names_Suite'),
|
||||||
}
|
}
|
||||||
|
|
||||||
from AppleScript_Suite import *
|
from AppleScript_Suite import *
|
||||||
|
|
@ -52,14 +52,14 @@ from Type_Names_Suite import *
|
||||||
|
|
||||||
|
|
||||||
class StdSuites(AppleScript_Suite_Events,
|
class StdSuites(AppleScript_Suite_Events,
|
||||||
Required_Suite_Events,
|
Required_Suite_Events,
|
||||||
Standard_Suite_Events,
|
Standard_Suite_Events,
|
||||||
Text_Suite_Events,
|
Text_Suite_Events,
|
||||||
QuickDraw_Graphics_Suite_Events,
|
QuickDraw_Graphics_Suite_Events,
|
||||||
QuickDraw_Graphics_Suppleme_Events,
|
QuickDraw_Graphics_Suppleme_Events,
|
||||||
Table_Suite_Events,
|
Table_Suite_Events,
|
||||||
Macintosh_Connectivity_Clas_Events,
|
Macintosh_Connectivity_Clas_Events,
|
||||||
Type_Names_Suite_Events,
|
Type_Names_Suite_Events,
|
||||||
aetools.TalkTo):
|
aetools.TalkTo):
|
||||||
pass
|
_signature = 'ascr'
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue