pyobjc-core 10.3.2__tar.gz → 11.1__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-11.1/Examples/Scripts/HelloWorld.py +78 -0
- pyobjc_core-11.1/Examples/Scripts/autoreadme.py +55 -0
- pyobjc_core-11.1/Examples/Scripts/signal-demo.py +35 -0
- pyobjc_core-11.1/Examples/Scripts/stdinreader.py +93 -0
- pyobjc_core-11.1/Lib/PyObjCTools/TestSupport.py +1508 -0
- pyobjc_core-11.1/Lib/objc/__init__.py +91 -0
- pyobjc_core-11.1/Lib/objc/_bridges.py +68 -0
- pyobjc_core-11.1/Lib/objc/_bridgesupport.py +823 -0
- pyobjc_core-11.1/Lib/objc/_convenience.py +237 -0
- pyobjc_core-11.1/Lib/objc/_convenience_mapping.py +132 -0
- pyobjc_core-11.1/Lib/objc/_convenience_nsdata.py +449 -0
- pyobjc_core-11.1/Lib/objc/_convenience_nsobject.py +123 -0
- pyobjc_core-11.1/Lib/objc/_lazyimport.py +498 -0
- pyobjc_core-11.1/Lib/objc/_new.py +178 -0
- pyobjc_core-11.1/Lib/objc/_pycoder.py +583 -0
- pyobjc_core-11.1/Lib/objc/_transform.py +755 -0
- pyobjc_core-11.1/Lib/objc/simd.py +601 -0
- pyobjc_core-11.1/Lib/pyobjc_core.egg-info/PKG-INFO +70 -0
- pyobjc_core-11.1/Lib/pyobjc_core.egg-info/SOURCES.txt +504 -0
- pyobjc_core-11.1/Lib/pyobjc_core.egg-info/include/pyobjc-api.h +214 -0
- pyobjc_core-11.1/Lib/pyobjc_core.egg-info/include/pyobjc-compat.h +413 -0
- pyobjc_core-11.1/Lib/pyobjc_core.egg-info/pyobjc-build-info.txt +3 -0
- pyobjc_core-11.1/License.txt +10 -0
- pyobjc_core-11.1/Modules/_machsignals.m +189 -0
- pyobjc_core-11.1/Modules/objc/OC_NSBundleHack.m +141 -0
- pyobjc_core-11.1/Modules/objc/OC_PythonArray.m +684 -0
- pyobjc_core-11.1/Modules/objc/OC_PythonData.m +336 -0
- pyobjc_core-11.1/Modules/objc/OC_PythonDate.m +308 -0
- pyobjc_core-11.1/Modules/objc/OC_PythonDictionary.h +43 -0
- pyobjc_core-11.1/Modules/objc/OC_PythonDictionary.m +616 -0
- pyobjc_core-11.1/Modules/objc/OC_PythonEnumerator.m +100 -0
- pyobjc_core-11.1/Modules/objc/OC_PythonNumber.m +537 -0
- pyobjc_core-11.1/Modules/objc/OC_PythonObject.h +97 -0
- pyobjc_core-11.1/Modules/objc/OC_PythonObject.m +1129 -0
- pyobjc_core-11.1/Modules/objc/OC_PythonSet.h +15 -0
- pyobjc_core-11.1/Modules/objc/OC_PythonSet.m +563 -0
- pyobjc_core-11.1/Modules/objc/OC_PythonURL.m +117 -0
- pyobjc_core-11.1/Modules/objc/OC_PythonUnicode.m +415 -0
- pyobjc_core-11.1/Modules/objc/ObjCPointer.m +168 -0
- pyobjc_core-11.1/Modules/objc/block_support.h +18 -0
- pyobjc_core-11.1/Modules/objc/block_support.m +605 -0
- pyobjc_core-11.1/Modules/objc/bundle-variables.m +546 -0
- pyobjc_core-11.1/Modules/objc/class-builder.m +1193 -0
- pyobjc_core-11.1/Modules/objc/class-list.m +498 -0
- pyobjc_core-11.1/Modules/objc/closure_pool.m +143 -0
- pyobjc_core-11.1/Modules/objc/corefoundation.m +421 -0
- pyobjc_core-11.1/Modules/objc/ctests.m +1288 -0
- pyobjc_core-11.1/Modules/objc/file_wrapper.m +423 -0
- pyobjc_core-11.1/Modules/objc/formal-protocol.h +17 -0
- pyobjc_core-11.1/Modules/objc/formal-protocol.m +524 -0
- pyobjc_core-11.1/Modules/objc/fsref.m +217 -0
- pyobjc_core-11.1/Modules/objc/function.m +567 -0
- pyobjc_core-11.1/Modules/objc/helpers-authorization.m +213 -0
- pyobjc_core-11.1/Modules/objc/helpers-foundation-nscoder.m +1462 -0
- pyobjc_core-11.1/Modules/objc/helpers-foundation-nsdata.m +232 -0
- pyobjc_core-11.1/Modules/objc/helpers-foundation-nsdecimal.m +967 -0
- pyobjc_core-11.1/Modules/objc/helpers-foundation-nsinvocation.m +386 -0
- pyobjc_core-11.1/Modules/objc/helpers-foundation-nsobject.m +471 -0
- pyobjc_core-11.1/Modules/objc/helpers-vector.m +17360 -0
- pyobjc_core-11.1/Modules/objc/instance-var.m +608 -0
- pyobjc_core-11.1/Modules/objc/ivar-accessor.m +306 -0
- pyobjc_core-11.1/Modules/objc/libffi_support.h +98 -0
- pyobjc_core-11.1/Modules/objc/libffi_support.m +5546 -0
- pyobjc_core-11.1/Modules/objc/memview.m +124 -0
- pyobjc_core-11.1/Modules/objc/meth-func.m +275 -0
- pyobjc_core-11.1/Modules/objc/method-accessor.m +649 -0
- pyobjc_core-11.1/Modules/objc/method-imp.m +600 -0
- pyobjc_core-11.1/Modules/objc/method-signature.h +104 -0
- pyobjc_core-11.1/Modules/objc/method-signature.m +2196 -0
- pyobjc_core-11.1/Modules/objc/module.m +2422 -0
- pyobjc_core-11.1/Modules/objc/objc-class.h +163 -0
- pyobjc_core-11.1/Modules/objc/objc-class.m +3851 -0
- pyobjc_core-11.1/Modules/objc/objc-object.h +55 -0
- pyobjc_core-11.1/Modules/objc/objc-object.m +1392 -0
- pyobjc_core-11.1/Modules/objc/objc-runtime-compat.h +70 -0
- pyobjc_core-11.1/Modules/objc/objc-runtime-compat.m +65 -0
- pyobjc_core-11.1/Modules/objc/objc_super.m +231 -0
- pyobjc_core-11.1/Modules/objc/objc_support.h +90 -0
- pyobjc_core-11.1/Modules/objc/objc_support.m +3560 -0
- pyobjc_core-11.1/Modules/objc/objc_util.h +191 -0
- pyobjc_core-11.1/Modules/objc/objc_util.m +1762 -0
- pyobjc_core-11.1/Modules/objc/opaque-pointer.m +442 -0
- pyobjc_core-11.1/Modules/objc/options.h +52 -0
- pyobjc_core-11.1/Modules/objc/options.m +1449 -0
- pyobjc_core-11.1/Modules/objc/pointer-support.m +439 -0
- pyobjc_core-11.1/Modules/objc/proxy-registry.h +88 -0
- pyobjc_core-11.1/Modules/objc/proxy-registry.m +293 -0
- pyobjc_core-11.1/Modules/objc/pyobjc-api.h +214 -0
- pyobjc_core-11.1/Modules/objc/pyobjc-api.m +69 -0
- pyobjc_core-11.1/Modules/objc/pyobjc-assert.h +59 -0
- pyobjc_core-11.1/Modules/objc/pyobjc-compat.h +413 -0
- pyobjc_core-11.1/Modules/objc/pyobjc-compat.m +161 -0
- pyobjc_core-11.1/Modules/objc/pyobjc-unittest.h +126 -0
- pyobjc_core-11.1/Modules/objc/pyobjc.h +183 -0
- pyobjc_core-11.1/Modules/objc/pyobjc_unicode.m +526 -0
- pyobjc_core-11.1/Modules/objc/python-api-used.h +484 -0
- pyobjc_core-11.1/Modules/objc/registry.m +301 -0
- pyobjc_core-11.1/Modules/objc/selector.h +97 -0
- pyobjc_core-11.1/Modules/objc/selector.m +2102 -0
- pyobjc_core-11.1/Modules/objc/struct-sockaddr.h +14 -0
- pyobjc_core-11.1/Modules/objc/struct-sockaddr.m +252 -0
- pyobjc_core-11.1/Modules/objc/struct-wrapper.h +133 -0
- pyobjc_core-11.1/Modules/objc/struct-wrapper.m +1940 -0
- pyobjc_core-11.1/Modules/objc/super-call.m +616 -0
- pyobjc_core-11.1/Modules/objc/test/NULL.m +151 -0
- pyobjc_core-11.1/Modules/objc/test/arrayint.m +193 -0
- pyobjc_core-11.1/Modules/objc/test/arrays.m +261 -0
- pyobjc_core-11.1/Modules/objc/test/block.m +427 -0
- pyobjc_core-11.1/Modules/objc/test/block2.m +85 -0
- pyobjc_core-11.1/Modules/objc/test/bufsizeinarg.m +302 -0
- pyobjc_core-11.1/Modules/objc/test/categories_base.m +6488 -0
- pyobjc_core-11.1/Modules/objc/test/category_c42.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_c43.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_c44.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_c45.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_c46.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_c47.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_c48.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_c49.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_c50.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_c51.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_c52.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_c53.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_c54.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_c55.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_c56.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_c57.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_c58.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_c59.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp10.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp11.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp12.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp13.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp14.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp15.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp16.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp17.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp18.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp19.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp20.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp21.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp22.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp23.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp24.m +70 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp27.m +70 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp3.m +70 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp30.m +70 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp33.m +70 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp36.m +70 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp39.m +70 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp42.m +70 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp45.m +70 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp48.m +70 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp51.m +70 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp54.m +70 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp57.m +70 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp6.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp7.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp8.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_gp9.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_p24.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_p25.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_p26.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_p27.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_p28.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_p29.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_p30.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_p31.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_p32.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_p33.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_p34.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_p35.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_p36.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_p37.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_p38.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_p39.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_p40.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/category_p41.m +101 -0
- pyobjc_core-11.1/Modules/objc/test/cfsocket.m +84 -0
- pyobjc_core-11.1/Modules/objc/test/classes.m +95 -0
- pyobjc_core-11.1/Modules/objc/test/clinmeth.m +140 -0
- pyobjc_core-11.1/Modules/objc/test/coding.m +163 -0
- pyobjc_core-11.1/Modules/objc/test/copying.m +173 -0
- pyobjc_core-11.1/Modules/objc/test/corefoundation.m +196 -0
- pyobjc_core-11.1/Modules/objc/test/dataint.m +102 -0
- pyobjc_core-11.1/Modules/objc/test/dateint.m +152 -0
- pyobjc_core-11.1/Modules/objc/test/decimal.m +98 -0
- pyobjc_core-11.1/Modules/objc/test/deprecations.m +185 -0
- pyobjc_core-11.1/Modules/objc/test/dictint.m +155 -0
- pyobjc_core-11.1/Modules/objc/test/enumeration.m +91 -0
- pyobjc_core-11.1/Modules/objc/test/exceptions.m +138 -0
- pyobjc_core-11.1/Modules/objc/test/filepointer.m +102 -0
- pyobjc_core-11.1/Modules/objc/test/fsref.m +132 -0
- pyobjc_core-11.1/Modules/objc/test/gcov.m +75 -0
- pyobjc_core-11.1/Modules/objc/test/genericnew.m +172 -0
- pyobjc_core-11.1/Modules/objc/test/helpernsdata.m +145 -0
- pyobjc_core-11.1/Modules/objc/test/helpernsobject.m +161 -0
- pyobjc_core-11.1/Modules/objc/test/identity.m +196 -0
- pyobjc_core-11.1/Modules/objc/test/initialize.m +156 -0
- pyobjc_core-11.1/Modules/objc/test/initpatterns.m +220 -0
- pyobjc_core-11.1/Modules/objc/test/instanceVariables.m +117 -0
- pyobjc_core-11.1/Modules/objc/test/locking.m +105 -0
- pyobjc_core-11.1/Modules/objc/test/metadata.m +1530 -0
- pyobjc_core-11.1/Modules/objc/test/metadatafunction.m +646 -0
- pyobjc_core-11.1/Modules/objc/test/methodaccess.m +84 -0
- pyobjc_core-11.1/Modules/objc/test/methodlookup.m +233 -0
- pyobjc_core-11.1/Modules/objc/test/methres1.m +78 -0
- pyobjc_core-11.1/Modules/objc/test/methres2.m +78 -0
- pyobjc_core-11.1/Modules/objc/test/misc.m +81 -0
- pyobjc_core-11.1/Modules/objc/test/missing1.m +60 -0
- pyobjc_core-11.1/Modules/objc/test/missing2.m +63 -0
- pyobjc_core-11.1/Modules/objc/test/missing3.m +63 -0
- pyobjc_core-11.1/Modules/objc/test/nsobjectcategory.m +71 -0
- pyobjc_core-11.1/Modules/objc/test/nulldelimitedresult.m +158 -0
- pyobjc_core-11.1/Modules/objc/test/objectint.m +861 -0
- pyobjc_core-11.1/Modules/objc/test/opaque.m +226 -0
- pyobjc_core-11.1/Modules/objc/test/pointersupport.m +183 -0
- pyobjc_core-11.1/Modules/objc/test/properties.m +142 -0
- pyobjc_core-11.1/Modules/objc/test/protected.m +85 -0
- pyobjc_core-11.1/Modules/objc/test/protocol.m +123 -0
- pyobjc_core-11.1/Modules/objc/test/pythonnumber.m +322 -0
- pyobjc_core-11.1/Modules/objc/test/pythonset.m +291 -0
- pyobjc_core-11.1/Modules/objc/test/sequence.m +150 -0
- pyobjc_core-11.1/Modules/objc/test/sockaddr.m +198 -0
- pyobjc_core-11.1/Modules/objc/test/specialtypecodes.m +420 -0
- pyobjc_core-11.1/Modules/objc/test/stringint.m +145 -0
- pyobjc_core-11.1/Modules/objc/test/structargs.m +140 -0
- pyobjc_core-11.1/Modules/objc/test/structpointer1.m +107 -0
- pyobjc_core-11.1/Modules/objc/test/structpointer2.m +70 -0
- pyobjc_core-11.1/Modules/objc/test/structs.m +116 -0
- pyobjc_core-11.1/Modules/objc/test/testbndl.m +2276 -0
- pyobjc_core-11.1/Modules/objc/test/testbndl2.m +23315 -0
- pyobjc_core-11.1/Modules/objc/test/testclassandinst.m +114 -0
- pyobjc_core-11.1/Modules/objc/test/testoutputinitializer.m +100 -0
- pyobjc_core-11.1/Modules/objc/test/unavailable.m +118 -0
- pyobjc_core-11.1/Modules/objc/test/vector.m +263 -0
- pyobjc_core-11.1/Modules/objc/test/vectorcall.m +7939 -0
- pyobjc_core-11.1/Modules/objc/test/voidpointer.m +97 -0
- pyobjc_core-11.1/Modules/objc/varlist.m +512 -0
- pyobjc_core-11.1/Modules/objc/weakref.m +201 -0
- pyobjc_core-11.1/PKG-INFO +67 -0
- pyobjc_core-11.1/PyObjCTest/test_archive_python.py +2142 -0
- pyobjc_core-11.1/PyObjCTest/test_array_interface.py +447 -0
- pyobjc_core-11.1/PyObjCTest/test_blocks.py +1223 -0
- pyobjc_core-11.1/PyObjCTest/test_bridgesupport.py +2895 -0
- pyobjc_core-11.1/PyObjCTest/test_bufsizeinarg.py +464 -0
- pyobjc_core-11.1/PyObjCTest/test_bundleFunctions.py +195 -0
- pyobjc_core-11.1/PyObjCTest/test_bundleVariables.py +199 -0
- pyobjc_core-11.1/PyObjCTest/test_callable_docstr.py +1030 -0
- pyobjc_core-11.1/PyObjCTest/test_callbacks.py +285 -0
- pyobjc_core-11.1/PyObjCTest/test_categories.py +2615 -0
- pyobjc_core-11.1/PyObjCTest/test_convenience.py +714 -0
- pyobjc_core-11.1/PyObjCTest/test_conversion.py +940 -0
- pyobjc_core-11.1/PyObjCTest/test_copying.py +299 -0
- pyobjc_core-11.1/PyObjCTest/test_corefoundation.py +162 -0
- pyobjc_core-11.1/PyObjCTest/test_date_proxy.py +345 -0
- pyobjc_core-11.1/PyObjCTest/test_dict_proxy.py +271 -0
- pyobjc_core-11.1/PyObjCTest/test_final.py +35 -0
- pyobjc_core-11.1/PyObjCTest/test_free_threading.py +15 -0
- pyobjc_core-11.1/PyObjCTest/test_fsref.py +109 -0
- pyobjc_core-11.1/PyObjCTest/test_functions.py +381 -0
- pyobjc_core-11.1/PyObjCTest/test_generic_new.py +332 -0
- pyobjc_core-11.1/PyObjCTest/test_imp.py +244 -0
- pyobjc_core-11.1/PyObjCTest/test_initpatterns.py +379 -0
- pyobjc_core-11.1/PyObjCTest/test_inspect_signatures.py +71 -0
- pyobjc_core-11.1/PyObjCTest/test_internals.py +521 -0
- pyobjc_core-11.1/PyObjCTest/test_ivar.py +529 -0
- pyobjc_core-11.1/PyObjCTest/test_keyvalue.py +1006 -0
- pyobjc_core-11.1/PyObjCTest/test_lazy_import.py +857 -0
- pyobjc_core-11.1/PyObjCTest/test_list_proxy.py +325 -0
- pyobjc_core-11.1/PyObjCTest/test_locking.py +168 -0
- pyobjc_core-11.1/PyObjCTest/test_machsignals.py +127 -0
- pyobjc_core-11.1/PyObjCTest/test_metadata.py +2379 -0
- pyobjc_core-11.1/PyObjCTest/test_metadata_imp.py +474 -0
- pyobjc_core-11.1/PyObjCTest/test_metadata_py.py +2146 -0
- pyobjc_core-11.1/PyObjCTest/test_methodaccess.py +300 -0
- pyobjc_core-11.1/PyObjCTest/test_methods.py +1711 -0
- pyobjc_core-11.1/PyObjCTest/test_nscoder.py +176 -0
- pyobjc_core-11.1/PyObjCTest/test_nsdata.py +1056 -0
- pyobjc_core-11.1/PyObjCTest/test_nsdecimal.py +572 -0
- pyobjc_core-11.1/PyObjCTest/test_nsinvocation.py +142 -0
- pyobjc_core-11.1/PyObjCTest/test_nsobject.py +259 -0
- pyobjc_core-11.1/PyObjCTest/test_number_proxy.py +1241 -0
- pyobjc_core-11.1/PyObjCTest/test_objc.py +148 -0
- pyobjc_core-11.1/PyObjCTest/test_objcpointer.py +71 -0
- pyobjc_core-11.1/PyObjCTest/test_object_proxy.py +788 -0
- pyobjc_core-11.1/PyObjCTest/test_opaque.py +184 -0
- pyobjc_core-11.1/PyObjCTest/test_options.py +615 -0
- pyobjc_core-11.1/PyObjCTest/test_pointer_compat.py +227 -0
- pyobjc_core-11.1/PyObjCTest/test_protocol.py +921 -0
- pyobjc_core-11.1/PyObjCTest/test_protocolNamed.py +45 -0
- pyobjc_core-11.1/PyObjCTest/test_regr.py +789 -0
- pyobjc_core-11.1/PyObjCTest/test_set_interface.py +509 -0
- pyobjc_core-11.1/PyObjCTest/test_set_proxy.py +486 -0
- pyobjc_core-11.1/PyObjCTest/test_sockaddr.py +201 -0
- pyobjc_core-11.1/PyObjCTest/test_splitsig.py +250 -0
- pyobjc_core-11.1/PyObjCTest/test_string_proxy.py +159 -0
- pyobjc_core-11.1/PyObjCTest/test_structs.py +1244 -0
- pyobjc_core-11.1/PyObjCTest/test_subclass.py +1485 -0
- pyobjc_core-11.1/PyObjCTest/test_super_on_regular_classes.py +20 -0
- pyobjc_core-11.1/PyObjCTest/test_testsupport.py +2714 -0
- pyobjc_core-11.1/PyObjCTest/test_transform.py +2557 -0
- pyobjc_core-11.1/PyObjCTest/test_typecheck.py +85 -0
- pyobjc_core-11.1/PyObjCTest/test_unicode.py +106 -0
- pyobjc_core-11.1/PyObjCTest/test_urlproxy.py +67 -0
- pyobjc_core-11.1/PyObjCTest/test_usekvo.py +118 -0
- pyobjc_core-11.1/PyObjCTest/test_varlist.py +72 -0
- pyobjc_core-11.1/PyObjCTest/test_vector_proxy.py +648 -0
- pyobjc_core-11.1/PyObjCTest/test_vectorcall.py +54688 -0
- pyobjc_core-11.1/PyObjCTest/test_weakref.py +149 -0
- pyobjc_core-11.1/Tools/free-threading/_tools.py +45 -0
- pyobjc_core-11.1/Tools/free-threading/concurrent-class-list.py +11 -0
- pyobjc_core-11.1/Tools/free-threading/concurrent-dict-getting.py +26 -0
- pyobjc_core-11.1/Tools/free-threading/concurrent-iteration.py +23 -0
- pyobjc_core-11.1/Tools/free-threading/concurrent-registration.py +22 -0
- pyobjc_core-11.1/Tools/free-threading/concurrent-value-getting.py +27 -0
- pyobjc_core-11.1/Tools/generate-category-tests.py +708 -0
- pyobjc_core-11.1/Tools/generate-helpers-vector.py +1794 -0
- pyobjc_core-11.1/Tools/pyobjc_setup.py +737 -0
- pyobjc_core-11.1/Tools/pyobjcbench.py +271 -0
- pyobjc_core-11.1/Tools/run-free-threading-tests.py +30 -0
- pyobjc_core-11.1/setup.cfg +53 -0
- pyobjc_core-11.1/setup.py +810 -0
- pyobjc_core-10.3.2/Examples/NonFunctional/RemotePyInterpreter/AsyncPythonInterpreter.py +0 -277
- pyobjc_core-10.3.2/Examples/NonFunctional/RemotePyInterpreter/ConsoleReactor.py +0 -133
- pyobjc_core-10.3.2/Examples/NonFunctional/RemotePyInterpreter/English.lproj/MainMenu.nib/classes.nib +0 -4
- pyobjc_core-10.3.2/Examples/NonFunctional/RemotePyInterpreter/English.lproj/MainMenu.nib/info.nib +0 -23
- pyobjc_core-10.3.2/Examples/NonFunctional/RemotePyInterpreter/English.lproj/MainMenu.nib/keyedobjects.nib +0 -8353
- pyobjc_core-10.3.2/Examples/NonFunctional/RemotePyInterpreter/English.lproj/RemotePyInterpreterDocument.nib/classes.nib +0 -25
- pyobjc_core-10.3.2/Examples/NonFunctional/RemotePyInterpreter/English.lproj/RemotePyInterpreterDocument.nib/info.nib +0 -18
- pyobjc_core-10.3.2/Examples/NonFunctional/RemotePyInterpreter/English.lproj/RemotePyInterpreterDocument.nib/keyedobjects.nib +0 -1611
- pyobjc_core-10.3.2/Examples/NonFunctional/RemotePyInterpreter/README.txt +0 -13
- pyobjc_core-10.3.2/Examples/NonFunctional/RemotePyInterpreter/RemotePyInterpreter.py +0 -518
- pyobjc_core-10.3.2/Examples/NonFunctional/RemotePyInterpreter/netrepr.py +0 -239
- pyobjc_core-10.3.2/Examples/NonFunctional/RemotePyInterpreter/remote_bootstrap.py +0 -16
- pyobjc_core-10.3.2/Examples/NonFunctional/RemotePyInterpreter/remote_console.py +0 -116
- pyobjc_core-10.3.2/Examples/NonFunctional/RemotePyInterpreter/remote_pipe.py +0 -110
- pyobjc_core-10.3.2/Examples/NonFunctional/RemotePyInterpreter/setup.py +0 -37
- pyobjc_core-10.3.2/Examples/NonFunctional/RemotePyInterpreter/tcpinterpreter.py +0 -66
- pyobjc_core-10.3.2/Examples/NonFunctional/RemotePyInterpreter/test_client.py +0 -128
- pyobjc_core-10.3.2/Examples/Scripts/HelloWorld.py +0 -82
- pyobjc_core-10.3.2/Examples/Scripts/autoreadme.py +0 -55
- pyobjc_core-10.3.2/Examples/Scripts/signal-demo.py +0 -30
- pyobjc_core-10.3.2/Examples/Scripts/stdinreader.py +0 -88
- pyobjc_core-10.3.2/Lib/PyObjCTools/TestSupport.py +0 -1444
- pyobjc_core-10.3.2/Lib/objc/__init__.py +0 -86
- pyobjc_core-10.3.2/Lib/objc/_bridges.py +0 -83
- pyobjc_core-10.3.2/Lib/objc/_bridgesupport.py +0 -828
- pyobjc_core-10.3.2/Lib/objc/_convenience.py +0 -229
- pyobjc_core-10.3.2/Lib/objc/_convenience_mapping.py +0 -132
- pyobjc_core-10.3.2/Lib/objc/_convenience_nsdata.py +0 -440
- pyobjc_core-10.3.2/Lib/objc/_convenience_nsobject.py +0 -123
- pyobjc_core-10.3.2/Lib/objc/_lazyimport.py +0 -500
- pyobjc_core-10.3.2/Lib/objc/_new.py +0 -164
- pyobjc_core-10.3.2/Lib/objc/_pycoder.py +0 -584
- pyobjc_core-10.3.2/Lib/objc/_transform.py +0 -755
- pyobjc_core-10.3.2/Lib/objc/simd.py +0 -600
- pyobjc_core-10.3.2/Lib/pyobjc_core.egg-info/PKG-INFO +0 -58
- pyobjc_core-10.3.2/Lib/pyobjc_core.egg-info/SOURCES.txt +0 -509
- pyobjc_core-10.3.2/Lib/pyobjc_core.egg-info/include/pyobjc-api.h +0 -214
- pyobjc_core-10.3.2/Lib/pyobjc_core.egg-info/include/pyobjc-compat.h +0 -245
- pyobjc_core-10.3.2/License.txt +0 -10
- pyobjc_core-10.3.2/Modules/_machsignals.m +0 -150
- pyobjc_core-10.3.2/Modules/objc/OC_NSBundleHack.m +0 -125
- pyobjc_core-10.3.2/Modules/objc/OC_PythonArray.m +0 -688
- pyobjc_core-10.3.2/Modules/objc/OC_PythonData.m +0 -361
- pyobjc_core-10.3.2/Modules/objc/OC_PythonDate.m +0 -369
- pyobjc_core-10.3.2/Modules/objc/OC_PythonDictionary.h +0 -43
- pyobjc_core-10.3.2/Modules/objc/OC_PythonDictionary.m +0 -609
- pyobjc_core-10.3.2/Modules/objc/OC_PythonEnumerator.m +0 -118
- pyobjc_core-10.3.2/Modules/objc/OC_PythonNumber.m +0 -582
- pyobjc_core-10.3.2/Modules/objc/OC_PythonObject.h +0 -99
- pyobjc_core-10.3.2/Modules/objc/OC_PythonObject.m +0 -1278
- pyobjc_core-10.3.2/Modules/objc/OC_PythonSet.h +0 -15
- pyobjc_core-10.3.2/Modules/objc/OC_PythonSet.m +0 -578
- pyobjc_core-10.3.2/Modules/objc/OC_PythonURL.m +0 -128
- pyobjc_core-10.3.2/Modules/objc/OC_PythonUnicode.m +0 -449
- pyobjc_core-10.3.2/Modules/objc/ObjCPointer.m +0 -163
- pyobjc_core-10.3.2/Modules/objc/block_support.h +0 -19
- pyobjc_core-10.3.2/Modules/objc/block_support.m +0 -584
- pyobjc_core-10.3.2/Modules/objc/bundle-variables.m +0 -443
- pyobjc_core-10.3.2/Modules/objc/class-builder.m +0 -1128
- pyobjc_core-10.3.2/Modules/objc/class-list.m +0 -526
- pyobjc_core-10.3.2/Modules/objc/closure_pool.m +0 -118
- pyobjc_core-10.3.2/Modules/objc/corefoundation.m +0 -384
- pyobjc_core-10.3.2/Modules/objc/ctests.m +0 -1133
- pyobjc_core-10.3.2/Modules/objc/file_wrapper.m +0 -362
- pyobjc_core-10.3.2/Modules/objc/formal-protocol.h +0 -17
- pyobjc_core-10.3.2/Modules/objc/formal-protocol.m +0 -533
- pyobjc_core-10.3.2/Modules/objc/fsref.m +0 -198
- pyobjc_core-10.3.2/Modules/objc/function.m +0 -575
- pyobjc_core-10.3.2/Modules/objc/helpers-authorization.m +0 -214
- pyobjc_core-10.3.2/Modules/objc/helpers-foundation-nscoder.m +0 -1448
- pyobjc_core-10.3.2/Modules/objc/helpers-foundation-nsdata.m +0 -232
- pyobjc_core-10.3.2/Modules/objc/helpers-foundation-nsdecimal.m +0 -1138
- pyobjc_core-10.3.2/Modules/objc/helpers-foundation-nsinvocation.m +0 -358
- pyobjc_core-10.3.2/Modules/objc/helpers-foundation-nsobject.m +0 -438
- pyobjc_core-10.3.2/Modules/objc/helpers-vector.m +0 -16645
- pyobjc_core-10.3.2/Modules/objc/instance-var.m +0 -545
- pyobjc_core-10.3.2/Modules/objc/ivar-accessor.m +0 -299
- pyobjc_core-10.3.2/Modules/objc/libffi_support.h +0 -97
- pyobjc_core-10.3.2/Modules/objc/libffi_support.m +0 -5274
- pyobjc_core-10.3.2/Modules/objc/memview.m +0 -124
- pyobjc_core-10.3.2/Modules/objc/meth-func.m +0 -243
- pyobjc_core-10.3.2/Modules/objc/method-accessor.m +0 -606
- pyobjc_core-10.3.2/Modules/objc/method-imp.m +0 -626
- pyobjc_core-10.3.2/Modules/objc/method-signature.h +0 -106
- pyobjc_core-10.3.2/Modules/objc/method-signature.m +0 -2002
- pyobjc_core-10.3.2/Modules/objc/module.m +0 -2334
- pyobjc_core-10.3.2/Modules/objc/objc-class.h +0 -171
- pyobjc_core-10.3.2/Modules/objc/objc-class.m +0 -3491
- pyobjc_core-10.3.2/Modules/objc/objc-object.h +0 -59
- pyobjc_core-10.3.2/Modules/objc/objc-object.m +0 -1332
- pyobjc_core-10.3.2/Modules/objc/objc-runtime-compat.h +0 -66
- pyobjc_core-10.3.2/Modules/objc/objc-runtime-compat.m +0 -72
- pyobjc_core-10.3.2/Modules/objc/objc_super.m +0 -218
- pyobjc_core-10.3.2/Modules/objc/objc_support.h +0 -90
- pyobjc_core-10.3.2/Modules/objc/objc_support.m +0 -3519
- pyobjc_core-10.3.2/Modules/objc/objc_util.h +0 -136
- pyobjc_core-10.3.2/Modules/objc/objc_util.m +0 -1666
- pyobjc_core-10.3.2/Modules/objc/opaque-pointer.m +0 -445
- pyobjc_core-10.3.2/Modules/objc/options.h +0 -45
- pyobjc_core-10.3.2/Modules/objc/options.m +0 -400
- pyobjc_core-10.3.2/Modules/objc/pointer-support.m +0 -343
- pyobjc_core-10.3.2/Modules/objc/proxy-registry.h +0 -31
- pyobjc_core-10.3.2/Modules/objc/proxy-registry.m +0 -116
- pyobjc_core-10.3.2/Modules/objc/pyobjc-api.h +0 -214
- pyobjc_core-10.3.2/Modules/objc/pyobjc-api.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/pyobjc-assert.h +0 -66
- pyobjc_core-10.3.2/Modules/objc/pyobjc-compat.h +0 -245
- pyobjc_core-10.3.2/Modules/objc/pyobjc-compat.m +0 -229
- pyobjc_core-10.3.2/Modules/objc/pyobjc-unittest.h +0 -127
- pyobjc_core-10.3.2/Modules/objc/pyobjc.h +0 -187
- pyobjc_core-10.3.2/Modules/objc/pyobjc_unicode.m +0 -527
- pyobjc_core-10.3.2/Modules/objc/python-api-used.h +0 -397
- pyobjc_core-10.3.2/Modules/objc/registry.m +0 -196
- pyobjc_core-10.3.2/Modules/objc/selector.h +0 -98
- pyobjc_core-10.3.2/Modules/objc/selector.m +0 -2116
- pyobjc_core-10.3.2/Modules/objc/struct-sockaddr.h +0 -15
- pyobjc_core-10.3.2/Modules/objc/struct-sockaddr.m +0 -301
- pyobjc_core-10.3.2/Modules/objc/struct-wrapper.h +0 -139
- pyobjc_core-10.3.2/Modules/objc/struct-wrapper.m +0 -1748
- pyobjc_core-10.3.2/Modules/objc/super-call.m +0 -466
- pyobjc_core-10.3.2/Modules/objc/test/NULL.m +0 -116
- pyobjc_core-10.3.2/Modules/objc/test/arrayint.m +0 -144
- pyobjc_core-10.3.2/Modules/objc/test/arrays.m +0 -223
- pyobjc_core-10.3.2/Modules/objc/test/block.m +0 -241
- pyobjc_core-10.3.2/Modules/objc/test/bufsizeinarg.m +0 -267
- pyobjc_core-10.3.2/Modules/objc/test/categories_base.m +0 -6918
- pyobjc_core-10.3.2/Modules/objc/test/category_c42.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_c43.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_c44.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_c45.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_c46.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_c47.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_c48.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_c49.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_c50.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_c51.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_c52.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_c53.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_c54.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_c55.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_c56.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_c57.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_c58.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_c59.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_gp10.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_gp11.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_gp12.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_gp13.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_gp14.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_gp15.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_gp16.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_gp17.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_gp18.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_gp19.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_gp20.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_gp21.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_gp22.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_gp23.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_gp24.m +0 -68
- pyobjc_core-10.3.2/Modules/objc/test/category_gp27.m +0 -68
- pyobjc_core-10.3.2/Modules/objc/test/category_gp3.m +0 -68
- pyobjc_core-10.3.2/Modules/objc/test/category_gp30.m +0 -68
- pyobjc_core-10.3.2/Modules/objc/test/category_gp33.m +0 -68
- pyobjc_core-10.3.2/Modules/objc/test/category_gp36.m +0 -68
- pyobjc_core-10.3.2/Modules/objc/test/category_gp39.m +0 -68
- pyobjc_core-10.3.2/Modules/objc/test/category_gp42.m +0 -68
- pyobjc_core-10.3.2/Modules/objc/test/category_gp45.m +0 -68
- pyobjc_core-10.3.2/Modules/objc/test/category_gp48.m +0 -68
- pyobjc_core-10.3.2/Modules/objc/test/category_gp51.m +0 -68
- pyobjc_core-10.3.2/Modules/objc/test/category_gp54.m +0 -68
- pyobjc_core-10.3.2/Modules/objc/test/category_gp57.m +0 -68
- pyobjc_core-10.3.2/Modules/objc/test/category_gp6.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_gp7.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_gp8.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_gp9.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_p24.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_p25.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_p26.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_p27.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_p28.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_p29.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_p30.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_p31.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_p32.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_p33.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_p34.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_p35.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_p36.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_p37.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_p38.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_p39.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_p40.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/category_p41.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/cfsocket.m +0 -50
- pyobjc_core-10.3.2/Modules/objc/test/classes.m +0 -46
- pyobjc_core-10.3.2/Modules/objc/test/clinmeth.m +0 -104
- pyobjc_core-10.3.2/Modules/objc/test/coding.m +0 -126
- pyobjc_core-10.3.2/Modules/objc/test/copying.m +0 -114
- pyobjc_core-10.3.2/Modules/objc/test/corefoundation.m +0 -169
- pyobjc_core-10.3.2/Modules/objc/test/dataint.m +0 -66
- pyobjc_core-10.3.2/Modules/objc/test/dateint.m +0 -116
- pyobjc_core-10.3.2/Modules/objc/test/decimal.m +0 -64
- pyobjc_core-10.3.2/Modules/objc/test/deprecations.m +0 -152
- pyobjc_core-10.3.2/Modules/objc/test/dictint.m +0 -90
- pyobjc_core-10.3.2/Modules/objc/test/enumeration.m +0 -55
- pyobjc_core-10.3.2/Modules/objc/test/exceptions.m +0 -103
- pyobjc_core-10.3.2/Modules/objc/test/filepointer.m +0 -68
- pyobjc_core-10.3.2/Modules/objc/test/fsref.m +0 -98
- pyobjc_core-10.3.2/Modules/objc/test/gcov.m +0 -41
- pyobjc_core-10.3.2/Modules/objc/test/genericnew.m +0 -117
- pyobjc_core-10.3.2/Modules/objc/test/helpernsdata.m +0 -109
- pyobjc_core-10.3.2/Modules/objc/test/helpernsobject.m +0 -115
- pyobjc_core-10.3.2/Modules/objc/test/identity.m +0 -162
- pyobjc_core-10.3.2/Modules/objc/test/initialize.m +0 -117
- pyobjc_core-10.3.2/Modules/objc/test/instanceVariables.m +0 -90
- pyobjc_core-10.3.2/Modules/objc/test/locking.m +0 -71
- pyobjc_core-10.3.2/Modules/objc/test/metadata.m +0 -826
- pyobjc_core-10.3.2/Modules/objc/test/metadatafunction.m +0 -620
- pyobjc_core-10.3.2/Modules/objc/test/methodaccess.m +0 -48
- pyobjc_core-10.3.2/Modules/objc/test/methodlookup.m +0 -198
- pyobjc_core-10.3.2/Modules/objc/test/methres1.m +0 -37
- pyobjc_core-10.3.2/Modules/objc/test/methres2.m +0 -38
- pyobjc_core-10.3.2/Modules/objc/test/misc.m +0 -47
- pyobjc_core-10.3.2/Modules/objc/test/missing1.m +0 -27
- pyobjc_core-10.3.2/Modules/objc/test/missing2.m +0 -30
- pyobjc_core-10.3.2/Modules/objc/test/missing3.m +0 -30
- pyobjc_core-10.3.2/Modules/objc/test/nsobjectcategory.m +0 -44
- pyobjc_core-10.3.2/Modules/objc/test/nulldelimitedresult.m +0 -129
- pyobjc_core-10.3.2/Modules/objc/test/objectint.m +0 -740
- pyobjc_core-10.3.2/Modules/objc/test/opaque.m +0 -190
- pyobjc_core-10.3.2/Modules/objc/test/pointersupport.m +0 -118
- pyobjc_core-10.3.2/Modules/objc/test/properties.m +0 -108
- pyobjc_core-10.3.2/Modules/objc/test/protected.m +0 -50
- pyobjc_core-10.3.2/Modules/objc/test/protocol.m +0 -90
- pyobjc_core-10.3.2/Modules/objc/test/pythonnumber.m +0 -235
- pyobjc_core-10.3.2/Modules/objc/test/pythonset.m +0 -227
- pyobjc_core-10.3.2/Modules/objc/test/sequence.m +0 -115
- pyobjc_core-10.3.2/Modules/objc/test/sockaddr.m +0 -164
- pyobjc_core-10.3.2/Modules/objc/test/specialtypecodes.m +0 -399
- pyobjc_core-10.3.2/Modules/objc/test/stringint.m +0 -96
- pyobjc_core-10.3.2/Modules/objc/test/structargs.m +0 -97
- pyobjc_core-10.3.2/Modules/objc/test/structpointer1.m +0 -78
- pyobjc_core-10.3.2/Modules/objc/test/structpointer2.m +0 -43
- pyobjc_core-10.3.2/Modules/objc/test/structs.m +0 -82
- pyobjc_core-10.3.2/Modules/objc/test/testbndl.m +0 -2114
- pyobjc_core-10.3.2/Modules/objc/test/testbndl2.m +0 -23274
- pyobjc_core-10.3.2/Modules/objc/test/testclassandinst.m +0 -86
- pyobjc_core-10.3.2/Modules/objc/test/testoutputinitializer.m +0 -73
- pyobjc_core-10.3.2/Modules/objc/test/unavailable.m +0 -81
- pyobjc_core-10.3.2/Modules/objc/test/vector.m +0 -210
- pyobjc_core-10.3.2/Modules/objc/test/vectorcall.m +0 -9829
- pyobjc_core-10.3.2/Modules/objc/test/voidpointer.m +0 -62
- pyobjc_core-10.3.2/Modules/objc/varlist.m +0 -489
- pyobjc_core-10.3.2/Modules/objc/weakref.m +0 -187
- pyobjc_core-10.3.2/PKG-INFO +0 -55
- pyobjc_core-10.3.2/PyObjCTest/test_archive_python.py +0 -1854
- pyobjc_core-10.3.2/PyObjCTest/test_array_interface.py +0 -447
- pyobjc_core-10.3.2/PyObjCTest/test_blocks.py +0 -554
- pyobjc_core-10.3.2/PyObjCTest/test_bridgesupport.py +0 -2885
- pyobjc_core-10.3.2/PyObjCTest/test_bufsizeinarg.py +0 -443
- pyobjc_core-10.3.2/PyObjCTest/test_bundleFunctions.py +0 -189
- pyobjc_core-10.3.2/PyObjCTest/test_bundleVariables.py +0 -174
- pyobjc_core-10.3.2/PyObjCTest/test_callable_docstr.py +0 -982
- pyobjc_core-10.3.2/PyObjCTest/test_callbacks.py +0 -269
- pyobjc_core-10.3.2/PyObjCTest/test_categories.py +0 -2611
- pyobjc_core-10.3.2/PyObjCTest/test_convenience.py +0 -679
- pyobjc_core-10.3.2/PyObjCTest/test_conversion.py +0 -718
- pyobjc_core-10.3.2/PyObjCTest/test_copying.py +0 -266
- pyobjc_core-10.3.2/PyObjCTest/test_corefoundation.py +0 -142
- pyobjc_core-10.3.2/PyObjCTest/test_date_proxy.py +0 -272
- pyobjc_core-10.3.2/PyObjCTest/test_dict_proxy.py +0 -187
- pyobjc_core-10.3.2/PyObjCTest/test_final.py +0 -29
- pyobjc_core-10.3.2/PyObjCTest/test_fsref.py +0 -85
- pyobjc_core-10.3.2/PyObjCTest/test_functions.py +0 -350
- pyobjc_core-10.3.2/PyObjCTest/test_generic_new.py +0 -199
- pyobjc_core-10.3.2/PyObjCTest/test_imp.py +0 -210
- pyobjc_core-10.3.2/PyObjCTest/test_initialized.py +0 -86
- pyobjc_core-10.3.2/PyObjCTest/test_inspect_signatures.py +0 -69
- pyobjc_core-10.3.2/PyObjCTest/test_internals.py +0 -386
- pyobjc_core-10.3.2/PyObjCTest/test_ivar.py +0 -493
- pyobjc_core-10.3.2/PyObjCTest/test_keyvalue.py +0 -925
- pyobjc_core-10.3.2/PyObjCTest/test_lazy_import.py +0 -839
- pyobjc_core-10.3.2/PyObjCTest/test_list_proxy.py +0 -306
- pyobjc_core-10.3.2/PyObjCTest/test_locking.py +0 -156
- pyobjc_core-10.3.2/PyObjCTest/test_machsignals.py +0 -116
- pyobjc_core-10.3.2/PyObjCTest/test_metadata.py +0 -1686
- pyobjc_core-10.3.2/PyObjCTest/test_metadata_imp.py +0 -471
- pyobjc_core-10.3.2/PyObjCTest/test_metadata_py.py +0 -1047
- pyobjc_core-10.3.2/PyObjCTest/test_methodaccess.py +0 -303
- pyobjc_core-10.3.2/PyObjCTest/test_methods.py +0 -1622
- pyobjc_core-10.3.2/PyObjCTest/test_nscoder.py +0 -156
- pyobjc_core-10.3.2/PyObjCTest/test_nsdata.py +0 -988
- pyobjc_core-10.3.2/PyObjCTest/test_nsdecimal.py +0 -440
- pyobjc_core-10.3.2/PyObjCTest/test_nsinvocation.py +0 -33
- pyobjc_core-10.3.2/PyObjCTest/test_nsobject.py +0 -234
- pyobjc_core-10.3.2/PyObjCTest/test_number_proxy.py +0 -1100
- pyobjc_core-10.3.2/PyObjCTest/test_objc.py +0 -123
- pyobjc_core-10.3.2/PyObjCTest/test_objcpointer.py +0 -55
- pyobjc_core-10.3.2/PyObjCTest/test_object_proxy.py +0 -709
- pyobjc_core-10.3.2/PyObjCTest/test_opaque.py +0 -192
- pyobjc_core-10.3.2/PyObjCTest/test_options.py +0 -437
- pyobjc_core-10.3.2/PyObjCTest/test_pointer_compat.py +0 -200
- pyobjc_core-10.3.2/PyObjCTest/test_protocol.py +0 -912
- pyobjc_core-10.3.2/PyObjCTest/test_protocolNamed.py +0 -32
- pyobjc_core-10.3.2/PyObjCTest/test_regr.py +0 -689
- pyobjc_core-10.3.2/PyObjCTest/test_set_interface.py +0 -509
- pyobjc_core-10.3.2/PyObjCTest/test_set_proxy.py +0 -430
- pyobjc_core-10.3.2/PyObjCTest/test_sockaddr.py +0 -176
- pyobjc_core-10.3.2/PyObjCTest/test_splitsig.py +0 -208
- pyobjc_core-10.3.2/PyObjCTest/test_string_proxy.py +0 -150
- pyobjc_core-10.3.2/PyObjCTest/test_structs.py +0 -1036
- pyobjc_core-10.3.2/PyObjCTest/test_subclass.py +0 -1207
- pyobjc_core-10.3.2/PyObjCTest/test_testsupport.py +0 -2634
- pyobjc_core-10.3.2/PyObjCTest/test_transform.py +0 -2402
- pyobjc_core-10.3.2/PyObjCTest/test_typecheck.py +0 -74
- pyobjc_core-10.3.2/PyObjCTest/test_unicode.py +0 -98
- pyobjc_core-10.3.2/PyObjCTest/test_urlproxy.py +0 -21
- pyobjc_core-10.3.2/PyObjCTest/test_usekvo.py +0 -90
- pyobjc_core-10.3.2/PyObjCTest/test_varlist.py +0 -68
- pyobjc_core-10.3.2/PyObjCTest/test_vector_proxy.py +0 -610
- pyobjc_core-10.3.2/PyObjCTest/test_vectorcall.py +0 -48612
- pyobjc_core-10.3.2/PyObjCTest/test_weakref.py +0 -145
- pyobjc_core-10.3.2/Tools/generate-category-tests.py +0 -663
- pyobjc_core-10.3.2/Tools/generate-helpers-vector.py +0 -1581
- pyobjc_core-10.3.2/Tools/pyobjc_setup.py +0 -717
- pyobjc_core-10.3.2/Tools/pyobjcbench.py +0 -271
- pyobjc_core-10.3.2/setup.cfg +0 -54
- pyobjc_core-10.3.2/setup.py +0 -760
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Examples/00ReadMe.txt +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Examples/GUITests/00ReadMe.txt +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Examples/GUITests/test_modalsession.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Examples/Scripts/instrumentSends.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Examples/Scripts/kvo-debugging.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Examples/Scripts/subclassing-objective-c.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Examples/Scripts/wmEnable.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/HISTORIC.txt +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Install.txt +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Lib/PyObjCTools/KeyValueCoding.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Lib/PyObjCTools/MachSignals.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Lib/PyObjCTools/Signals.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Lib/objc/_callable_docstr.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Lib/objc/_category.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Lib/objc/_compat.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Lib/objc/_context.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Lib/objc/_convenience_nsarray.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Lib/objc/_convenience_nsdecimal.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Lib/objc/_convenience_nsdictionary.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Lib/objc/_convenience_nsset.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Lib/objc/_convenience_nsstring.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Lib/objc/_convenience_sequence.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Lib/objc/_descriptors.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Lib/objc/_dyld.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Lib/objc/_framework.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Lib/objc/_informal_protocol.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Lib/objc/_locking.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Lib/objc/_properties.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Lib/objc/_protocols.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Lib/objc/_pythonify.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Lib/objc/_structtype.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Lib/pyobjc_core.egg-info/dependency_links.txt +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Lib/pyobjc_core.egg-info/not-zip-safe +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Lib/pyobjc_core.egg-info/top_level.txt +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/MANIFEST +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/MANIFEST.in +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Misc/announcement.txt +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/OC_BuiltinPythonArray.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/OC_BuiltinPythonArray.m +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/OC_BuiltinPythonData.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/OC_BuiltinPythonData.m +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/OC_BuiltinPythonDate.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/OC_BuiltinPythonDate.m +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/OC_BuiltinPythonDictionary.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/OC_BuiltinPythonDictionary.m +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/OC_BuiltinPythonNumber.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/OC_BuiltinPythonNumber.m +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/OC_BuiltinPythonSet.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/OC_BuiltinPythonSet.m +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/OC_BuiltinPythonUnicode.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/OC_BuiltinPythonUnicode.m +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/OC_NSBundleHack.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/OC_PythonArray.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/OC_PythonData.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/OC_PythonDate.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/OC_PythonEnumerator.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/OC_PythonNumber.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/OC_PythonURL.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/OC_PythonUnicode.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/ObjCPointer.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/bundle-variables.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/class-builder.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/class-list.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/closure_pool.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/corefoundation.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/ctests.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/file_wrapper.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/fsref.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/function.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/helpers.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/instance-var.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/ivar-accessor.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/libffi_extra.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/libffi_extra.m +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/memview.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/meth-func.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/method-accessor.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/method-imp.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/objc-NULL.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/objc-NULL.m +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/objc_super.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/opaque-pointer.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/pointer-support.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/pyobjc_unicode.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/registry.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/released-buffer.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/released-buffer.m +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/super-call.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/varlist.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Modules/objc/weakref.h +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/__init__.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/archives/py2-oc2.3.keyed +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/archives/py2-oc2.3.plain +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/archives/py3-oc3.0.keyed +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/archives/py3-oc3.0.plain +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/data_bridgesupport/bundle_data/Test.bridgesupport +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/data_bridgesupport/with_data/Test.bridgesupport +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/data_bridgesupport/with_data_dylib/Test.bridgesupport +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/data_bridgesupport/with_data_dylib/Test.dylib +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/dump-nsarchive-securecoding.m +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/dump-nsarchive.m +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/fnd.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/helper_bridgesupport.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/keyvaluehelper.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/loader.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_NULL.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_allocatebuffer.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_api_import.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_archiving_interop.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_archiving_secure_interop.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_array_property.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_arrays.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_assocations.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_bridged_classes.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_bridges.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_classandinst.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_classhooks.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_clinmeth.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_compat.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_context.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_ctests.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_data_proxy.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_default_selector.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_deprecations.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_descriptors.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_dict_interface.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_dict_property.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_dyld.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_enumerator.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_exceptions.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_filepointer.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_framework.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_generic_class.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_hidden_selector.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_identity.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_keyvalue_prop.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_keyvaluecoding.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_leaks.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_metadata_function.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_metadata_inheritance.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_metadata_py2py.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_method_prototypes.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_methodedits.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_methodlookup.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_methods2.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_methres.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_nsdate_proxy.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_nsunavailable.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_nulldelimited.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_object_property.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_outputinitializer.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_pickle.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_pickling_objc.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_propertiesforclass.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_protected.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_python_method.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_set_property.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_signals.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_signatures.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_simd.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_specialtypecodes_charbyte.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_specialtypecodes_charint.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_specialtypecodes_methdef.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_specialtypecodes_nsbool.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_specialtypecodes_struct.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_specialtypecodes_unichar.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_structpointer.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_synthesize.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_transform_integration.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_varargs.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_version_support.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/PyObjCTest/test_voidpointer.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/README.txt +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Tools/MANIFEST.in +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Tools/comparebench.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Tools/gen_archive.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Tools/results/pyobjcbench-7.3.txt +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Tools/results/pyobjcbench-8.0b1.txt +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Tools/results/pyobjcbench-8.0b2.txt +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Tools/runtests-with-nuitka.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/Tools/runtests.py +0 -0
- {pyobjc_core-10.3.2 → pyobjc_core-11.1}/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)
|