~malept/ubuntu/lucid/python2.6/dev-dependency-fix

« back to all changes in this revision

Viewing changes to Lib/plat-mac/lib-scriptpackages/_builtinSuites/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-02-13 12:51:00 UTC
  • Revision ID: james.westby@ubuntu.com-20090213125100-uufgcb9yeqzujpqw
Tags: upstream-2.6.1
ImportĀ upstreamĀ versionĀ 2.6.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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'