mirror of
https://github.com/python/cpython.git
synced 2025-11-03 03:22:27 +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'
|
||||
|
||||
from StdSuites.Required_Suite import *
|
||||
class Required_suite_Events:
|
||||
class Required_suite_Events(Required_Suite_Events):
|
||||
|
||||
def open(self, _object, _attributes={}, **_arguments):
|
||||
"""open: Open the specified object(s)
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ import MacOS
|
|||
_code = 'TEXT'
|
||||
|
||||
from StdSuites.Text_Suite import *
|
||||
class Text_Events:
|
||||
class Text_Events(Text_Suite_Events):
|
||||
|
||||
pass
|
||||
|
||||
|
|
|
|||
|
|
@ -25,13 +25,13 @@ _code_to_module = {
|
|||
|
||||
|
||||
_code_to_fullname = {
|
||||
'reqd' : 'Netscape.Required_suite',
|
||||
'CoRe' : 'Netscape.Standard_Suite',
|
||||
'GURL' : 'Netscape.Standard_URL_suite',
|
||||
'WWW!' : 'Netscape.WorldWideWeb_suite',
|
||||
'MOSS' : 'Netscape.Mozilla_suite',
|
||||
'ppnt' : 'Netscape.PowerPlant',
|
||||
'TEXT' : 'Netscape.Text',
|
||||
'reqd' : ('Netscape.Required_suite', 'Required_suite'),
|
||||
'CoRe' : ('Netscape.Standard_Suite', 'Standard_Suite'),
|
||||
'GURL' : ('Netscape.Standard_URL_suite', 'Standard_URL_suite'),
|
||||
'WWW!' : ('Netscape.WorldWideWeb_suite', 'WorldWideWeb_suite'),
|
||||
'MOSS' : ('Netscape.Mozilla_suite', 'Mozilla_suite'),
|
||||
'ppnt' : ('Netscape.PowerPlant', 'PowerPlant'),
|
||||
'TEXT' : ('Netscape.Text', 'Text'),
|
||||
}
|
||||
|
||||
from Required_suite import *
|
||||
|
|
@ -44,12 +44,12 @@ from Text import *
|
|||
|
||||
|
||||
class Netscape(Required_suite_Events,
|
||||
Standard_Suite_Events,
|
||||
Standard_URL_suite_Events,
|
||||
WorldWideWeb_suite_Events,
|
||||
Mozilla_suite_Events,
|
||||
PowerPlant_Events,
|
||||
Text_Events,
|
||||
aetools.TalkTo):
|
||||
Standard_Suite_Events,
|
||||
Standard_URL_suite_Events,
|
||||
WorldWideWeb_suite_Events,
|
||||
Mozilla_suite_Events,
|
||||
PowerPlant_Events,
|
||||
Text_Events,
|
||||
aetools.TalkTo):
|
||||
_signature = 'MOSS'
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue