summaryrefslogtreecommitdiffstats
path: root/Mac/Lib/lib-scriptpackages/CodeWarrior/__init__.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2000-08-20 19:28:27 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2000-08-20 19:28:27 (GMT)
commit4ef58af9a7ad74c51ee611b5fe95fc3554e2a872 (patch)
tree4471359b334fc40751a0d61e1796692a19d6db91 /Mac/Lib/lib-scriptpackages/CodeWarrior/__init__.py
parent0400515ff00493c3b7634cebffaba63a3bf2accd (diff)
downloadcpython-4ef58af9a7ad74c51ee611b5fe95fc3554e2a872.zip
cpython-4ef58af9a7ad74c51ee611b5fe95fc3554e2a872.tar.gz
cpython-4ef58af9a7ad74c51ee611b5fe95fc3554e2a872.tar.bz2
Regenerated with fixes to gensuitemodule.
Diffstat (limited to 'Mac/Lib/lib-scriptpackages/CodeWarrior/__init__.py')
-rw-r--r--Mac/Lib/lib-scriptpackages/CodeWarrior/__init__.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/Mac/Lib/lib-scriptpackages/CodeWarrior/__init__.py b/Mac/Lib/lib-scriptpackages/CodeWarrior/__init__.py
index a08702f..c25bfb7 100644
--- a/Mac/Lib/lib-scriptpackages/CodeWarrior/__init__.py
+++ b/Mac/Lib/lib-scriptpackages/CodeWarrior/__init__.py
@@ -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'