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