• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-InputMethodKit-2.5.1/Lib/InputMethodKit/
1'''
2Python mapping for the InputMethodKit framework.
3
4This module does not contain docstrings for the wrapped code, check Apple's
5documentation for details on how to use these functions and classes.
6'''
7import sys
8import objc
9import Foundation
10
11from InputMethodKit import _metadata
12from InputMethodKit._InputMethodKit import *
13
14sys.modules['InputMethodKit'] = mod = objc.ObjCLazyModule('InputMethodKit',
15    "com.apple.InputMethodKit",
16    objc.pathForFramework("/System/Library/Frameworks/InputMethodKit.framework"),
17    _metadata.__dict__, None, {
18       '__doc__': __doc__,
19       '__path__': __path__,
20       'objc': objc,
21    }, ( Foundation,))
22