pyobjc-core 11.0__tar.gz → 12.0__tar.gz
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.
- pyobjc_core-12.0/Examples/Scripts/HelloWorld.py +78 -0
- pyobjc_core-12.0/Examples/Scripts/autoreadme.py +55 -0
- pyobjc_core-12.0/Examples/Scripts/signal-demo.py +35 -0
- pyobjc_core-12.0/Examples/Scripts/stdinreader.py +93 -0
- pyobjc_core-12.0/Lib/PyObjCTools/TestSupport.py +1561 -0
- pyobjc_core-12.0/Lib/objc/__init__.py +92 -0
- pyobjc_core-12.0/Lib/objc/_convenience.py +237 -0
- pyobjc_core-12.0/Lib/objc/_convenience_nsarray.py +434 -0
- pyobjc_core-12.0/Lib/objc/_convenience_nsdata.py +449 -0
- pyobjc_core-12.0/Lib/objc/_lazyimport.py +501 -0
- pyobjc_core-12.0/Lib/objc/_new.py +173 -0
- pyobjc_core-12.0/Lib/objc/_transform.py +755 -0
- pyobjc_core-12.0/Lib/objc/_types.py +7 -0
- pyobjc_core-12.0/Lib/objc/simd.py +601 -0
- pyobjc_core-12.0/Lib/pyobjc_core.egg-info/PKG-INFO +72 -0
- pyobjc_core-12.0/Lib/pyobjc_core.egg-info/SOURCES.txt +511 -0
- pyobjc_core-12.0/Lib/pyobjc_core.egg-info/include/pyobjc-api.h +217 -0
- pyobjc_core-12.0/Lib/pyobjc_core.egg-info/include/pyobjc-compat.h +397 -0
- pyobjc_core-12.0/Lib/pyobjc_core.egg-info/pyobjc-build-info.txt +3 -0
- pyobjc_core-12.0/License.txt +10 -0
- pyobjc_core-12.0/MANIFEST.in +18 -0
- pyobjc_core-12.0/Modules/_machsignals.m +181 -0
- pyobjc_core-12.0/Modules/objc/OC_NSBundleHack.m +140 -0
- pyobjc_core-12.0/Modules/objc/OC_PythonArray.m +684 -0
- pyobjc_core-12.0/Modules/objc/OC_PythonData.m +335 -0
- pyobjc_core-12.0/Modules/objc/OC_PythonDate.m +307 -0
- pyobjc_core-12.0/Modules/objc/OC_PythonDictionary.h +43 -0
- pyobjc_core-12.0/Modules/objc/OC_PythonDictionary.m +615 -0
- pyobjc_core-12.0/Modules/objc/OC_PythonEnumerator.h +18 -0
- pyobjc_core-12.0/Modules/objc/OC_PythonEnumerator.m +93 -0
- pyobjc_core-12.0/Modules/objc/OC_PythonNumber.m +537 -0
- pyobjc_core-12.0/Modules/objc/OC_PythonObject.m +1126 -0
- pyobjc_core-12.0/Modules/objc/OC_PythonSet.m +562 -0
- pyobjc_core-12.0/Modules/objc/OC_PythonURL.h +13 -0
- pyobjc_core-12.0/Modules/objc/OC_PythonURL.m +114 -0
- pyobjc_core-12.0/Modules/objc/OC_PythonUnicode.m +415 -0
- pyobjc_core-12.0/Modules/objc/ObjCPointer.m +168 -0
- pyobjc_core-12.0/Modules/objc/block_support.h +18 -0
- pyobjc_core-12.0/Modules/objc/block_support.m +606 -0
- pyobjc_core-12.0/Modules/objc/bundle-variables.m +529 -0
- pyobjc_core-12.0/Modules/objc/class-builder.m +1195 -0
- pyobjc_core-12.0/Modules/objc/class-list.m +508 -0
- pyobjc_core-12.0/Modules/objc/closure_pool.h +38 -0
- pyobjc_core-12.0/Modules/objc/closure_pool.m +143 -0
- pyobjc_core-12.0/Modules/objc/corefoundation.m +414 -0
- pyobjc_core-12.0/Modules/objc/ctests.m +1271 -0
- pyobjc_core-12.0/Modules/objc/file_wrapper.m +423 -0
- pyobjc_core-12.0/Modules/objc/formal-protocol.h +17 -0
- pyobjc_core-12.0/Modules/objc/formal-protocol.m +524 -0
- pyobjc_core-12.0/Modules/objc/fsref.m +218 -0
- pyobjc_core-12.0/Modules/objc/function.m +537 -0
- pyobjc_core-12.0/Modules/objc/helpers-authorization.m +238 -0
- pyobjc_core-12.0/Modules/objc/helpers-foundation-nscoder.m +1530 -0
- pyobjc_core-12.0/Modules/objc/helpers-foundation-nsdata.m +232 -0
- pyobjc_core-12.0/Modules/objc/helpers-foundation-nsdecimal.m +996 -0
- pyobjc_core-12.0/Modules/objc/helpers-foundation-nsinvocation.m +386 -0
- pyobjc_core-12.0/Modules/objc/helpers-foundation-nsobject.m +473 -0
- pyobjc_core-12.0/Modules/objc/helpers-vector.m +17585 -0
- pyobjc_core-12.0/Modules/objc/instance-var.m +609 -0
- pyobjc_core-12.0/Modules/objc/ivar-accessor.m +306 -0
- pyobjc_core-12.0/Modules/objc/libffi_extra.m +103 -0
- pyobjc_core-12.0/Modules/objc/libffi_support.h +90 -0
- pyobjc_core-12.0/Modules/objc/libffi_support.m +5556 -0
- pyobjc_core-12.0/Modules/objc/meth-func.m +275 -0
- pyobjc_core-12.0/Modules/objc/method-accessor.m +671 -0
- pyobjc_core-12.0/Modules/objc/method-imp.m +576 -0
- pyobjc_core-12.0/Modules/objc/method-signature.h +104 -0
- pyobjc_core-12.0/Modules/objc/method-signature.m +2228 -0
- pyobjc_core-12.0/Modules/objc/module.m +2442 -0
- pyobjc_core-12.0/Modules/objc/objc-class.h +163 -0
- pyobjc_core-12.0/Modules/objc/objc-class.m +3894 -0
- pyobjc_core-12.0/Modules/objc/objc-object.h +55 -0
- pyobjc_core-12.0/Modules/objc/objc-object.m +1392 -0
- pyobjc_core-12.0/Modules/objc/objc-runtime-compat.m +66 -0
- pyobjc_core-12.0/Modules/objc/objc_super.m +229 -0
- pyobjc_core-12.0/Modules/objc/objc_support.h +91 -0
- pyobjc_core-12.0/Modules/objc/objc_support.m +3561 -0
- pyobjc_core-12.0/Modules/objc/objc_util.h +190 -0
- pyobjc_core-12.0/Modules/objc/objc_util.m +1783 -0
- pyobjc_core-12.0/Modules/objc/opaque-pointer.m +436 -0
- pyobjc_core-12.0/Modules/objc/options.h +71 -0
- pyobjc_core-12.0/Modules/objc/options.m +1472 -0
- pyobjc_core-12.0/Modules/objc/pointer-support.m +442 -0
- pyobjc_core-12.0/Modules/objc/proxy-registry.h +93 -0
- pyobjc_core-12.0/Modules/objc/proxy-registry.m +307 -0
- pyobjc_core-12.0/Modules/objc/pyobjc-api.h +217 -0
- pyobjc_core-12.0/Modules/objc/pyobjc-api.m +69 -0
- pyobjc_core-12.0/Modules/objc/pyobjc-assert.h +59 -0
- pyobjc_core-12.0/Modules/objc/pyobjc-compat.h +397 -0
- pyobjc_core-12.0/Modules/objc/pyobjc-compat.m +69 -0
- pyobjc_core-12.0/Modules/objc/pyobjc-unittest.h +128 -0
- pyobjc_core-12.0/Modules/objc/pyobjc.h +183 -0
- pyobjc_core-12.0/Modules/objc/pyobjc_unicode.m +486 -0
- pyobjc_core-12.0/Modules/objc/python-api-used.h +517 -0
- pyobjc_core-12.0/Modules/objc/registry.m +300 -0
- pyobjc_core-12.0/Modules/objc/selector.h +97 -0
- pyobjc_core-12.0/Modules/objc/selector.m +2073 -0
- pyobjc_core-12.0/Modules/objc/struct-sockaddr.h +14 -0
- pyobjc_core-12.0/Modules/objc/struct-sockaddr.m +252 -0
- pyobjc_core-12.0/Modules/objc/struct-wrapper.h +135 -0
- pyobjc_core-12.0/Modules/objc/struct-wrapper.m +1954 -0
- pyobjc_core-12.0/Modules/objc/super-call.m +610 -0
- pyobjc_core-12.0/Modules/objc/test/NULL.m +147 -0
- pyobjc_core-12.0/Modules/objc/test/arrayint.m +193 -0
- pyobjc_core-12.0/Modules/objc/test/arrays.m +274 -0
- pyobjc_core-12.0/Modules/objc/test/authorizationitem.m +111 -0
- pyobjc_core-12.0/Modules/objc/test/block.m +420 -0
- pyobjc_core-12.0/Modules/objc/test/block2.m +80 -0
- pyobjc_core-12.0/Modules/objc/test/bufsizeinarg.m +299 -0
- pyobjc_core-12.0/Modules/objc/test/categories_base.m +7014 -0
- pyobjc_core-12.0/Modules/objc/test/category_c42.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_c43.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_c44.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_c45.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_c46.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_c47.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_c48.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_c49.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_c50.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_c51.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_c52.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_c53.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_c54.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_c55.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_c56.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_c57.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_c58.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_c59.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp10.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp11.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp12.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp13.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp14.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp15.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp16.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp17.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp18.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp19.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp20.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp21.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp22.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp23.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp24.m +70 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp27.m +70 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp3.m +70 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp30.m +70 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp33.m +70 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp36.m +70 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp39.m +70 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp42.m +70 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp45.m +70 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp48.m +70 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp51.m +70 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp54.m +70 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp57.m +70 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp6.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp7.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp8.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_gp9.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_p24.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_p25.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_p26.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_p27.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_p28.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_p29.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_p30.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_p31.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_p32.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_p33.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_p34.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_p35.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_p36.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_p37.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_p38.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_p39.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_p40.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/category_p41.m +104 -0
- pyobjc_core-12.0/Modules/objc/test/cfsocket.m +79 -0
- pyobjc_core-12.0/Modules/objc/test/classes.m +91 -0
- pyobjc_core-12.0/Modules/objc/test/clinmeth.m +133 -0
- pyobjc_core-12.0/Modules/objc/test/coding.m +282 -0
- pyobjc_core-12.0/Modules/objc/test/copying.m +168 -0
- pyobjc_core-12.0/Modules/objc/test/corefoundation.m +192 -0
- pyobjc_core-12.0/Modules/objc/test/customcallers.m +288 -0
- pyobjc_core-12.0/Modules/objc/test/dataint.m +99 -0
- pyobjc_core-12.0/Modules/objc/test/dateint.m +149 -0
- pyobjc_core-12.0/Modules/objc/test/decimal.m +94 -0
- pyobjc_core-12.0/Modules/objc/test/deprecations.m +182 -0
- pyobjc_core-12.0/Modules/objc/test/dictint.m +152 -0
- pyobjc_core-12.0/Modules/objc/test/enumeration.m +87 -0
- pyobjc_core-12.0/Modules/objc/test/exceptions.m +134 -0
- pyobjc_core-12.0/Modules/objc/test/filepointer.m +98 -0
- pyobjc_core-12.0/Modules/objc/test/fsref.m +128 -0
- pyobjc_core-12.0/Modules/objc/test/gcov.m +71 -0
- pyobjc_core-12.0/Modules/objc/test/genericnew.m +177 -0
- pyobjc_core-12.0/Modules/objc/test/helpernsdata.m +141 -0
- pyobjc_core-12.0/Modules/objc/test/helpernsobject.m +157 -0
- pyobjc_core-12.0/Modules/objc/test/identity.m +191 -0
- pyobjc_core-12.0/Modules/objc/test/initialize.m +152 -0
- pyobjc_core-12.0/Modules/objc/test/initpatterns.m +219 -0
- pyobjc_core-12.0/Modules/objc/test/instanceVariables.m +114 -0
- pyobjc_core-12.0/Modules/objc/test/locking.m +100 -0
- pyobjc_core-12.0/Modules/objc/test/metadata.m +1545 -0
- pyobjc_core-12.0/Modules/objc/test/metadatafunction.m +706 -0
- pyobjc_core-12.0/Modules/objc/test/metadataorder.m +203 -0
- pyobjc_core-12.0/Modules/objc/test/methodaccess.m +80 -0
- pyobjc_core-12.0/Modules/objc/test/methodlookup.m +229 -0
- pyobjc_core-12.0/Modules/objc/test/methres1.m +72 -0
- pyobjc_core-12.0/Modules/objc/test/methres2.m +72 -0
- pyobjc_core-12.0/Modules/objc/test/misc.m +78 -0
- pyobjc_core-12.0/Modules/objc/test/missing1.m +56 -0
- pyobjc_core-12.0/Modules/objc/test/missing2.m +59 -0
- pyobjc_core-12.0/Modules/objc/test/missing3.m +59 -0
- pyobjc_core-12.0/Modules/objc/test/nsobjectcategory.m +66 -0
- pyobjc_core-12.0/Modules/objc/test/nulldelimitedresult.m +155 -0
- pyobjc_core-12.0/Modules/objc/test/objectint.m +863 -0
- pyobjc_core-12.0/Modules/objc/test/opaque.m +224 -0
- pyobjc_core-12.0/Modules/objc/test/pointersupport.m +178 -0
- pyobjc_core-12.0/Modules/objc/test/properties.m +138 -0
- pyobjc_core-12.0/Modules/objc/test/protected.m +81 -0
- pyobjc_core-12.0/Modules/objc/test/protocol.m +122 -0
- pyobjc_core-12.0/Modules/objc/test/pythonnumber.m +314 -0
- pyobjc_core-12.0/Modules/objc/test/pythonset.m +288 -0
- pyobjc_core-12.0/Modules/objc/test/sequence.m +145 -0
- pyobjc_core-12.0/Modules/objc/test/sockaddr.m +194 -0
- pyobjc_core-12.0/Modules/objc/test/specialtypecodes.m +417 -0
- pyobjc_core-12.0/Modules/objc/test/stringint.m +141 -0
- pyobjc_core-12.0/Modules/objc/test/structargs.m +135 -0
- pyobjc_core-12.0/Modules/objc/test/structpointer1.m +103 -0
- pyobjc_core-12.0/Modules/objc/test/structpointer2.m +67 -0
- pyobjc_core-12.0/Modules/objc/test/structs.m +112 -0
- pyobjc_core-12.0/Modules/objc/test/testbndl.m +2303 -0
- pyobjc_core-12.0/Modules/objc/test/testbndl2.m +23313 -0
- pyobjc_core-12.0/Modules/objc/test/testclassandinst.m +111 -0
- pyobjc_core-12.0/Modules/objc/test/testoutputinitializer.m +97 -0
- pyobjc_core-12.0/Modules/objc/test/unavailable.m +114 -0
- pyobjc_core-12.0/Modules/objc/test/vector.m +261 -0
- pyobjc_core-12.0/Modules/objc/test/vectorcall.m +9828 -0
- pyobjc_core-12.0/Modules/objc/test/voidpointer.m +93 -0
- pyobjc_core-12.0/Modules/objc/varlist.m +511 -0
- pyobjc_core-12.0/Modules/objc/weakref.m +169 -0
- pyobjc_core-12.0/PKG-INFO +69 -0
- pyobjc_core-12.0/PyObjCTest/dump-nsarchive-securecoding.m +78 -0
- pyobjc_core-12.0/PyObjCTest/test_archive_python.py +2142 -0
- pyobjc_core-12.0/PyObjCTest/test_array_interface.py +447 -0
- pyobjc_core-12.0/PyObjCTest/test_authorizationitem.py +208 -0
- pyobjc_core-12.0/PyObjCTest/test_blocks.py +1253 -0
- pyobjc_core-12.0/PyObjCTest/test_bundleFunctions.py +195 -0
- pyobjc_core-12.0/PyObjCTest/test_bundleVariables.py +199 -0
- pyobjc_core-12.0/PyObjCTest/test_callbacks.py +285 -0
- pyobjc_core-12.0/PyObjCTest/test_conversion.py +1015 -0
- pyobjc_core-12.0/PyObjCTest/test_copying.py +299 -0
- pyobjc_core-12.0/PyObjCTest/test_corefoundation.py +162 -0
- pyobjc_core-12.0/PyObjCTest/test_customcallers.py +41 -0
- pyobjc_core-12.0/PyObjCTest/test_date_proxy.py +345 -0
- pyobjc_core-12.0/PyObjCTest/test_default_selector.py +73 -0
- pyobjc_core-12.0/PyObjCTest/test_deprecations.py +123 -0
- pyobjc_core-12.0/PyObjCTest/test_dict_proxy.py +271 -0
- pyobjc_core-12.0/PyObjCTest/test_final.py +42 -0
- pyobjc_core-12.0/PyObjCTest/test_fsref.py +109 -0
- pyobjc_core-12.0/PyObjCTest/test_functions.py +428 -0
- pyobjc_core-12.0/PyObjCTest/test_generic_new.py +373 -0
- pyobjc_core-12.0/PyObjCTest/test_hidden_selector.py +301 -0
- pyobjc_core-12.0/PyObjCTest/test_imp.py +269 -0
- pyobjc_core-12.0/PyObjCTest/test_initpatterns.py +379 -0
- pyobjc_core-12.0/PyObjCTest/test_inspect_signatures.py +71 -0
- pyobjc_core-12.0/PyObjCTest/test_internals.py +589 -0
- pyobjc_core-12.0/PyObjCTest/test_ivar.py +551 -0
- pyobjc_core-12.0/PyObjCTest/test_keyvalue.py +1073 -0
- pyobjc_core-12.0/PyObjCTest/test_locking.py +168 -0
- pyobjc_core-12.0/PyObjCTest/test_metadata.py +2438 -0
- pyobjc_core-12.0/PyObjCTest/test_metadata_function.py +956 -0
- pyobjc_core-12.0/PyObjCTest/test_metadata_imp.py +474 -0
- pyobjc_core-12.0/PyObjCTest/test_metadata_py.py +2146 -0
- pyobjc_core-12.0/PyObjCTest/test_metadataorder.py +108 -0
- pyobjc_core-12.0/PyObjCTest/test_methodaccess.py +352 -0
- pyobjc_core-12.0/PyObjCTest/test_methods.py +1711 -0
- pyobjc_core-12.0/PyObjCTest/test_nscoder.py +1024 -0
- pyobjc_core-12.0/PyObjCTest/test_nsdata.py +1067 -0
- pyobjc_core-12.0/PyObjCTest/test_nsdecimal.py +579 -0
- pyobjc_core-12.0/PyObjCTest/test_nsinvocation.py +142 -0
- pyobjc_core-12.0/PyObjCTest/test_nsobject.py +289 -0
- pyobjc_core-12.0/PyObjCTest/test_number_proxy.py +1241 -0
- pyobjc_core-12.0/PyObjCTest/test_objc.py +160 -0
- pyobjc_core-12.0/PyObjCTest/test_objcpointer.py +71 -0
- pyobjc_core-12.0/PyObjCTest/test_object_proxy.py +788 -0
- pyobjc_core-12.0/PyObjCTest/test_options.py +645 -0
- pyobjc_core-12.0/PyObjCTest/test_pointer_compat.py +227 -0
- pyobjc_core-12.0/PyObjCTest/test_protocol.py +909 -0
- pyobjc_core-12.0/PyObjCTest/test_protocolNamed.py +45 -0
- pyobjc_core-12.0/PyObjCTest/test_regr.py +933 -0
- pyobjc_core-12.0/PyObjCTest/test_set_interface.py +510 -0
- pyobjc_core-12.0/PyObjCTest/test_set_proxy.py +496 -0
- pyobjc_core-12.0/PyObjCTest/test_sockaddr.py +217 -0
- pyobjc_core-12.0/PyObjCTest/test_splitsig.py +259 -0
- pyobjc_core-12.0/PyObjCTest/test_string_proxy.py +159 -0
- pyobjc_core-12.0/PyObjCTest/test_structs.py +1244 -0
- pyobjc_core-12.0/PyObjCTest/test_subclass.py +1543 -0
- pyobjc_core-12.0/PyObjCTest/test_testsupport.py +2862 -0
- pyobjc_core-12.0/PyObjCTest/test_transform_integration.py +271 -0
- pyobjc_core-12.0/PyObjCTest/test_typecheck.py +85 -0
- pyobjc_core-12.0/PyObjCTest/test_unicode.py +106 -0
- pyobjc_core-12.0/PyObjCTest/test_usekvo.py +125 -0
- pyobjc_core-12.0/PyObjCTest/test_varlist.py +72 -0
- pyobjc_core-12.0/PyObjCTest/test_vector_proxy.py +648 -0
- pyobjc_core-12.0/PyObjCTest/test_vectorcall.py +54688 -0
- pyobjc_core-12.0/PyObjCTest/test_weakref.py +149 -0
- pyobjc_core-12.0/Tools/comparebench.py +52 -0
- pyobjc_core-12.0/Tools/free-threading/concurrent-registration.py +22 -0
- pyobjc_core-12.0/Tools/free-threading/concurrent-value-getting.py +27 -0
- pyobjc_core-12.0/Tools/generate-category-tests.py +708 -0
- pyobjc_core-12.0/Tools/generate-helpers-vector.py +1794 -0
- pyobjc_core-12.0/Tools/pyobjc_setup.py +739 -0
- pyobjc_core-12.0/setup.cfg +55 -0
- pyobjc_core-12.0/setup.py +810 -0
- pyobjc_core-11.0/Examples/NonFunctional/RemotePyInterpreter/AsyncPythonInterpreter.py +0 -277
- pyobjc_core-11.0/Examples/NonFunctional/RemotePyInterpreter/ConsoleReactor.py +0 -133
- pyobjc_core-11.0/Examples/NonFunctional/RemotePyInterpreter/English.lproj/MainMenu.nib/classes.nib +0 -4
- pyobjc_core-11.0/Examples/NonFunctional/RemotePyInterpreter/English.lproj/MainMenu.nib/info.nib +0 -23
- pyobjc_core-11.0/Examples/NonFunctional/RemotePyInterpreter/English.lproj/MainMenu.nib/keyedobjects.nib +0 -8353
- pyobjc_core-11.0/Examples/NonFunctional/RemotePyInterpreter/English.lproj/RemotePyInterpreterDocument.nib/classes.nib +0 -25
- pyobjc_core-11.0/Examples/NonFunctional/RemotePyInterpreter/English.lproj/RemotePyInterpreterDocument.nib/info.nib +0 -18
- pyobjc_core-11.0/Examples/NonFunctional/RemotePyInterpreter/English.lproj/RemotePyInterpreterDocument.nib/keyedobjects.nib +0 -1611
- pyobjc_core-11.0/Examples/NonFunctional/RemotePyInterpreter/README.txt +0 -13
- pyobjc_core-11.0/Examples/NonFunctional/RemotePyInterpreter/RemotePyInterpreter.py +0 -518
- pyobjc_core-11.0/Examples/NonFunctional/RemotePyInterpreter/netrepr.py +0 -239
- pyobjc_core-11.0/Examples/NonFunctional/RemotePyInterpreter/remote_bootstrap.py +0 -16
- pyobjc_core-11.0/Examples/NonFunctional/RemotePyInterpreter/remote_console.py +0 -116
- pyobjc_core-11.0/Examples/NonFunctional/RemotePyInterpreter/remote_pipe.py +0 -110
- pyobjc_core-11.0/Examples/NonFunctional/RemotePyInterpreter/setup.py +0 -37
- pyobjc_core-11.0/Examples/NonFunctional/RemotePyInterpreter/tcpinterpreter.py +0 -66
- pyobjc_core-11.0/Examples/NonFunctional/RemotePyInterpreter/test_client.py +0 -128
- pyobjc_core-11.0/Examples/Scripts/HelloWorld.py +0 -82
- pyobjc_core-11.0/Examples/Scripts/autoreadme.py +0 -55
- pyobjc_core-11.0/Examples/Scripts/signal-demo.py +0 -30
- pyobjc_core-11.0/Examples/Scripts/stdinreader.py +0 -88
- pyobjc_core-11.0/Lib/PyObjCTools/TestSupport.py +0 -1470
- pyobjc_core-11.0/Lib/objc/__init__.py +0 -86
- pyobjc_core-11.0/Lib/objc/_convenience.py +0 -229
- pyobjc_core-11.0/Lib/objc/_convenience_nsarray.py +0 -434
- pyobjc_core-11.0/Lib/objc/_convenience_nsdata.py +0 -440
- pyobjc_core-11.0/Lib/objc/_lazyimport.py +0 -498
- pyobjc_core-11.0/Lib/objc/_new.py +0 -178
- pyobjc_core-11.0/Lib/objc/_transform.py +0 -753
- pyobjc_core-11.0/Lib/objc/simd.py +0 -600
- pyobjc_core-11.0/Lib/pyobjc_core.egg-info/PKG-INFO +0 -58
- pyobjc_core-11.0/Lib/pyobjc_core.egg-info/SOURCES.txt +0 -519
- pyobjc_core-11.0/Lib/pyobjc_core.egg-info/include/pyobjc-api.h +0 -214
- pyobjc_core-11.0/Lib/pyobjc_core.egg-info/include/pyobjc-compat.h +0 -320
- pyobjc_core-11.0/Lib/pyobjc_core.egg-info/pyobjc-build-info.txt +0 -3
- pyobjc_core-11.0/License.txt +0 -10
- pyobjc_core-11.0/MANIFEST.in +0 -17
- pyobjc_core-11.0/Modules/_machsignals.m +0 -189
- pyobjc_core-11.0/Modules/objc/OC_NSBundleHack.m +0 -141
- pyobjc_core-11.0/Modules/objc/OC_PythonArray.m +0 -673
- pyobjc_core-11.0/Modules/objc/OC_PythonData.m +0 -335
- pyobjc_core-11.0/Modules/objc/OC_PythonDate.m +0 -306
- pyobjc_core-11.0/Modules/objc/OC_PythonDictionary.h +0 -43
- pyobjc_core-11.0/Modules/objc/OC_PythonDictionary.m +0 -606
- pyobjc_core-11.0/Modules/objc/OC_PythonEnumerator.h +0 -18
- pyobjc_core-11.0/Modules/objc/OC_PythonEnumerator.m +0 -99
- pyobjc_core-11.0/Modules/objc/OC_PythonNumber.m +0 -535
- pyobjc_core-11.0/Modules/objc/OC_PythonObject.m +0 -1091
- pyobjc_core-11.0/Modules/objc/OC_PythonSet.m +0 -553
- pyobjc_core-11.0/Modules/objc/OC_PythonURL.h +0 -14
- pyobjc_core-11.0/Modules/objc/OC_PythonURL.m +0 -110
- pyobjc_core-11.0/Modules/objc/OC_PythonUnicode.m +0 -402
- pyobjc_core-11.0/Modules/objc/ObjCPointer.m +0 -168
- pyobjc_core-11.0/Modules/objc/block_support.h +0 -18
- pyobjc_core-11.0/Modules/objc/block_support.m +0 -606
- pyobjc_core-11.0/Modules/objc/bundle-variables.m +0 -510
- pyobjc_core-11.0/Modules/objc/class-builder.m +0 -1177
- pyobjc_core-11.0/Modules/objc/class-list.m +0 -527
- pyobjc_core-11.0/Modules/objc/closure_pool.h +0 -39
- pyobjc_core-11.0/Modules/objc/closure_pool.m +0 -143
- pyobjc_core-11.0/Modules/objc/corefoundation.m +0 -412
- pyobjc_core-11.0/Modules/objc/ctests.m +0 -1247
- pyobjc_core-11.0/Modules/objc/file_wrapper.m +0 -419
- pyobjc_core-11.0/Modules/objc/formal-protocol.h +0 -17
- pyobjc_core-11.0/Modules/objc/formal-protocol.m +0 -523
- pyobjc_core-11.0/Modules/objc/fsref.m +0 -214
- pyobjc_core-11.0/Modules/objc/function.m +0 -564
- pyobjc_core-11.0/Modules/objc/helpers-authorization.m +0 -213
- pyobjc_core-11.0/Modules/objc/helpers-foundation-nscoder.m +0 -1462
- pyobjc_core-11.0/Modules/objc/helpers-foundation-nsdata.m +0 -232
- pyobjc_core-11.0/Modules/objc/helpers-foundation-nsdecimal.m +0 -1126
- pyobjc_core-11.0/Modules/objc/helpers-foundation-nsinvocation.m +0 -386
- pyobjc_core-11.0/Modules/objc/helpers-foundation-nsobject.m +0 -435
- pyobjc_core-11.0/Modules/objc/helpers-vector.m +0 -17085
- pyobjc_core-11.0/Modules/objc/instance-var.m +0 -605
- pyobjc_core-11.0/Modules/objc/ivar-accessor.m +0 -308
- pyobjc_core-11.0/Modules/objc/libffi_extra.m +0 -100
- pyobjc_core-11.0/Modules/objc/libffi_support.h +0 -99
- pyobjc_core-11.0/Modules/objc/libffi_support.m +0 -5536
- pyobjc_core-11.0/Modules/objc/meth-func.m +0 -268
- pyobjc_core-11.0/Modules/objc/method-accessor.m +0 -635
- pyobjc_core-11.0/Modules/objc/method-imp.m +0 -658
- pyobjc_core-11.0/Modules/objc/method-signature.h +0 -106
- pyobjc_core-11.0/Modules/objc/method-signature.m +0 -2140
- pyobjc_core-11.0/Modules/objc/module.m +0 -2375
- pyobjc_core-11.0/Modules/objc/objc-class.h +0 -163
- pyobjc_core-11.0/Modules/objc/objc-class.m +0 -3809
- pyobjc_core-11.0/Modules/objc/objc-object.h +0 -57
- pyobjc_core-11.0/Modules/objc/objc-object.m +0 -1512
- pyobjc_core-11.0/Modules/objc/objc-runtime-compat.m +0 -65
- pyobjc_core-11.0/Modules/objc/objc_super.m +0 -227
- pyobjc_core-11.0/Modules/objc/objc_support.h +0 -90
- pyobjc_core-11.0/Modules/objc/objc_support.m +0 -3552
- pyobjc_core-11.0/Modules/objc/objc_util.h +0 -192
- pyobjc_core-11.0/Modules/objc/objc_util.m +0 -1837
- pyobjc_core-11.0/Modules/objc/opaque-pointer.m +0 -442
- pyobjc_core-11.0/Modules/objc/options.h +0 -47
- pyobjc_core-11.0/Modules/objc/options.m +0 -1268
- pyobjc_core-11.0/Modules/objc/pointer-support.m +0 -453
- pyobjc_core-11.0/Modules/objc/proxy-registry.h +0 -88
- pyobjc_core-11.0/Modules/objc/proxy-registry.m +0 -269
- pyobjc_core-11.0/Modules/objc/pyobjc-api.h +0 -214
- pyobjc_core-11.0/Modules/objc/pyobjc-api.m +0 -69
- pyobjc_core-11.0/Modules/objc/pyobjc-assert.h +0 -66
- pyobjc_core-11.0/Modules/objc/pyobjc-compat.h +0 -320
- pyobjc_core-11.0/Modules/objc/pyobjc-compat.m +0 -159
- pyobjc_core-11.0/Modules/objc/pyobjc-unittest.h +0 -126
- pyobjc_core-11.0/Modules/objc/pyobjc.h +0 -183
- pyobjc_core-11.0/Modules/objc/pyobjc_unicode.m +0 -525
- pyobjc_core-11.0/Modules/objc/python-api-used.h +0 -414
- pyobjc_core-11.0/Modules/objc/registry.m +0 -296
- pyobjc_core-11.0/Modules/objc/selector.h +0 -97
- pyobjc_core-11.0/Modules/objc/selector.m +0 -2169
- pyobjc_core-11.0/Modules/objc/struct-sockaddr.h +0 -15
- pyobjc_core-11.0/Modules/objc/struct-sockaddr.m +0 -301
- pyobjc_core-11.0/Modules/objc/struct-wrapper.h +0 -139
- pyobjc_core-11.0/Modules/objc/struct-wrapper.m +0 -1951
- pyobjc_core-11.0/Modules/objc/super-call.m +0 -607
- pyobjc_core-11.0/Modules/objc/test/NULL.m +0 -149
- pyobjc_core-11.0/Modules/objc/test/arrayint.m +0 -216
- pyobjc_core-11.0/Modules/objc/test/arrays.m +0 -260
- pyobjc_core-11.0/Modules/objc/test/block.m +0 -426
- pyobjc_core-11.0/Modules/objc/test/bufsizeinarg.m +0 -301
- pyobjc_core-11.0/Modules/objc/test/categories_base.m +0 -6308
- pyobjc_core-11.0/Modules/objc/test/category_c42.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_c43.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_c44.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_c45.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_c46.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_c47.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_c48.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_c49.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_c50.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_c51.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_c52.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_c53.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_c54.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_c55.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_c56.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_c57.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_c58.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_c59.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_gp10.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_gp11.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_gp12.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_gp13.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_gp14.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_gp15.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_gp16.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_gp17.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_gp18.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_gp19.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_gp20.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_gp21.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_gp22.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_gp23.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_gp24.m +0 -68
- pyobjc_core-11.0/Modules/objc/test/category_gp27.m +0 -68
- pyobjc_core-11.0/Modules/objc/test/category_gp3.m +0 -68
- pyobjc_core-11.0/Modules/objc/test/category_gp30.m +0 -68
- pyobjc_core-11.0/Modules/objc/test/category_gp33.m +0 -68
- pyobjc_core-11.0/Modules/objc/test/category_gp36.m +0 -68
- pyobjc_core-11.0/Modules/objc/test/category_gp39.m +0 -68
- pyobjc_core-11.0/Modules/objc/test/category_gp42.m +0 -68
- pyobjc_core-11.0/Modules/objc/test/category_gp45.m +0 -68
- pyobjc_core-11.0/Modules/objc/test/category_gp48.m +0 -68
- pyobjc_core-11.0/Modules/objc/test/category_gp51.m +0 -68
- pyobjc_core-11.0/Modules/objc/test/category_gp54.m +0 -68
- pyobjc_core-11.0/Modules/objc/test/category_gp57.m +0 -68
- pyobjc_core-11.0/Modules/objc/test/category_gp6.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_gp7.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_gp8.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_gp9.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_p24.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_p25.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_p26.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_p27.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_p28.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_p29.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_p30.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_p31.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_p32.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_p33.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_p34.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_p35.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_p36.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_p37.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_p38.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_p39.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_p40.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/category_p41.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/cfsocket.m +0 -83
- pyobjc_core-11.0/Modules/objc/test/classes.m +0 -79
- pyobjc_core-11.0/Modules/objc/test/clinmeth.m +0 -138
- pyobjc_core-11.0/Modules/objc/test/coding.m +0 -162
- pyobjc_core-11.0/Modules/objc/test/copying.m +0 -147
- pyobjc_core-11.0/Modules/objc/test/corefoundation.m +0 -195
- pyobjc_core-11.0/Modules/objc/test/dataint.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/dateint.m +0 -151
- pyobjc_core-11.0/Modules/objc/test/decimal.m +0 -97
- pyobjc_core-11.0/Modules/objc/test/deprecations.m +0 -183
- pyobjc_core-11.0/Modules/objc/test/dictint.m +0 -125
- pyobjc_core-11.0/Modules/objc/test/enumeration.m +0 -90
- pyobjc_core-11.0/Modules/objc/test/exceptions.m +0 -137
- pyobjc_core-11.0/Modules/objc/test/filepointer.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/fsref.m +0 -131
- pyobjc_core-11.0/Modules/objc/test/gcov.m +0 -75
- pyobjc_core-11.0/Modules/objc/test/genericnew.m +0 -168
- pyobjc_core-11.0/Modules/objc/test/helpernsdata.m +0 -144
- pyobjc_core-11.0/Modules/objc/test/helpernsobject.m +0 -143
- pyobjc_core-11.0/Modules/objc/test/identity.m +0 -195
- pyobjc_core-11.0/Modules/objc/test/initialize.m +0 -155
- pyobjc_core-11.0/Modules/objc/test/instanceVariables.m +0 -116
- pyobjc_core-11.0/Modules/objc/test/locking.m +0 -104
- pyobjc_core-11.0/Modules/objc/test/metadata.m +0 -1503
- pyobjc_core-11.0/Modules/objc/test/metadatafunction.m +0 -645
- pyobjc_core-11.0/Modules/objc/test/methodaccess.m +0 -83
- pyobjc_core-11.0/Modules/objc/test/methodlookup.m +0 -231
- pyobjc_core-11.0/Modules/objc/test/methres1.m +0 -78
- pyobjc_core-11.0/Modules/objc/test/methres2.m +0 -78
- pyobjc_core-11.0/Modules/objc/test/misc.m +0 -80
- pyobjc_core-11.0/Modules/objc/test/missing1.m +0 -60
- pyobjc_core-11.0/Modules/objc/test/missing2.m +0 -63
- pyobjc_core-11.0/Modules/objc/test/missing3.m +0 -63
- pyobjc_core-11.0/Modules/objc/test/nsobjectcategory.m +0 -71
- pyobjc_core-11.0/Modules/objc/test/nulldelimitedresult.m +0 -157
- pyobjc_core-11.0/Modules/objc/test/objectint.m +0 -773
- pyobjc_core-11.0/Modules/objc/test/opaque.m +0 -223
- pyobjc_core-11.0/Modules/objc/test/pointersupport.m +0 -141
- pyobjc_core-11.0/Modules/objc/test/properties.m +0 -141
- pyobjc_core-11.0/Modules/objc/test/protected.m +0 -84
- pyobjc_core-11.0/Modules/objc/test/protocol.m +0 -120
- pyobjc_core-11.0/Modules/objc/test/pythonnumber.m +0 -268
- pyobjc_core-11.0/Modules/objc/test/pythonset.m +0 -260
- pyobjc_core-11.0/Modules/objc/test/sequence.m +0 -148
- pyobjc_core-11.0/Modules/objc/test/sockaddr.m +0 -197
- pyobjc_core-11.0/Modules/objc/test/specialtypecodes.m +0 -419
- pyobjc_core-11.0/Modules/objc/test/stringint.m +0 -131
- pyobjc_core-11.0/Modules/objc/test/structargs.m +0 -139
- pyobjc_core-11.0/Modules/objc/test/structpointer1.m +0 -101
- pyobjc_core-11.0/Modules/objc/test/structpointer2.m +0 -69
- pyobjc_core-11.0/Modules/objc/test/structs.m +0 -115
- pyobjc_core-11.0/Modules/objc/test/testbndl.m +0 -2234
- pyobjc_core-11.0/Modules/objc/test/testbndl2.m +0 -23311
- pyobjc_core-11.0/Modules/objc/test/testclassandinst.m +0 -112
- pyobjc_core-11.0/Modules/objc/test/testoutputinitializer.m +0 -99
- pyobjc_core-11.0/Modules/objc/test/unavailable.m +0 -116
- pyobjc_core-11.0/Modules/objc/test/vector.m +0 -245
- pyobjc_core-11.0/Modules/objc/test/vectorcall.m +0 -9864
- pyobjc_core-11.0/Modules/objc/test/voidpointer.m +0 -96
- pyobjc_core-11.0/Modules/objc/varlist.m +0 -506
- pyobjc_core-11.0/Modules/objc/weakref.m +0 -187
- pyobjc_core-11.0/PKG-INFO +0 -55
- pyobjc_core-11.0/PyObjCTest/.test_metadata.py.swp +0 -0
- pyobjc_core-11.0/PyObjCTest/dump-nsarchive-securecoding.m +0 -79
- pyobjc_core-11.0/PyObjCTest/test_archive_python.py +0 -1929
- pyobjc_core-11.0/PyObjCTest/test_array_interface.py +0 -447
- pyobjc_core-11.0/PyObjCTest/test_blocks.py +0 -1192
- pyobjc_core-11.0/PyObjCTest/test_bundleFunctions.py +0 -189
- pyobjc_core-11.0/PyObjCTest/test_bundleVariables.py +0 -174
- pyobjc_core-11.0/PyObjCTest/test_callbacks.py +0 -269
- pyobjc_core-11.0/PyObjCTest/test_conversion.py +0 -840
- pyobjc_core-11.0/PyObjCTest/test_copying.py +0 -266
- pyobjc_core-11.0/PyObjCTest/test_corefoundation.py +0 -142
- pyobjc_core-11.0/PyObjCTest/test_date_proxy.py +0 -272
- pyobjc_core-11.0/PyObjCTest/test_default_selector.py +0 -41
- pyobjc_core-11.0/PyObjCTest/test_deprecations.py +0 -118
- pyobjc_core-11.0/PyObjCTest/test_dict_proxy.py +0 -187
- pyobjc_core-11.0/PyObjCTest/test_final.py +0 -29
- pyobjc_core-11.0/PyObjCTest/test_fsref.py +0 -103
- pyobjc_core-11.0/PyObjCTest/test_functions.py +0 -350
- pyobjc_core-11.0/PyObjCTest/test_generic_new.py +0 -332
- pyobjc_core-11.0/PyObjCTest/test_hidden_selector.py +0 -268
- pyobjc_core-11.0/PyObjCTest/test_imp.py +0 -232
- pyobjc_core-11.0/PyObjCTest/test_initialized.py +0 -86
- pyobjc_core-11.0/PyObjCTest/test_inspect_signatures.py +0 -70
- pyobjc_core-11.0/PyObjCTest/test_internals.py +0 -419
- pyobjc_core-11.0/PyObjCTest/test_ivar.py +0 -545
- pyobjc_core-11.0/PyObjCTest/test_keyvalue.py +0 -1006
- pyobjc_core-11.0/PyObjCTest/test_locking.py +0 -156
- pyobjc_core-11.0/PyObjCTest/test_metadata.py +0 -2238
- pyobjc_core-11.0/PyObjCTest/test_metadata_function.py +0 -916
- pyobjc_core-11.0/PyObjCTest/test_metadata_imp.py +0 -471
- pyobjc_core-11.0/PyObjCTest/test_metadata_py.py +0 -2134
- pyobjc_core-11.0/PyObjCTest/test_methodaccess.py +0 -303
- pyobjc_core-11.0/PyObjCTest/test_methods.py +0 -1687
- pyobjc_core-11.0/PyObjCTest/test_nscoder.py +0 -164
- pyobjc_core-11.0/PyObjCTest/test_nsdata.py +0 -988
- pyobjc_core-11.0/PyObjCTest/test_nsdecimal.py +0 -465
- pyobjc_core-11.0/PyObjCTest/test_nsinvocation.py +0 -107
- pyobjc_core-11.0/PyObjCTest/test_nsobject.py +0 -234
- pyobjc_core-11.0/PyObjCTest/test_number_proxy.py +0 -1126
- pyobjc_core-11.0/PyObjCTest/test_objc.py +0 -148
- pyobjc_core-11.0/PyObjCTest/test_objcpointer.py +0 -55
- pyobjc_core-11.0/PyObjCTest/test_object_proxy.py +0 -686
- pyobjc_core-11.0/PyObjCTest/test_options.py +0 -615
- pyobjc_core-11.0/PyObjCTest/test_pointer_compat.py +0 -225
- pyobjc_core-11.0/PyObjCTest/test_protocol.py +0 -921
- pyobjc_core-11.0/PyObjCTest/test_protocolNamed.py +0 -42
- pyobjc_core-11.0/PyObjCTest/test_regr.py +0 -770
- pyobjc_core-11.0/PyObjCTest/test_set_interface.py +0 -509
- pyobjc_core-11.0/PyObjCTest/test_set_proxy.py +0 -428
- pyobjc_core-11.0/PyObjCTest/test_sockaddr.py +0 -195
- pyobjc_core-11.0/PyObjCTest/test_splitsig.py +0 -249
- pyobjc_core-11.0/PyObjCTest/test_string_proxy.py +0 -150
- pyobjc_core-11.0/PyObjCTest/test_structs.py +0 -1159
- pyobjc_core-11.0/PyObjCTest/test_subclass.py +0 -1328
- pyobjc_core-11.0/PyObjCTest/test_testsupport.py +0 -2664
- pyobjc_core-11.0/PyObjCTest/test_transform_integration.py +0 -249
- pyobjc_core-11.0/PyObjCTest/test_typecheck.py +0 -74
- pyobjc_core-11.0/PyObjCTest/test_unicode.py +0 -106
- pyobjc_core-11.0/PyObjCTest/test_usekvo.py +0 -90
- pyobjc_core-11.0/PyObjCTest/test_varlist.py +0 -68
- pyobjc_core-11.0/PyObjCTest/test_vector_proxy.py +0 -610
- pyobjc_core-11.0/PyObjCTest/test_vectorcall.py +0 -48620
- pyobjc_core-11.0/PyObjCTest/test_weakref.py +0 -145
- pyobjc_core-11.0/Tools/comparebench.py +0 -52
- pyobjc_core-11.0/Tools/free-threading/concurrent-proxies.py +0 -25
- pyobjc_core-11.0/Tools/generate-category-tests.py +0 -702
- pyobjc_core-11.0/Tools/generate-helpers-vector.py +0 -1581
- pyobjc_core-11.0/Tools/pyobjc_setup.py +0 -771
- pyobjc_core-11.0/setup.cfg +0 -54
- pyobjc_core-11.0/setup.py +0 -798
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Examples/00ReadMe.txt +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Examples/GUITests/00ReadMe.txt +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Examples/GUITests/test_modalsession.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Examples/Scripts/instrumentSends.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Examples/Scripts/kvo-debugging.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Examples/Scripts/subclassing-objective-c.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Examples/Scripts/wmEnable.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/HISTORIC.txt +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Install.txt +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/PyObjCTools/KeyValueCoding.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/PyObjCTools/MachSignals.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/PyObjCTools/Signals.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/objc/_bridges.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/objc/_bridgesupport.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/objc/_callable_docstr.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/objc/_category.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/objc/_compat.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/objc/_context.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/objc/_convenience_mapping.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/objc/_convenience_nsdecimal.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/objc/_convenience_nsdictionary.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/objc/_convenience_nsobject.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/objc/_convenience_nsset.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/objc/_convenience_nsstring.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/objc/_convenience_sequence.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/objc/_descriptors.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/objc/_dyld.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/objc/_framework.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/objc/_informal_protocol.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/objc/_locking.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/objc/_properties.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/objc/_protocols.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/objc/_pycoder.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/objc/_pythonify.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/objc/_structtype.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/pyobjc_core.egg-info/dependency_links.txt +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/pyobjc_core.egg-info/not-zip-safe +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Lib/pyobjc_core.egg-info/top_level.txt +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/MANIFEST +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Misc/announcement.txt +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/OC_BuiltinPythonArray.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/OC_BuiltinPythonArray.m +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/OC_BuiltinPythonData.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/OC_BuiltinPythonData.m +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/OC_BuiltinPythonDate.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/OC_BuiltinPythonDate.m +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/OC_BuiltinPythonDictionary.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/OC_BuiltinPythonDictionary.m +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/OC_BuiltinPythonNumber.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/OC_BuiltinPythonNumber.m +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/OC_BuiltinPythonSet.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/OC_BuiltinPythonSet.m +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/OC_BuiltinPythonUnicode.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/OC_BuiltinPythonUnicode.m +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/OC_NSBundleHack.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/OC_PythonArray.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/OC_PythonData.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/OC_PythonDate.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/OC_PythonNumber.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/OC_PythonObject.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/OC_PythonSet.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/OC_PythonUnicode.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/ObjCPointer.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/bundle-variables.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/class-builder.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/class-list.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/corefoundation.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/ctests.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/file_wrapper.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/fsref.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/function.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/helpers.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/instance-var.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/ivar-accessor.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/libffi_extra.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/memview.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/memview.m +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/meth-func.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/method-accessor.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/method-imp.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/objc-NULL.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/objc-NULL.m +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/objc-runtime-compat.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/objc_super.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/opaque-pointer.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/pointer-support.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/pyobjc_unicode.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/registry.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/released-buffer.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/released-buffer.m +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/super-call.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/varlist.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Modules/objc/weakref.h +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/__init__.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/archives/py2-oc2.3.keyed +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/archives/py2-oc2.3.plain +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/archives/py3-oc3.0.keyed +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/archives/py3-oc3.0.plain +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/data_bridgesupport/bundle_data/Test.bridgesupport +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/data_bridgesupport/with_data/Test.bridgesupport +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/data_bridgesupport/with_data_dylib/Test.bridgesupport +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/data_bridgesupport/with_data_dylib/Test.dylib +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/dump-nsarchive.m +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/fnd.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/helper_bridgesupport.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/keyvaluehelper.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/loader.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_NULL.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_allocatebuffer.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_api_import.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_archiving_interop.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_archiving_secure_interop.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_array_property.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_arrays.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_assocations.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_bridged_classes.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_bridges.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_bridgesupport.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_bufsizeinarg.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_callable_docstr.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_categories.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_classandinst.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_classhooks.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_clinmeth.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_compat.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_context.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_convenience.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_ctests.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_data_proxy.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_descriptors.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_dict_interface.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_dict_property.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_dyld.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_enumerator.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_exceptions.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_filepointer.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_framework.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_free_threading.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_generic_class.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_identity.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_keyvalue_prop.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_keyvaluecoding.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_lazy_import.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_leaks.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_list_proxy.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_machsignals.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_metadata_inheritance.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_metadata_py2py.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_method_prototypes.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_methodedits.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_methodlookup.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_methods2.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_methres.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_nsdate_proxy.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_nsunavailable.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_nulldelimited.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_object_property.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_opaque.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_outputinitializer.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_pickle.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_pickling_objc.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_propertiesforclass.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_protected.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_python_method.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_set_property.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_signals.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_signatures.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_simd.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_specialtypecodes_charbyte.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_specialtypecodes_charint.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_specialtypecodes_methdef.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_specialtypecodes_nsbool.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_specialtypecodes_struct.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_specialtypecodes_unichar.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_structpointer.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_super_on_regular_classes.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_synthesize.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_transform.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_urlproxy.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_varargs.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_version_support.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/PyObjCTest/test_voidpointer.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/README.txt +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Tools/MANIFEST.in +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Tools/free-threading/_tools.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Tools/free-threading/concurrent-class-list.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Tools/free-threading/concurrent-dict-getting.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Tools/free-threading/concurrent-iteration.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Tools/gen_archive.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Tools/pyobjcbench.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Tools/results/pyobjcbench-7.3.txt +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Tools/results/pyobjcbench-8.0b1.txt +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Tools/results/pyobjcbench-8.0b2.txt +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Tools/run-free-threading-tests.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Tools/runtests-with-nuitka.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/Tools/runtests.py +0 -0
- {pyobjc_core-11.0 → pyobjc_core-12.0}/pyproject.toml +0 -0
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
#!/usr/bin/env pythonw
|
|
2
|
+
"""
|
|
3
|
+
The original PyObjC interface example by Steve Majewski.
|
|
4
|
+
|
|
5
|
+
A quick guide to runtime name mangling:
|
|
6
|
+
|
|
7
|
+
ObjC becomes Python
|
|
8
|
+
[obj method ] obj.method()
|
|
9
|
+
[obj method:arg ] obj.method_(arg)
|
|
10
|
+
[obj method:arg1 withOtherArgs:arg2] obj.method_withOtherArgs_( arg1, arg2 )
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
NOTE: This is no longer the recommended way to build applications
|
|
14
|
+
using the pyobjc bridge under with OS X. In particular, applications
|
|
15
|
+
work much better if they are constructed in a proper app wrapper.
|
|
16
|
+
|
|
17
|
+
This app does demonstrate that it is possible to build full
|
|
18
|
+
featured Cocoa apps without InterfaceBuilder.
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
from Cocoa import NSObject, NSApplication, NSApp, NSWindow, NSButton, NSSound
|
|
22
|
+
from PyObjCTools import AppHelper
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class AppDelegate(NSObject):
|
|
26
|
+
def applicationDidFinishLaunching_(self, aNotification):
|
|
27
|
+
print("Hello, World!")
|
|
28
|
+
|
|
29
|
+
def sayHello_(self, sender):
|
|
30
|
+
print("Hello again, World!")
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
def main():
|
|
34
|
+
app = NSApplication.sharedApplication()
|
|
35
|
+
|
|
36
|
+
# we must keep a reference to the delegate object ourselves,
|
|
37
|
+
# NSApp.setDelegate_() doesn't retain it. A local variable is
|
|
38
|
+
# enough here.
|
|
39
|
+
delegate = AppDelegate.alloc().init()
|
|
40
|
+
NSApp().setDelegate_(delegate)
|
|
41
|
+
|
|
42
|
+
win = NSWindow.alloc()
|
|
43
|
+
frame = ((200.0, 300.0), (250.0, 100.0))
|
|
44
|
+
win.initWithContentRect_styleMask_backing_defer_(frame, 15, 2, 0)
|
|
45
|
+
win.setTitle_("HelloWorld")
|
|
46
|
+
win.setLevel_(3) # floating window
|
|
47
|
+
|
|
48
|
+
hello = NSButton.alloc().initWithFrame_(((10.0, 10.0), (80.0, 80.0)))
|
|
49
|
+
win.contentView().addSubview_(hello)
|
|
50
|
+
hello.setBezelStyle_(4)
|
|
51
|
+
hello.setTitle_("Hello!")
|
|
52
|
+
hello.setTarget_(app.delegate())
|
|
53
|
+
hello.setAction_("sayHello:")
|
|
54
|
+
|
|
55
|
+
beep = NSSound.alloc()
|
|
56
|
+
beep.initWithContentsOfFile_byReference_("/System/Library/Sounds/Tink.Aiff", 1)
|
|
57
|
+
hello.setSound_(beep)
|
|
58
|
+
|
|
59
|
+
bye = NSButton.alloc().initWithFrame_(((100.0, 10.0), (80.0, 80.0)))
|
|
60
|
+
win.contentView().addSubview_(bye)
|
|
61
|
+
bye.setBezelStyle_(4)
|
|
62
|
+
bye.setTarget_(app)
|
|
63
|
+
bye.setAction_("stop:")
|
|
64
|
+
bye.setEnabled_(1)
|
|
65
|
+
bye.setTitle_("Goodbye!")
|
|
66
|
+
|
|
67
|
+
adios = NSSound.alloc()
|
|
68
|
+
adios.initWithContentsOfFile_byReference_("/System/Library/Sounds/Basso.aiff", 1)
|
|
69
|
+
bye.setSound_(adios)
|
|
70
|
+
|
|
71
|
+
win.display()
|
|
72
|
+
win.orderFrontRegardless() # but this one does
|
|
73
|
+
|
|
74
|
+
AppHelper.runEventLoop()
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
if __name__ == "__main__":
|
|
78
|
+
main()
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
#!/usr/bin/python
|
|
2
|
+
"""
|
|
3
|
+
This script is a daemon that will open the ReadMe file in the root of any
|
|
4
|
+
(removable) volume that is inserted while this script is running.
|
|
5
|
+
|
|
6
|
+
The script is part of an article at MacDevCenter:
|
|
7
|
+
http://www.macdevcenter.com/pub/a/mac/2003/01/31/pyobjc_one.html
|
|
8
|
+
|
|
9
|
+
Usage:
|
|
10
|
+
python autoreadme.py
|
|
11
|
+
"""
|
|
12
|
+
import os
|
|
13
|
+
import re
|
|
14
|
+
|
|
15
|
+
from Cocoa import NSObject, NSLog, NSWorkspace, NSWorkspaceDidMountNotification
|
|
16
|
+
from PyObjCTools import AppHelper
|
|
17
|
+
|
|
18
|
+
readTheseFiles = re.compile(r"(.*read\s*me.*|.*release.*note.*|^about.*)", re.I)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class NotificationHandler(NSObject):
|
|
22
|
+
"""
|
|
23
|
+
Class that handles the mount notifications
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
def handleMountNotification_(self, aNotification):
|
|
27
|
+
# Find the path to the just inserted volume
|
|
28
|
+
path = aNotification.userInfo()["NSDevicePath"]
|
|
29
|
+
|
|
30
|
+
for fname in os.listdir(path):
|
|
31
|
+
if readTheseFiles.match(fname):
|
|
32
|
+
# Found a readme file, try to open it using the Workspace API
|
|
33
|
+
|
|
34
|
+
fullPath = os.path.join(path, fname)
|
|
35
|
+
success, app, _ = workspace.getInfoForFile_application_type_(fullPath)
|
|
36
|
+
if not success:
|
|
37
|
+
NSLog("Failed to find application to open file %s", fullPath)
|
|
38
|
+
return
|
|
39
|
+
workspace.openFile_withApplication_(fullPath, app)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
# Create an instance of our notification handler, and ask the workspace
|
|
43
|
+
# notification center to tell us when a new volume is mounted.
|
|
44
|
+
workspace = NSWorkspace.sharedWorkspace()
|
|
45
|
+
notificationCenter = workspace.notificationCenter()
|
|
46
|
+
notificationHandler = NotificationHandler.new()
|
|
47
|
+
notificationCenter.addObserver_selector_name_object_(
|
|
48
|
+
notificationHandler,
|
|
49
|
+
"handleMountNotification:",
|
|
50
|
+
NSWorkspaceDidMountNotification,
|
|
51
|
+
None,
|
|
52
|
+
)
|
|
53
|
+
|
|
54
|
+
NSLog("Listening for mount notifications....")
|
|
55
|
+
AppHelper.runConsoleEventLoop()
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
#!/usr/bin/python
|
|
2
|
+
"""
|
|
3
|
+
This script demonstrates using the PyObjCTools.Signals
|
|
4
|
+
module to show a stacktrace when there's a fatal signal
|
|
5
|
+
when running a script.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
import os
|
|
9
|
+
import signal
|
|
10
|
+
|
|
11
|
+
from PyObjCTools import Signals
|
|
12
|
+
|
|
13
|
+
Signals.dumpStackOnFatalSignal()
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
# all this does is set up an interesting stack to
|
|
17
|
+
# to show that a backtrace really is being
|
|
18
|
+
# generated. Try commenting out the
|
|
19
|
+
# Signals.dumpStackOnFatalSignal() line above and run
|
|
20
|
+
# the script again.
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
def badness():
|
|
24
|
+
os.kill(os.getpid(), signal.SIGQUIT)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
class Foo:
|
|
28
|
+
def baz(self):
|
|
29
|
+
badness()
|
|
30
|
+
|
|
31
|
+
def bar(self):
|
|
32
|
+
self.baz()
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
Foo().bar()
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
This script demonstrates how to use a Cocoa
|
|
4
|
+
event loop to asynchronously read from an
|
|
5
|
+
existing file descriptor.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
from Foundation import (
|
|
9
|
+
NSObject,
|
|
10
|
+
NSFileHandle,
|
|
11
|
+
NSNotificationCenter,
|
|
12
|
+
NSFileHandleReadCompletionNotification,
|
|
13
|
+
NSFileHandleNotificationDataItem,
|
|
14
|
+
NSFileHandleError,
|
|
15
|
+
)
|
|
16
|
+
from PyObjCTools import AppHelper
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
class FileObserver(NSObject):
|
|
20
|
+
def initWithFileDescriptor_readCallback_errorCallback_(
|
|
21
|
+
self, fileDescriptor, readCallback, errorCallback
|
|
22
|
+
):
|
|
23
|
+
self = self.init()
|
|
24
|
+
self.readCallback = readCallback
|
|
25
|
+
self.errorCallback = errorCallback
|
|
26
|
+
self.fileHandle = NSFileHandle.alloc().initWithFileDescriptor_(fileDescriptor)
|
|
27
|
+
self.nc = NSNotificationCenter.defaultCenter()
|
|
28
|
+
self.nc.addObserver_selector_name_object_(
|
|
29
|
+
self,
|
|
30
|
+
"fileHandleReadCompleted:",
|
|
31
|
+
NSFileHandleReadCompletionNotification,
|
|
32
|
+
self.fileHandle,
|
|
33
|
+
)
|
|
34
|
+
self.fileHandle.readInBackgroundAndNotify()
|
|
35
|
+
return self
|
|
36
|
+
|
|
37
|
+
def fileHandleReadCompleted_(self, aNotification):
|
|
38
|
+
ui = aNotification.userInfo()
|
|
39
|
+
newData = ui.objectForKey_(NSFileHandleNotificationDataItem)
|
|
40
|
+
if newData is None:
|
|
41
|
+
if self.errorCallback is not None:
|
|
42
|
+
self.errorCallback(self, ui.objectForKey_(NSFileHandleError))
|
|
43
|
+
self.close()
|
|
44
|
+
else:
|
|
45
|
+
self.fileHandle.readInBackgroundAndNotify()
|
|
46
|
+
if self.readCallback is not None:
|
|
47
|
+
self.readCallback(self, str(newData))
|
|
48
|
+
|
|
49
|
+
def close(self):
|
|
50
|
+
self.nc.removeObserver_(self)
|
|
51
|
+
if self.fileHandle is not None:
|
|
52
|
+
self.fileHandle.closeFile()
|
|
53
|
+
self.fileHandle = None
|
|
54
|
+
# break cycles in case these functions are closed over
|
|
55
|
+
# an instance of us
|
|
56
|
+
self.readCallback = None
|
|
57
|
+
self.errorCallback = None
|
|
58
|
+
|
|
59
|
+
def __del__(self):
|
|
60
|
+
# Without this, if a notification fires after we are GC'ed
|
|
61
|
+
# then the app will crash because NSNotificationCenter
|
|
62
|
+
# doesn't retain observers. In this example, it doesn't
|
|
63
|
+
# matter, but it's worth pointing out.
|
|
64
|
+
self.close()
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
def prompt():
|
|
68
|
+
sys.stdout.write("write something: ")
|
|
69
|
+
sys.stdout.flush()
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
def gotLine(observer, line):
|
|
73
|
+
if line:
|
|
74
|
+
print("you wrote:", line.rstrip())
|
|
75
|
+
prompt()
|
|
76
|
+
else:
|
|
77
|
+
print("")
|
|
78
|
+
AppHelper.stopEventLoop()
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
def gotError(observer, err):
|
|
82
|
+
print("error:", err)
|
|
83
|
+
AppHelper.stopEventLoop()
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
if __name__ == "__main__":
|
|
87
|
+
import sys
|
|
88
|
+
|
|
89
|
+
observer = FileObserver.alloc().initWithFileDescriptor_readCallback_errorCallback_(
|
|
90
|
+
sys.stdin.fileno(), gotLine, gotError
|
|
91
|
+
)
|
|
92
|
+
prompt()
|
|
93
|
+
AppHelper.runConsoleEventLoop(installInterrupt=True)
|