Home | History | Annotate | Download | only in _builtinSuites
      1 """
      2 Manually generated suite used as base class for StdSuites Required and Standard
      3 suites. This is needed because the events and enums in this suite belong
      4 in the Required suite according to the Apple docs, but they often seem to be
      5 in the Standard suite.
      6 """
      7 
      8 from warnings import warnpy3k
      9 warnpy3k("In 3.x, the _builtinSuites module is removed.", stacklevel=2)
     10 
     11 import aetools
     12 import 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 
     27 from builtin_Suite import *
     28 
     29 class _builtinSuites(builtin_Suite_Events,
     30                 aetools.TalkTo):
     31     _signature = 'ascr'
     32