mirror of
https://github.com/python/cpython.git
synced 2025-07-24 03:35:53 +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_Events:
|
||||
class Required_Events(Required_Suite_Events):
|
||||
|
||||
_argmap_open = {
|
||||
'converting' : 'Conv',
|
||||
|
|
|
@ -19,10 +19,10 @@ _code_to_module = {
|
|||
|
||||
|
||||
_code_to_fullname = {
|
||||
'reqd' : 'CodeWarrior.Required',
|
||||
'CoRe' : 'CodeWarrior.Standard_Suite',
|
||||
'CWIE' : 'CodeWarrior.CodeWarrior_suite',
|
||||
'MMPR' : 'CodeWarrior.Metrowerks_Shell_Suite',
|
||||
'reqd' : ('CodeWarrior.Required', 'Required'),
|
||||
'CoRe' : ('CodeWarrior.Standard_Suite', 'Standard_Suite'),
|
||||
'CWIE' : ('CodeWarrior.CodeWarrior_suite', 'CodeWarrior_suite'),
|
||||
'MMPR' : ('CodeWarrior.Metrowerks_Shell_Suite', 'Metrowerks_Shell_Suite'),
|
||||
}
|
||||
|
||||
from Required import *
|
||||
|
@ -32,9 +32,9 @@ from Metrowerks_Shell_Suite import *
|
|||
|
||||
|
||||
class CodeWarrior(Required_Events,
|
||||
Standard_Suite_Events,
|
||||
CodeWarrior_suite_Events,
|
||||
Metrowerks_Shell_Suite_Events,
|
||||
aetools.TalkTo):
|
||||
Standard_Suite_Events,
|
||||
CodeWarrior_suite_Events,
|
||||
Metrowerks_Shell_Suite_Events,
|
||||
aetools.TalkTo):
|
||||
_signature = 'CWIE'
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue