mirror of
https://github.com/python/cpython.git
synced 2025-08-02 16:13:13 +00:00
Package with suites for talking to CodeWarrior.
This commit is contained in:
parent
47ff247e4b
commit
5119a0bc2b
5 changed files with 3554 additions and 0 deletions
40
Mac/Lib/lib-scriptpackages/CodeWarrior/__init__.py
Normal file
40
Mac/Lib/lib-scriptpackages/CodeWarrior/__init__.py
Normal file
|
@ -0,0 +1,40 @@
|
|||
"""
|
||||
Package generated from Macintosh HD:SWdev:CodeWarrior 6 MPTP:Metrowerks CodeWarrior:CodeWarrior IDE 4.1B9
|
||||
Resource aete resid 0 AppleEvent Suites
|
||||
"""
|
||||
import aetools
|
||||
import Required
|
||||
import Standard_Suite
|
||||
import CodeWarrior_suite
|
||||
import Metrowerks_Shell_Suite
|
||||
|
||||
|
||||
_code_to_module = {
|
||||
'reqd' : Required,
|
||||
'CoRe' : Standard_Suite,
|
||||
'CWIE' : CodeWarrior_suite,
|
||||
'MMPR' : Metrowerks_Shell_Suite,
|
||||
}
|
||||
|
||||
|
||||
|
||||
_code_to_fullname = {
|
||||
'reqd' : 'CodeWarrior.Required',
|
||||
'CoRe' : 'CodeWarrior.Standard_Suite',
|
||||
'CWIE' : 'CodeWarrior.CodeWarrior_suite',
|
||||
'MMPR' : 'CodeWarrior.Metrowerks_Shell_Suite',
|
||||
}
|
||||
|
||||
from Required import *
|
||||
from Standard_Suite import *
|
||||
from CodeWarrior_suite import *
|
||||
from Metrowerks_Shell_Suite import *
|
||||
|
||||
|
||||
class CodeWarrior(Required_Events,
|
||||
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