• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1"""
2Manually generated suite used as base class for StdSuites Required and Standard
3suites. This is needed because the events and enums in this suite belong
4in the Required suite according to the Apple docs, but they often seem to be
5in the Standard suite.
6"""
7
8from warnings import warnpy3k
9warnpy3k("In 3.x, the _builtinSuites module is removed.", stacklevel=2)
10
11import aetools
12import builtin_Suite
13
14
15_code_to_module = {
16        'reqd' : builtin_Suite,
17        'core' : builtin_Suite,
18}
19
20
21
22_code_to_fullname = {
23        'reqd' : ('_builtinSuites.builtin_Suite', 'builtin_Suite'),
24        'core' : ('_builtinSuites.builtin_Suite', 'builtin_Suite'),
25}
26
27from builtin_Suite import *
28
29class _builtinSuites(builtin_Suite_Events,
30                aetools.TalkTo):
31    _signature = 'ascr'
32