• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-PreferencePanes-2.5.1/Lib/PreferencePanes/
1'''
2Python mapping for the PreferencePanes 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 AppKit
10
11from PreferencePanes import _metadata
12
13sys.modules['PreferencePanes'] = mod = objc.ObjCLazyModule('PreferencePanes',
14    "com.apple.frameworks.preferencepanes",
15    objc.pathForFramework("/System/Library/Frameworks/PreferencePanes.framework"),
16    _metadata.__dict__, None, {
17       '__doc__': __doc__,
18       '__path__': __path__,
19       'objc': objc,
20    }, ( AppKit,))
21