pyobjc-framework-Symbols 11.0__py3-none-any.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.
- Symbols/__init__.py +44 -0
- Symbols/_metadata.py +40 -0
- pyobjc_framework_Symbols-11.0.dist-info/METADATA +56 -0
- pyobjc_framework_Symbols-11.0.dist-info/RECORD +7 -0
- pyobjc_framework_Symbols-11.0.dist-info/WHEEL +6 -0
- pyobjc_framework_Symbols-11.0.dist-info/pyobjc-build-info.txt +3 -0
- pyobjc_framework_Symbols-11.0.dist-info/top_level.txt +1 -0
Symbols/__init__.py
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Python mapping for the Symbols 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 objc
|
|
13
|
+
import Foundation
|
|
14
|
+
from . import _metadata
|
|
15
|
+
|
|
16
|
+
dir_func, getattr_func = objc.createFrameworkDirAndGetattr(
|
|
17
|
+
name="Symbols",
|
|
18
|
+
frameworkIdentifier="com.apple.Symbols",
|
|
19
|
+
frameworkPath=objc.pathForFramework(
|
|
20
|
+
"/System/Library/Frameworks/Symbols.framework"
|
|
21
|
+
),
|
|
22
|
+
globals_dict=globals(),
|
|
23
|
+
inline_list=None,
|
|
24
|
+
parents=(Foundation,),
|
|
25
|
+
metadict=_metadata.__dict__,
|
|
26
|
+
)
|
|
27
|
+
|
|
28
|
+
globals()["__dir__"] = dir_func
|
|
29
|
+
globals()["__getattr__"] = getattr_func
|
|
30
|
+
|
|
31
|
+
for cls, sel in (
|
|
32
|
+
("NSSymbolEffectOptions", b"init"),
|
|
33
|
+
("NSSymbolEffectOptions", b"new"),
|
|
34
|
+
("NSSymbolEffect", b"init"),
|
|
35
|
+
("NSSymbolEffect", b"new"),
|
|
36
|
+
("NSSymbolContentTransition", b"init"),
|
|
37
|
+
("NSSymbolContentTransition", b"new"),
|
|
38
|
+
):
|
|
39
|
+
objc.registerUnavailableMethod(cls, sel)
|
|
40
|
+
|
|
41
|
+
del sys.modules["Symbols._metadata"]
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
globals().pop("_setup")()
|
Symbols/_metadata.py
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# This file is generated by objective.metadata
|
|
2
|
+
#
|
|
3
|
+
# Last update: Tue Jun 11 10:21:01 2024
|
|
4
|
+
#
|
|
5
|
+
# flake8: noqa
|
|
6
|
+
|
|
7
|
+
import objc, sys
|
|
8
|
+
from typing import NewType
|
|
9
|
+
|
|
10
|
+
if sys.maxsize > 2**32:
|
|
11
|
+
|
|
12
|
+
def sel32or64(a, b):
|
|
13
|
+
return b
|
|
14
|
+
|
|
15
|
+
else:
|
|
16
|
+
|
|
17
|
+
def sel32or64(a, b):
|
|
18
|
+
return a
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
if objc.arch == "arm64":
|
|
22
|
+
|
|
23
|
+
def selAorI(a, b):
|
|
24
|
+
return a
|
|
25
|
+
|
|
26
|
+
else:
|
|
27
|
+
|
|
28
|
+
def selAorI(a, b):
|
|
29
|
+
return b
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
misc = {}
|
|
33
|
+
constants = """$$"""
|
|
34
|
+
enums = """$$"""
|
|
35
|
+
misc.update({})
|
|
36
|
+
misc.update({})
|
|
37
|
+
misc.update({})
|
|
38
|
+
expressions = {}
|
|
39
|
+
|
|
40
|
+
# END OF FILE
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: pyobjc-framework-Symbols
|
|
3
|
+
Version: 11.0
|
|
4
|
+
Summary: Wrappers for the framework Symbols on macOS
|
|
5
|
+
Home-page: https://github.com/ronaldoussoren/pyobjc
|
|
6
|
+
Author: Ronald Oussoren
|
|
7
|
+
Author-email: pyobjc-dev@lists.sourceforge.net
|
|
8
|
+
License: MIT License
|
|
9
|
+
Keywords: PyObjC,Symbols
|
|
10
|
+
Platform: MacOS X (>=14.0)
|
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
12
|
+
Classifier: Environment :: Console
|
|
13
|
+
Classifier: Environment :: MacOS X :: Cocoa
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Natural Language :: English
|
|
17
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
|
18
|
+
Classifier: Programming Language :: Python
|
|
19
|
+
Classifier: Programming Language :: Python :: 3
|
|
20
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
27
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
28
|
+
Classifier: Programming Language :: Objective C
|
|
29
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
30
|
+
Classifier: Topic :: Software Development :: User Interfaces
|
|
31
|
+
Requires-Python: >=3.9
|
|
32
|
+
Description-Content-Type: text/x-rst; charset=UTF-8
|
|
33
|
+
Project-URL: Documentation, https://pyobjc.readthedocs.io/en/latest/
|
|
34
|
+
Project-URL: Issue tracker, https://github.com/ronaldoussoren/pyobjc/issues
|
|
35
|
+
Project-URL: Repository, https://github.com/ronaldoussoren/pyobjc
|
|
36
|
+
Requires-Dist: pyobjc-core >=11.0
|
|
37
|
+
Requires-Dist: pyobjc-framework-Cocoa >=11.0
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
Wrappers for the "Symbols" framework on macOS.
|
|
41
|
+
|
|
42
|
+
These wrappers don't include documentation, please check Apple's documentation
|
|
43
|
+
for information on how to use this framework and PyObjC's documentation
|
|
44
|
+
for general tips and tricks regarding the translation between Python
|
|
45
|
+
and (Objective-)C frameworks
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
Project links
|
|
49
|
+
-------------
|
|
50
|
+
|
|
51
|
+
* `Documentation <https://pyobjc.readthedocs.io/en/latest/>`_
|
|
52
|
+
|
|
53
|
+
* `Issue Tracker <https://github.com/ronaldoussoren/pyobjc/issues>`_
|
|
54
|
+
|
|
55
|
+
* `Repository <https://github.com/ronaldoussoren/pyobjc/>`_
|
|
56
|
+
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
Symbols/__init__.py,sha256=ESZ8wOY5xNSbFxnFANzabu-94FsiFp9cUouvASat0fk,1164
|
|
2
|
+
Symbols/_metadata.py,sha256=SzsAVTNwPHRw02t-UkjBSePcYdEMelDBWFbaiktakIk,515
|
|
3
|
+
pyobjc_framework_Symbols-11.0.dist-info/METADATA,sha256=OUgmn6ytkznBYRpVHlveEyIRTbvIosrOvYf48LkJYfw,2230
|
|
4
|
+
pyobjc_framework_Symbols-11.0.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
|
|
5
|
+
pyobjc_framework_Symbols-11.0.dist-info/pyobjc-build-info.txt,sha256=R5YEsJoyZ8GByMQk4k_4WWEg6V4RNO715NMQwx6YaNI,85
|
|
6
|
+
pyobjc_framework_Symbols-11.0.dist-info/top_level.txt,sha256=ptDA6Zo9_b3AV0URM_HsqqL4f1VHbq08NETEkrFYvxU,8
|
|
7
|
+
pyobjc_framework_Symbols-11.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Symbols
|