pyobjc-framework-CoreText 12.2__cp315-cp315-macosx_10_15_universal2.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pyobjc-framework-CoreText might be problematic. Click here for more details.

CoreText/__init__.py ADDED
@@ -0,0 +1,35 @@
1
+ """
2
+ Python mapping for the CoreText framework.
3
+
4
+ This module does not contain docstrings for the wrapped code, check Apple's
5
+ documentation for details on how to use these functions and classes.
6
+ """
7
+
8
+
9
+ def _setup():
10
+ import sys
11
+
12
+ import CoreFoundation
13
+ import Quartz
14
+ import objc
15
+ from . import _metadata, _manual
16
+
17
+ dir_func, getattr_func = objc.createFrameworkDirAndGetattr(
18
+ name="CoreText",
19
+ frameworkIdentifier="com.apple.CoreText",
20
+ frameworkPath=objc.pathForFramework(
21
+ "/System/Library/Frameworks/CoreText.framework"
22
+ ),
23
+ globals_dict=globals(),
24
+ inline_list=None,
25
+ parents=(_manual, CoreFoundation, Quartz),
26
+ metadict=_metadata.__dict__,
27
+ )
28
+
29
+ globals()["__dir__"] = dir_func
30
+ globals()["__getattr__"] = getattr_func
31
+
32
+ del sys.modules["CoreText._metadata"]
33
+
34
+
35
+ globals().pop("_setup")()
Binary file