├── .gitattributes ├── .gitignore ├── README.md ├── hello └── com.github.erikng.hello.json ├── installapplications ├── demo.json ├── demo_depnotify.json ├── generatejson.py ├── generatejson_provision_demo.sh ├── generatejson_provision_demo_depnotify.sh ├── pkgs │ ├── DEPNotify-1.1.6.pkg │ ├── dockutil-3.0.pkg │ ├── hello-0.0.2.06172021203518.pkg │ ├── munkitools_core-5.5.0.4360.pkg │ ├── munkitools_launchd-3.0.3265.pkg │ └── munkitools_python-3.9.5.4361.pkg └── scripts │ ├── root │ ├── bless_vm.py │ ├── caffeinate.py │ ├── depnotify_customization.py │ ├── depnotify_end.py │ ├── munki_auto_trigger.py │ ├── munki_bootstrap.py │ ├── munki_launchd_loader.py │ └── preflight.py │ └── user │ ├── depnotify_user_launcher.py │ ├── dockutil.py │ └── hello_user_launcher.py ├── munki ├── catalogs │ ├── all │ └── production ├── icons │ ├── GoogleChrome.png │ ├── Munki.png │ └── _icon_hashes.plist ├── manifests │ ├── depdemo │ └── production ├── pkgs │ ├── apps │ │ ├── GoogleChrome-91.0.4472.114.dmg │ │ └── crypt-4.0.208.pkg │ └── munkitools │ │ ├── munkitools_admin-5.5.0.4360.pkg │ │ ├── munkitools_app-5.4.0.4362.pkg │ │ ├── munkitools_app_usage-5.5.0.4360.pkg │ │ ├── munkitools_core-5.5.0.4360.pkg │ │ ├── munkitools_launchd-3.0.3265.pkg │ │ └── munkitools_python-3.9.5.4361.pkg └── pkgsinfo │ ├── apps │ ├── GoogleChrome-91.0.4472.114.plist │ └── crypt-4.0.208.plist │ └── munkitools │ ├── munkitools-5.4.0.4362.plist │ ├── munkitools_admin-5.5.0.4360.plist │ ├── munkitools_app_usage-5.5.0.4360.plist │ ├── munkitools_core-5.5.0.4360.plist │ ├── munkitools_launchd-3.0.3265.plist │ └── munkitools_python-3.9.5.4361.plist └── munkipkg ├── dockutil ├── .gitignore ├── build-info.json └── payload │ └── Library │ └── installapplications │ └── dockutil └── installapplications ├── .gitignore ├── build-info.json ├── payload └── Library │ ├── LaunchAgents │ └── com.erikng.installapplications.plist │ ├── LaunchDaemons │ └── com.erikng.installapplications.plist │ └── installapplications │ ├── Python.framework │ ├── Headers │ ├── Python │ ├── Resources │ └── Versions │ │ ├── 3.9 │ │ ├── Headers │ │ ├── Python │ │ ├── Resources │ │ │ ├── Info.plist │ │ │ └── Python.app │ │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── Python │ │ │ │ ├── PkgInfo │ │ │ │ ├── Resources │ │ │ │ ├── PythonApplet.icns │ │ │ │ └── PythonInterpreter.icns │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ ├── _CodeSignature │ │ │ └── CodeResources │ │ ├── bin │ │ │ ├── 2to3 │ │ │ ├── 2to3-3.9 │ │ │ ├── easy_install-3.9 │ │ │ ├── idle3 │ │ │ ├── idle3.9 │ │ │ ├── pip │ │ │ ├── pip3 │ │ │ ├── pip3.9 │ │ │ ├── pydoc3 │ │ │ ├── pydoc3.9 │ │ │ ├── python3 │ │ │ ├── python3-config │ │ │ ├── python3.9 │ │ │ ├── python3.9-config │ │ │ ├── wheel │ │ │ └── xattr │ │ ├── include │ │ │ └── python3.9 │ │ │ │ ├── Python-ast.h │ │ │ │ ├── Python.h │ │ │ │ ├── abstract.h │ │ │ │ ├── asdl.h │ │ │ │ ├── ast.h │ │ │ │ ├── bitset.h │ │ │ │ ├── bltinmodule.h │ │ │ │ ├── boolobject.h │ │ │ │ ├── bytearrayobject.h │ │ │ │ ├── bytesobject.h │ │ │ │ ├── cellobject.h │ │ │ │ ├── ceval.h │ │ │ │ ├── classobject.h │ │ │ │ ├── code.h │ │ │ │ ├── codecs.h │ │ │ │ ├── compile.h │ │ │ │ ├── complexobject.h │ │ │ │ ├── context.h │ │ │ │ ├── cpython │ │ │ │ ├── abstract.h │ │ │ │ ├── bytearrayobject.h │ │ │ │ ├── bytesobject.h │ │ │ │ ├── ceval.h │ │ │ │ ├── code.h │ │ │ │ ├── dictobject.h │ │ │ │ ├── fileobject.h │ │ │ │ ├── fileutils.h │ │ │ │ ├── frameobject.h │ │ │ │ ├── import.h │ │ │ │ ├── initconfig.h │ │ │ │ ├── interpreteridobject.h │ │ │ │ ├── listobject.h │ │ │ │ ├── methodobject.h │ │ │ │ ├── object.h │ │ │ │ ├── objimpl.h │ │ │ │ ├── pyerrors.h │ │ │ │ ├── pylifecycle.h │ │ │ │ ├── pymem.h │ │ │ │ ├── pystate.h │ │ │ │ ├── sysmodule.h │ │ │ │ ├── traceback.h │ │ │ │ ├── tupleobject.h │ │ │ │ └── unicodeobject.h │ │ │ │ ├── datetime.h │ │ │ │ ├── descrobject.h │ │ │ │ ├── dictobject.h │ │ │ │ ├── dynamic_annotations.h │ │ │ │ ├── enumobject.h │ │ │ │ ├── errcode.h │ │ │ │ ├── eval.h │ │ │ │ ├── exports.h │ │ │ │ ├── fileobject.h │ │ │ │ ├── fileutils.h │ │ │ │ ├── floatobject.h │ │ │ │ ├── frameobject.h │ │ │ │ ├── funcobject.h │ │ │ │ ├── genericaliasobject.h │ │ │ │ ├── genobject.h │ │ │ │ ├── graminit.h │ │ │ │ ├── grammar.h │ │ │ │ ├── import.h │ │ │ │ ├── internal │ │ │ │ ├── pegen_interface.h │ │ │ │ ├── pycore_abstract.h │ │ │ │ ├── pycore_accu.h │ │ │ │ ├── pycore_atomic.h │ │ │ │ ├── pycore_bytes_methods.h │ │ │ │ ├── pycore_byteswap.h │ │ │ │ ├── pycore_call.h │ │ │ │ ├── pycore_ceval.h │ │ │ │ ├── pycore_code.h │ │ │ │ ├── pycore_condvar.h │ │ │ │ ├── pycore_context.h │ │ │ │ ├── pycore_dtoa.h │ │ │ │ ├── pycore_fileutils.h │ │ │ │ ├── pycore_gc.h │ │ │ │ ├── pycore_getopt.h │ │ │ │ ├── pycore_gil.h │ │ │ │ ├── pycore_hamt.h │ │ │ │ ├── pycore_hashtable.h │ │ │ │ ├── pycore_import.h │ │ │ │ ├── pycore_initconfig.h │ │ │ │ ├── pycore_interp.h │ │ │ │ ├── pycore_object.h │ │ │ │ ├── pycore_pathconfig.h │ │ │ │ ├── pycore_pyerrors.h │ │ │ │ ├── pycore_pyhash.h │ │ │ │ ├── pycore_pylifecycle.h │ │ │ │ ├── pycore_pymem.h │ │ │ │ ├── pycore_pystate.h │ │ │ │ ├── pycore_runtime.h │ │ │ │ ├── pycore_sysmodule.h │ │ │ │ ├── pycore_traceback.h │ │ │ │ ├── pycore_tupleobject.h │ │ │ │ └── pycore_warnings.h │ │ │ │ ├── interpreteridobject.h │ │ │ │ ├── intrcheck.h │ │ │ │ ├── iterobject.h │ │ │ │ ├── listobject.h │ │ │ │ ├── longintrepr.h │ │ │ │ ├── longobject.h │ │ │ │ ├── marshal.h │ │ │ │ ├── memoryobject.h │ │ │ │ ├── methodobject.h │ │ │ │ ├── modsupport.h │ │ │ │ ├── moduleobject.h │ │ │ │ ├── namespaceobject.h │ │ │ │ ├── node.h │ │ │ │ ├── object.h │ │ │ │ ├── objimpl.h │ │ │ │ ├── odictobject.h │ │ │ │ ├── opcode.h │ │ │ │ ├── osdefs.h │ │ │ │ ├── osmodule.h │ │ │ │ ├── parsetok.h │ │ │ │ ├── patchlevel.h │ │ │ │ ├── picklebufobject.h │ │ │ │ ├── py_curses.h │ │ │ │ ├── pyarena.h │ │ │ │ ├── pycapsule.h │ │ │ │ ├── pyconfig.h │ │ │ │ ├── pyctype.h │ │ │ │ ├── pydebug.h │ │ │ │ ├── pydtrace.h │ │ │ │ ├── pyerrors.h │ │ │ │ ├── pyexpat.h │ │ │ │ ├── pyfpe.h │ │ │ │ ├── pyframe.h │ │ │ │ ├── pyhash.h │ │ │ │ ├── pylifecycle.h │ │ │ │ ├── pymacconfig.h │ │ │ │ ├── pymacro.h │ │ │ │ ├── pymath.h │ │ │ │ ├── pymem.h │ │ │ │ ├── pyport.h │ │ │ │ ├── pystate.h │ │ │ │ ├── pystrcmp.h │ │ │ │ ├── pystrhex.h │ │ │ │ ├── pystrtod.h │ │ │ │ ├── pythonrun.h │ │ │ │ ├── pythread.h │ │ │ │ ├── pytime.h │ │ │ │ ├── rangeobject.h │ │ │ │ ├── setobject.h │ │ │ │ ├── sliceobject.h │ │ │ │ ├── structmember.h │ │ │ │ ├── structseq.h │ │ │ │ ├── symtable.h │ │ │ │ ├── sysmodule.h │ │ │ │ ├── token.h │ │ │ │ ├── traceback.h │ │ │ │ ├── tracemalloc.h │ │ │ │ ├── tupleobject.h │ │ │ │ ├── typeslots.h │ │ │ │ ├── ucnhash.h │ │ │ │ ├── unicodeobject.h │ │ │ │ ├── warnings.h │ │ │ │ └── weakrefobject.h │ │ ├── lib │ │ │ ├── Tk.icns │ │ │ ├── Tk.tiff │ │ │ ├── itcl4.2.0 │ │ │ │ ├── itcl.tcl │ │ │ │ ├── itclConfig.sh │ │ │ │ ├── itclHullCmds.tcl │ │ │ │ ├── itclWidget.tcl │ │ │ │ ├── libitclstub4.2.0.a │ │ │ │ └── pkgIndex.tcl │ │ │ ├── libcrypto.1.1.dylib │ │ │ ├── libcrypto.dylib │ │ │ ├── libformw.5.dylib │ │ │ ├── libformw.dylib │ │ │ ├── libmenuw.5.dylib │ │ │ ├── libmenuw.dylib │ │ │ ├── libncursesw.5.dylib │ │ │ ├── libncursesw.dylib │ │ │ ├── libpanelw.5.dylib │ │ │ ├── libpanelw.dylib │ │ │ ├── libpython3.9.dylib │ │ │ ├── libssl.1.1.dylib │ │ │ ├── libssl.dylib │ │ │ ├── libtcl8.6.dylib │ │ │ ├── libtclstub8.6.a │ │ │ ├── libtk8.6.dylib │ │ │ ├── libtkstub8.6.a │ │ │ ├── pkgconfig │ │ │ │ ├── python-3.9-embed.pc │ │ │ │ ├── python-3.9.pc │ │ │ │ ├── python3-embed.pc │ │ │ │ ├── python3.pc │ │ │ │ ├── tcl.pc │ │ │ │ └── tk.pc │ │ │ ├── python3.9 │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── __future__.py │ │ │ │ ├── __phello__.foo.py │ │ │ │ ├── _aix_support.py │ │ │ │ ├── _bootlocale.py │ │ │ │ ├── _bootsubprocess.py │ │ │ │ ├── _collections_abc.py │ │ │ │ ├── _compat_pickle.py │ │ │ │ ├── _compression.py │ │ │ │ ├── _markupbase.py │ │ │ │ ├── _osx_support.py │ │ │ │ ├── _py_abc.py │ │ │ │ ├── _pydecimal.py │ │ │ │ ├── _pyio.py │ │ │ │ ├── _sitebuiltins.py │ │ │ │ ├── _strptime.py │ │ │ │ ├── _sysconfigdata__darwin_darwin.py │ │ │ │ ├── _threading_local.py │ │ │ │ ├── _weakrefset.py │ │ │ │ ├── abc.py │ │ │ │ ├── aifc.py │ │ │ │ ├── antigravity.py │ │ │ │ ├── argparse.py │ │ │ │ ├── ast.py │ │ │ │ ├── asynchat.py │ │ │ │ ├── asyncio │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── base_events.py │ │ │ │ │ ├── base_futures.py │ │ │ │ │ ├── base_subprocess.py │ │ │ │ │ ├── base_tasks.py │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── coroutines.py │ │ │ │ │ ├── events.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── format_helpers.py │ │ │ │ │ ├── futures.py │ │ │ │ │ ├── locks.py │ │ │ │ │ ├── log.py │ │ │ │ │ ├── proactor_events.py │ │ │ │ │ ├── protocols.py │ │ │ │ │ ├── queues.py │ │ │ │ │ ├── runners.py │ │ │ │ │ ├── selector_events.py │ │ │ │ │ ├── sslproto.py │ │ │ │ │ ├── staggered.py │ │ │ │ │ ├── streams.py │ │ │ │ │ ├── subprocess.py │ │ │ │ │ ├── tasks.py │ │ │ │ │ ├── threads.py │ │ │ │ │ ├── transports.py │ │ │ │ │ ├── trsock.py │ │ │ │ │ ├── unix_events.py │ │ │ │ │ ├── windows_events.py │ │ │ │ │ └── windows_utils.py │ │ │ │ ├── asyncore.py │ │ │ │ ├── base64.py │ │ │ │ ├── bdb.py │ │ │ │ ├── binhex.py │ │ │ │ ├── bisect.py │ │ │ │ ├── bz2.py │ │ │ │ ├── cProfile.py │ │ │ │ ├── calendar.py │ │ │ │ ├── cgi.py │ │ │ │ ├── cgitb.py │ │ │ │ ├── chunk.py │ │ │ │ ├── cmd.py │ │ │ │ ├── code.py │ │ │ │ ├── codecs.py │ │ │ │ ├── codeop.py │ │ │ │ ├── collections │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── abc.py │ │ │ │ ├── colorsys.py │ │ │ │ ├── compileall.py │ │ │ │ ├── concurrent │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── futures │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _base.py │ │ │ │ │ │ ├── process.py │ │ │ │ │ │ └── thread.py │ │ │ │ ├── config-3.9-darwin │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Setup │ │ │ │ │ ├── Setup.local │ │ │ │ │ ├── config.c │ │ │ │ │ ├── config.c.in │ │ │ │ │ ├── install-sh │ │ │ │ │ ├── libpython3.9.a │ │ │ │ │ ├── libpython3.9.dylib │ │ │ │ │ ├── makesetup │ │ │ │ │ ├── python-config.py │ │ │ │ │ └── python.o │ │ │ │ ├── configparser.py │ │ │ │ ├── contextlib.py │ │ │ │ ├── contextvars.py │ │ │ │ ├── copy.py │ │ │ │ ├── copyreg.py │ │ │ │ ├── crypt.py │ │ │ │ ├── csv.py │ │ │ │ ├── ctypes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _aix.py │ │ │ │ │ ├── _endian.py │ │ │ │ │ ├── macholib │ │ │ │ │ │ ├── README.ctypes │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── dyld.py │ │ │ │ │ │ ├── dylib.py │ │ │ │ │ │ ├── fetch_macholib │ │ │ │ │ │ ├── fetch_macholib.bat │ │ │ │ │ │ └── framework.py │ │ │ │ │ ├── test │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ ├── test_anon.py │ │ │ │ │ │ ├── test_array_in_pointer.py │ │ │ │ │ │ ├── test_arrays.py │ │ │ │ │ │ ├── test_as_parameter.py │ │ │ │ │ │ ├── test_bitfields.py │ │ │ │ │ │ ├── test_buffers.py │ │ │ │ │ │ ├── test_bytes.py │ │ │ │ │ │ ├── test_byteswap.py │ │ │ │ │ │ ├── test_callbacks.py │ │ │ │ │ │ ├── test_cast.py │ │ │ │ │ │ ├── test_cfuncs.py │ │ │ │ │ │ ├── test_checkretval.py │ │ │ │ │ │ ├── test_delattr.py │ │ │ │ │ │ ├── test_errno.py │ │ │ │ │ │ ├── test_find.py │ │ │ │ │ │ ├── test_frombuffer.py │ │ │ │ │ │ ├── test_funcptr.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_incomplete.py │ │ │ │ │ │ ├── test_init.py │ │ │ │ │ │ ├── test_internals.py │ │ │ │ │ │ ├── test_keeprefs.py │ │ │ │ │ │ ├── test_libc.py │ │ │ │ │ │ ├── test_loading.py │ │ │ │ │ │ ├── test_macholib.py │ │ │ │ │ │ ├── test_memfunctions.py │ │ │ │ │ │ ├── test_numbers.py │ │ │ │ │ │ ├── test_objects.py │ │ │ │ │ │ ├── test_parameters.py │ │ │ │ │ │ ├── test_pep3118.py │ │ │ │ │ │ ├── test_pickling.py │ │ │ │ │ │ ├── test_pointers.py │ │ │ │ │ │ ├── test_prototypes.py │ │ │ │ │ │ ├── test_python_api.py │ │ │ │ │ │ ├── test_random_things.py │ │ │ │ │ │ ├── test_refcounts.py │ │ │ │ │ │ ├── test_repr.py │ │ │ │ │ │ ├── test_returnfuncptrs.py │ │ │ │ │ │ ├── test_simplesubclasses.py │ │ │ │ │ │ ├── test_sizes.py │ │ │ │ │ │ ├── test_slicing.py │ │ │ │ │ │ ├── test_stringptr.py │ │ │ │ │ │ ├── test_strings.py │ │ │ │ │ │ ├── test_struct_fields.py │ │ │ │ │ │ ├── test_structures.py │ │ │ │ │ │ ├── test_unaligned_structures.py │ │ │ │ │ │ ├── test_unicode.py │ │ │ │ │ │ ├── test_values.py │ │ │ │ │ │ ├── test_varsize_struct.py │ │ │ │ │ │ ├── test_win32.py │ │ │ │ │ │ └── test_wintypes.py │ │ │ │ │ ├── util.py │ │ │ │ │ └── wintypes.py │ │ │ │ ├── curses │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ascii.py │ │ │ │ │ ├── has_key.py │ │ │ │ │ ├── panel.py │ │ │ │ │ └── textpad.py │ │ │ │ ├── dataclasses.py │ │ │ │ ├── datetime.py │ │ │ │ ├── dbm │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── dumb.py │ │ │ │ │ ├── gnu.py │ │ │ │ │ └── ndbm.py │ │ │ │ ├── decimal.py │ │ │ │ ├── difflib.py │ │ │ │ ├── dis.py │ │ │ │ ├── distutils │ │ │ │ │ ├── README │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _msvccompiler.py │ │ │ │ │ ├── archive_util.py │ │ │ │ │ ├── bcppcompiler.py │ │ │ │ │ ├── ccompiler.py │ │ │ │ │ ├── cmd.py │ │ │ │ │ ├── command │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── bdist.py │ │ │ │ │ │ ├── bdist_dumb.py │ │ │ │ │ │ ├── bdist_msi.py │ │ │ │ │ │ ├── bdist_rpm.py │ │ │ │ │ │ ├── bdist_wininst.py │ │ │ │ │ │ ├── build.py │ │ │ │ │ │ ├── build_clib.py │ │ │ │ │ │ ├── build_ext.py │ │ │ │ │ │ ├── build_py.py │ │ │ │ │ │ ├── build_scripts.py │ │ │ │ │ │ ├── check.py │ │ │ │ │ │ ├── clean.py │ │ │ │ │ │ ├── command_template │ │ │ │ │ │ ├── config.py │ │ │ │ │ │ ├── install.py │ │ │ │ │ │ ├── install_data.py │ │ │ │ │ │ ├── install_egg_info.py │ │ │ │ │ │ ├── install_headers.py │ │ │ │ │ │ ├── install_lib.py │ │ │ │ │ │ ├── install_scripts.py │ │ │ │ │ │ ├── register.py │ │ │ │ │ │ ├── sdist.py │ │ │ │ │ │ └── upload.py │ │ │ │ │ ├── config.py │ │ │ │ │ ├── core.py │ │ │ │ │ ├── cygwinccompiler.py │ │ │ │ │ ├── debug.py │ │ │ │ │ ├── dep_util.py │ │ │ │ │ ├── dir_util.py │ │ │ │ │ ├── dist.py │ │ │ │ │ ├── errors.py │ │ │ │ │ ├── extension.py │ │ │ │ │ ├── fancy_getopt.py │ │ │ │ │ ├── file_util.py │ │ │ │ │ ├── filelist.py │ │ │ │ │ ├── log.py │ │ │ │ │ ├── msvc9compiler.py │ │ │ │ │ ├── msvccompiler.py │ │ │ │ │ ├── spawn.py │ │ │ │ │ ├── sysconfig.py │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── Setup.sample │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── includetest.rst │ │ │ │ │ │ ├── support.py │ │ │ │ │ │ ├── test_archive_util.py │ │ │ │ │ │ ├── test_bdist.py │ │ │ │ │ │ ├── test_bdist_dumb.py │ │ │ │ │ │ ├── test_bdist_msi.py │ │ │ │ │ │ ├── test_bdist_rpm.py │ │ │ │ │ │ ├── test_bdist_wininst.py │ │ │ │ │ │ ├── test_build.py │ │ │ │ │ │ ├── test_build_clib.py │ │ │ │ │ │ ├── test_build_ext.py │ │ │ │ │ │ ├── test_build_py.py │ │ │ │ │ │ ├── test_build_scripts.py │ │ │ │ │ │ ├── test_check.py │ │ │ │ │ │ ├── test_clean.py │ │ │ │ │ │ ├── test_cmd.py │ │ │ │ │ │ ├── test_config.py │ │ │ │ │ │ ├── test_config_cmd.py │ │ │ │ │ │ ├── test_core.py │ │ │ │ │ │ ├── test_cygwinccompiler.py │ │ │ │ │ │ ├── test_dep_util.py │ │ │ │ │ │ ├── test_dir_util.py │ │ │ │ │ │ ├── test_dist.py │ │ │ │ │ │ ├── test_extension.py │ │ │ │ │ │ ├── test_file_util.py │ │ │ │ │ │ ├── test_filelist.py │ │ │ │ │ │ ├── test_install.py │ │ │ │ │ │ ├── test_install_data.py │ │ │ │ │ │ ├── test_install_headers.py │ │ │ │ │ │ ├── test_install_lib.py │ │ │ │ │ │ ├── test_install_scripts.py │ │ │ │ │ │ ├── test_log.py │ │ │ │ │ │ ├── test_msvc9compiler.py │ │ │ │ │ │ ├── test_msvccompiler.py │ │ │ │ │ │ ├── test_register.py │ │ │ │ │ │ ├── test_sdist.py │ │ │ │ │ │ ├── test_spawn.py │ │ │ │ │ │ ├── test_sysconfig.py │ │ │ │ │ │ ├── test_text_file.py │ │ │ │ │ │ ├── test_unixccompiler.py │ │ │ │ │ │ ├── test_upload.py │ │ │ │ │ │ ├── test_util.py │ │ │ │ │ │ ├── test_version.py │ │ │ │ │ │ ├── test_versionpredicate.py │ │ │ │ │ │ └── xxmodule.c │ │ │ │ │ ├── text_file.py │ │ │ │ │ ├── unixccompiler.py │ │ │ │ │ ├── util.py │ │ │ │ │ ├── version.py │ │ │ │ │ └── versionpredicate.py │ │ │ │ ├── doctest.py │ │ │ │ ├── email │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _encoded_words.py │ │ │ │ │ ├── _header_value_parser.py │ │ │ │ │ ├── _parseaddr.py │ │ │ │ │ ├── _policybase.py │ │ │ │ │ ├── architecture.rst │ │ │ │ │ ├── base64mime.py │ │ │ │ │ ├── charset.py │ │ │ │ │ ├── contentmanager.py │ │ │ │ │ ├── encoders.py │ │ │ │ │ ├── errors.py │ │ │ │ │ ├── feedparser.py │ │ │ │ │ ├── generator.py │ │ │ │ │ ├── header.py │ │ │ │ │ ├── headerregistry.py │ │ │ │ │ ├── iterators.py │ │ │ │ │ ├── message.py │ │ │ │ │ ├── mime │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── application.py │ │ │ │ │ │ ├── audio.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── image.py │ │ │ │ │ │ ├── message.py │ │ │ │ │ │ ├── multipart.py │ │ │ │ │ │ ├── nonmultipart.py │ │ │ │ │ │ └── text.py │ │ │ │ │ ├── parser.py │ │ │ │ │ ├── policy.py │ │ │ │ │ ├── quoprimime.py │ │ │ │ │ └── utils.py │ │ │ │ ├── encodings │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── aliases.py │ │ │ │ │ ├── ascii.py │ │ │ │ │ ├── base64_codec.py │ │ │ │ │ ├── big5.py │ │ │ │ │ ├── big5hkscs.py │ │ │ │ │ ├── bz2_codec.py │ │ │ │ │ ├── charmap.py │ │ │ │ │ ├── cp037.py │ │ │ │ │ ├── cp1006.py │ │ │ │ │ ├── cp1026.py │ │ │ │ │ ├── cp1125.py │ │ │ │ │ ├── cp1140.py │ │ │ │ │ ├── cp1250.py │ │ │ │ │ ├── cp1251.py │ │ │ │ │ ├── cp1252.py │ │ │ │ │ ├── cp1253.py │ │ │ │ │ ├── cp1254.py │ │ │ │ │ ├── cp1255.py │ │ │ │ │ ├── cp1256.py │ │ │ │ │ ├── cp1257.py │ │ │ │ │ ├── cp1258.py │ │ │ │ │ ├── cp273.py │ │ │ │ │ ├── cp424.py │ │ │ │ │ ├── cp437.py │ │ │ │ │ ├── cp500.py │ │ │ │ │ ├── cp720.py │ │ │ │ │ ├── cp737.py │ │ │ │ │ ├── cp775.py │ │ │ │ │ ├── cp850.py │ │ │ │ │ ├── cp852.py │ │ │ │ │ ├── cp855.py │ │ │ │ │ ├── cp856.py │ │ │ │ │ ├── cp857.py │ │ │ │ │ ├── cp858.py │ │ │ │ │ ├── cp860.py │ │ │ │ │ ├── cp861.py │ │ │ │ │ ├── cp862.py │ │ │ │ │ ├── cp863.py │ │ │ │ │ ├── cp864.py │ │ │ │ │ ├── cp865.py │ │ │ │ │ ├── cp866.py │ │ │ │ │ ├── cp869.py │ │ │ │ │ ├── cp874.py │ │ │ │ │ ├── cp875.py │ │ │ │ │ ├── cp932.py │ │ │ │ │ ├── cp949.py │ │ │ │ │ ├── cp950.py │ │ │ │ │ ├── euc_jis_2004.py │ │ │ │ │ ├── euc_jisx0213.py │ │ │ │ │ ├── euc_jp.py │ │ │ │ │ ├── euc_kr.py │ │ │ │ │ ├── gb18030.py │ │ │ │ │ ├── gb2312.py │ │ │ │ │ ├── gbk.py │ │ │ │ │ ├── hex_codec.py │ │ │ │ │ ├── hp_roman8.py │ │ │ │ │ ├── hz.py │ │ │ │ │ ├── idna.py │ │ │ │ │ ├── iso2022_jp.py │ │ │ │ │ ├── iso2022_jp_1.py │ │ │ │ │ ├── iso2022_jp_2.py │ │ │ │ │ ├── iso2022_jp_2004.py │ │ │ │ │ ├── iso2022_jp_3.py │ │ │ │ │ ├── iso2022_jp_ext.py │ │ │ │ │ ├── iso2022_kr.py │ │ │ │ │ ├── iso8859_1.py │ │ │ │ │ ├── iso8859_10.py │ │ │ │ │ ├── iso8859_11.py │ │ │ │ │ ├── iso8859_13.py │ │ │ │ │ ├── iso8859_14.py │ │ │ │ │ ├── iso8859_15.py │ │ │ │ │ ├── iso8859_16.py │ │ │ │ │ ├── iso8859_2.py │ │ │ │ │ ├── iso8859_3.py │ │ │ │ │ ├── iso8859_4.py │ │ │ │ │ ├── iso8859_5.py │ │ │ │ │ ├── iso8859_6.py │ │ │ │ │ ├── iso8859_7.py │ │ │ │ │ ├── iso8859_8.py │ │ │ │ │ ├── iso8859_9.py │ │ │ │ │ ├── johab.py │ │ │ │ │ ├── koi8_r.py │ │ │ │ │ ├── koi8_t.py │ │ │ │ │ ├── koi8_u.py │ │ │ │ │ ├── kz1048.py │ │ │ │ │ ├── latin_1.py │ │ │ │ │ ├── mac_arabic.py │ │ │ │ │ ├── mac_croatian.py │ │ │ │ │ ├── mac_cyrillic.py │ │ │ │ │ ├── mac_farsi.py │ │ │ │ │ ├── mac_greek.py │ │ │ │ │ ├── mac_iceland.py │ │ │ │ │ ├── mac_latin2.py │ │ │ │ │ ├── mac_roman.py │ │ │ │ │ ├── mac_romanian.py │ │ │ │ │ ├── mac_turkish.py │ │ │ │ │ ├── mbcs.py │ │ │ │ │ ├── oem.py │ │ │ │ │ ├── palmos.py │ │ │ │ │ ├── ptcp154.py │ │ │ │ │ ├── punycode.py │ │ │ │ │ ├── quopri_codec.py │ │ │ │ │ ├── raw_unicode_escape.py │ │ │ │ │ ├── rot_13.py │ │ │ │ │ ├── shift_jis.py │ │ │ │ │ ├── shift_jis_2004.py │ │ │ │ │ ├── shift_jisx0213.py │ │ │ │ │ ├── tis_620.py │ │ │ │ │ ├── undefined.py │ │ │ │ │ ├── unicode_escape.py │ │ │ │ │ ├── utf_16.py │ │ │ │ │ ├── utf_16_be.py │ │ │ │ │ ├── utf_16_le.py │ │ │ │ │ ├── utf_32.py │ │ │ │ │ ├── utf_32_be.py │ │ │ │ │ ├── utf_32_le.py │ │ │ │ │ ├── utf_7.py │ │ │ │ │ ├── utf_8.py │ │ │ │ │ ├── utf_8_sig.py │ │ │ │ │ ├── uu_codec.py │ │ │ │ │ └── zlib_codec.py │ │ │ │ ├── ensurepip │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── _bundled │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── pip-20.2.3-py2.py3-none-any.whl │ │ │ │ │ │ └── setuptools-49.2.1-py3-none-any.whl │ │ │ │ │ └── _uninstall.py │ │ │ │ ├── enum.py │ │ │ │ ├── filecmp.py │ │ │ │ ├── fileinput.py │ │ │ │ ├── fnmatch.py │ │ │ │ ├── formatter.py │ │ │ │ ├── fractions.py │ │ │ │ ├── ftplib.py │ │ │ │ ├── functools.py │ │ │ │ ├── genericpath.py │ │ │ │ ├── getopt.py │ │ │ │ ├── getpass.py │ │ │ │ ├── gettext.py │ │ │ │ ├── glob.py │ │ │ │ ├── graphlib.py │ │ │ │ ├── gzip.py │ │ │ │ ├── hashlib.py │ │ │ │ ├── heapq.py │ │ │ │ ├── hmac.py │ │ │ │ ├── html │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── entities.py │ │ │ │ │ └── parser.py │ │ │ │ ├── http │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── cookiejar.py │ │ │ │ │ ├── cookies.py │ │ │ │ │ └── server.py │ │ │ │ ├── idlelib │ │ │ │ │ ├── CREDITS.txt │ │ │ │ │ ├── ChangeLog │ │ │ │ │ ├── HISTORY.txt │ │ │ │ │ ├── Icons │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── folder.gif │ │ │ │ │ │ ├── idle.ico │ │ │ │ │ │ ├── idle_16.gif │ │ │ │ │ │ ├── idle_16.png │ │ │ │ │ │ ├── idle_256.png │ │ │ │ │ │ ├── idle_32.gif │ │ │ │ │ │ ├── idle_32.png │ │ │ │ │ │ ├── idle_48.gif │ │ │ │ │ │ ├── idle_48.png │ │ │ │ │ │ ├── minusnode.gif │ │ │ │ │ │ ├── openfolder.gif │ │ │ │ │ │ ├── plusnode.gif │ │ │ │ │ │ ├── python.gif │ │ │ │ │ │ └── tk.gif │ │ │ │ │ ├── NEWS.txt │ │ │ │ │ ├── NEWS2x.txt │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── TODO.txt │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── autocomplete.py │ │ │ │ │ ├── autocomplete_w.py │ │ │ │ │ ├── autoexpand.py │ │ │ │ │ ├── browser.py │ │ │ │ │ ├── calltip.py │ │ │ │ │ ├── calltip_w.py │ │ │ │ │ ├── codecontext.py │ │ │ │ │ ├── colorizer.py │ │ │ │ │ ├── config-extensions.def │ │ │ │ │ ├── config-highlight.def │ │ │ │ │ ├── config-keys.def │ │ │ │ │ ├── config-main.def │ │ │ │ │ ├── config.py │ │ │ │ │ ├── config_key.py │ │ │ │ │ ├── configdialog.py │ │ │ │ │ ├── debugger.py │ │ │ │ │ ├── debugger_r.py │ │ │ │ │ ├── debugobj.py │ │ │ │ │ ├── debugobj_r.py │ │ │ │ │ ├── delegator.py │ │ │ │ │ ├── dynoption.py │ │ │ │ │ ├── editor.py │ │ │ │ │ ├── extend.txt │ │ │ │ │ ├── filelist.py │ │ │ │ │ ├── format.py │ │ │ │ │ ├── grep.py │ │ │ │ │ ├── help.html │ │ │ │ │ ├── help.py │ │ │ │ │ ├── help_about.py │ │ │ │ │ ├── history.py │ │ │ │ │ ├── hyperparser.py │ │ │ │ │ ├── idle.bat │ │ │ │ │ ├── idle.py │ │ │ │ │ ├── idle.pyw │ │ │ │ │ ├── idle_test │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── htest.py │ │ │ │ │ │ ├── mock_idle.py │ │ │ │ │ │ ├── mock_tk.py │ │ │ │ │ │ ├── template.py │ │ │ │ │ │ ├── test_autocomplete.py │ │ │ │ │ │ ├── test_autocomplete_w.py │ │ │ │ │ │ ├── test_autoexpand.py │ │ │ │ │ │ ├── test_browser.py │ │ │ │ │ │ ├── test_calltip.py │ │ │ │ │ │ ├── test_calltip_w.py │ │ │ │ │ │ ├── test_codecontext.py │ │ │ │ │ │ ├── test_colorizer.py │ │ │ │ │ │ ├── test_config.py │ │ │ │ │ │ ├── test_config_key.py │ │ │ │ │ │ ├── test_configdialog.py │ │ │ │ │ │ ├── test_debugger.py │ │ │ │ │ │ ├── test_debugger_r.py │ │ │ │ │ │ ├── test_debugobj.py │ │ │ │ │ │ ├── test_debugobj_r.py │ │ │ │ │ │ ├── test_delegator.py │ │ │ │ │ │ ├── test_editmenu.py │ │ │ │ │ │ ├── test_editor.py │ │ │ │ │ │ ├── test_filelist.py │ │ │ │ │ │ ├── test_format.py │ │ │ │ │ │ ├── test_grep.py │ │ │ │ │ │ ├── test_help.py │ │ │ │ │ │ ├── test_help_about.py │ │ │ │ │ │ ├── test_history.py │ │ │ │ │ │ ├── test_hyperparser.py │ │ │ │ │ │ ├── test_iomenu.py │ │ │ │ │ │ ├── test_macosx.py │ │ │ │ │ │ ├── test_mainmenu.py │ │ │ │ │ │ ├── test_multicall.py │ │ │ │ │ │ ├── test_outwin.py │ │ │ │ │ │ ├── test_parenmatch.py │ │ │ │ │ │ ├── test_pathbrowser.py │ │ │ │ │ │ ├── test_percolator.py │ │ │ │ │ │ ├── test_pyparse.py │ │ │ │ │ │ ├── test_pyshell.py │ │ │ │ │ │ ├── test_query.py │ │ │ │ │ │ ├── test_redirector.py │ │ │ │ │ │ ├── test_replace.py │ │ │ │ │ │ ├── test_rpc.py │ │ │ │ │ │ ├── test_run.py │ │ │ │ │ │ ├── test_runscript.py │ │ │ │ │ │ ├── test_scrolledlist.py │ │ │ │ │ │ ├── test_search.py │ │ │ │ │ │ ├── test_searchbase.py │ │ │ │ │ │ ├── test_searchengine.py │ │ │ │ │ │ ├── test_sidebar.py │ │ │ │ │ │ ├── test_squeezer.py │ │ │ │ │ │ ├── test_stackviewer.py │ │ │ │ │ │ ├── test_statusbar.py │ │ │ │ │ │ ├── test_text.py │ │ │ │ │ │ ├── test_textview.py │ │ │ │ │ │ ├── test_tooltip.py │ │ │ │ │ │ ├── test_tree.py │ │ │ │ │ │ ├── test_undo.py │ │ │ │ │ │ ├── test_warning.py │ │ │ │ │ │ ├── test_window.py │ │ │ │ │ │ └── test_zoomheight.py │ │ │ │ │ ├── iomenu.py │ │ │ │ │ ├── macosx.py │ │ │ │ │ ├── mainmenu.py │ │ │ │ │ ├── multicall.py │ │ │ │ │ ├── outwin.py │ │ │ │ │ ├── parenmatch.py │ │ │ │ │ ├── pathbrowser.py │ │ │ │ │ ├── percolator.py │ │ │ │ │ ├── pyparse.py │ │ │ │ │ ├── pyshell.py │ │ │ │ │ ├── query.py │ │ │ │ │ ├── redirector.py │ │ │ │ │ ├── replace.py │ │ │ │ │ ├── rpc.py │ │ │ │ │ ├── run.py │ │ │ │ │ ├── runscript.py │ │ │ │ │ ├── scrolledlist.py │ │ │ │ │ ├── search.py │ │ │ │ │ ├── searchbase.py │ │ │ │ │ ├── searchengine.py │ │ │ │ │ ├── sidebar.py │ │ │ │ │ ├── squeezer.py │ │ │ │ │ ├── stackviewer.py │ │ │ │ │ ├── statusbar.py │ │ │ │ │ ├── textview.py │ │ │ │ │ ├── tooltip.py │ │ │ │ │ ├── tree.py │ │ │ │ │ ├── undo.py │ │ │ │ │ ├── window.py │ │ │ │ │ ├── zoomheight.py │ │ │ │ │ └── zzdummy.py │ │ │ │ ├── imaplib.py │ │ │ │ ├── imghdr.py │ │ │ │ ├── imp.py │ │ │ │ ├── importlib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _bootstrap.py │ │ │ │ │ ├── _bootstrap_external.py │ │ │ │ │ ├── _common.py │ │ │ │ │ ├── abc.py │ │ │ │ │ ├── machinery.py │ │ │ │ │ ├── metadata.py │ │ │ │ │ ├── resources.py │ │ │ │ │ └── util.py │ │ │ │ ├── inspect.py │ │ │ │ ├── io.py │ │ │ │ ├── ipaddress.py │ │ │ │ ├── json │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── decoder.py │ │ │ │ │ ├── encoder.py │ │ │ │ │ ├── scanner.py │ │ │ │ │ └── tool.py │ │ │ │ ├── keyword.py │ │ │ │ ├── lib-dynload │ │ │ │ │ ├── _asyncio.cpython-39-darwin.so │ │ │ │ │ ├── _bisect.cpython-39-darwin.so │ │ │ │ │ ├── _blake2.cpython-39-darwin.so │ │ │ │ │ ├── _bz2.cpython-39-darwin.so │ │ │ │ │ ├── _codecs_cn.cpython-39-darwin.so │ │ │ │ │ ├── _codecs_hk.cpython-39-darwin.so │ │ │ │ │ ├── _codecs_iso2022.cpython-39-darwin.so │ │ │ │ │ ├── _codecs_jp.cpython-39-darwin.so │ │ │ │ │ ├── _codecs_kr.cpython-39-darwin.so │ │ │ │ │ ├── _codecs_tw.cpython-39-darwin.so │ │ │ │ │ ├── _contextvars.cpython-39-darwin.so │ │ │ │ │ ├── _crypt.cpython-39-darwin.so │ │ │ │ │ ├── _csv.cpython-39-darwin.so │ │ │ │ │ ├── _ctypes.cpython-39-darwin.so │ │ │ │ │ ├── _ctypes_test.cpython-39-darwin.so │ │ │ │ │ ├── _curses.cpython-39-darwin.so │ │ │ │ │ ├── _curses_panel.cpython-39-darwin.so │ │ │ │ │ ├── _datetime.cpython-39-darwin.so │ │ │ │ │ ├── _dbm.cpython-39-darwin.so │ │ │ │ │ ├── _decimal.cpython-39-darwin.so │ │ │ │ │ ├── _elementtree.cpython-39-darwin.so │ │ │ │ │ ├── _hashlib.cpython-39-darwin.so │ │ │ │ │ ├── _heapq.cpython-39-darwin.so │ │ │ │ │ ├── _json.cpython-39-darwin.so │ │ │ │ │ ├── _lsprof.cpython-39-darwin.so │ │ │ │ │ ├── _lzma.cpython-39-darwin.so │ │ │ │ │ ├── _md5.cpython-39-darwin.so │ │ │ │ │ ├── _multibytecodec.cpython-39-darwin.so │ │ │ │ │ ├── _multiprocessing.cpython-39-darwin.so │ │ │ │ │ ├── _opcode.cpython-39-darwin.so │ │ │ │ │ ├── _pickle.cpython-39-darwin.so │ │ │ │ │ ├── _posixshmem.cpython-39-darwin.so │ │ │ │ │ ├── _posixsubprocess.cpython-39-darwin.so │ │ │ │ │ ├── _queue.cpython-39-darwin.so │ │ │ │ │ ├── _random.cpython-39-darwin.so │ │ │ │ │ ├── _scproxy.cpython-39-darwin.so │ │ │ │ │ ├── _sha1.cpython-39-darwin.so │ │ │ │ │ ├── _sha256.cpython-39-darwin.so │ │ │ │ │ ├── _sha3.cpython-39-darwin.so │ │ │ │ │ ├── _sha512.cpython-39-darwin.so │ │ │ │ │ ├── _socket.cpython-39-darwin.so │ │ │ │ │ ├── _sqlite3.cpython-39-darwin.so │ │ │ │ │ ├── _ssl.cpython-39-darwin.so │ │ │ │ │ ├── _statistics.cpython-39-darwin.so │ │ │ │ │ ├── _struct.cpython-39-darwin.so │ │ │ │ │ ├── _testbuffer.cpython-39-darwin.so │ │ │ │ │ ├── _testcapi.cpython-39-darwin.so │ │ │ │ │ ├── _testimportmultiple.cpython-39-darwin.so │ │ │ │ │ ├── _testinternalcapi.cpython-39-darwin.so │ │ │ │ │ ├── _testmultiphase.cpython-39-darwin.so │ │ │ │ │ ├── _tkinter.cpython-39-darwin.so │ │ │ │ │ ├── _uuid.cpython-39-darwin.so │ │ │ │ │ ├── _xxsubinterpreters.cpython-39-darwin.so │ │ │ │ │ ├── _xxtestfuzz.cpython-39-darwin.so │ │ │ │ │ ├── _zoneinfo.cpython-39-darwin.so │ │ │ │ │ ├── array.cpython-39-darwin.so │ │ │ │ │ ├── audioop.cpython-39-darwin.so │ │ │ │ │ ├── binascii.cpython-39-darwin.so │ │ │ │ │ ├── cmath.cpython-39-darwin.so │ │ │ │ │ ├── fcntl.cpython-39-darwin.so │ │ │ │ │ ├── grp.cpython-39-darwin.so │ │ │ │ │ ├── math.cpython-39-darwin.so │ │ │ │ │ ├── mmap.cpython-39-darwin.so │ │ │ │ │ ├── nis.cpython-39-darwin.so │ │ │ │ │ ├── parser.cpython-39-darwin.so │ │ │ │ │ ├── pyexpat.cpython-39-darwin.so │ │ │ │ │ ├── readline.cpython-39-darwin.so │ │ │ │ │ ├── resource.cpython-39-darwin.so │ │ │ │ │ ├── select.cpython-39-darwin.so │ │ │ │ │ ├── syslog.cpython-39-darwin.so │ │ │ │ │ ├── termios.cpython-39-darwin.so │ │ │ │ │ ├── unicodedata.cpython-39-darwin.so │ │ │ │ │ ├── xxlimited.cpython-39-darwin.so │ │ │ │ │ └── zlib.cpython-39-darwin.so │ │ │ │ ├── lib2to3 │ │ │ │ │ ├── Grammar.txt │ │ │ │ │ ├── Grammar3.9.1.final.0.pickle │ │ │ │ │ ├── PatternGrammar.txt │ │ │ │ │ ├── PatternGrammar3.9.1.final.0.pickle │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── btm_matcher.py │ │ │ │ │ ├── btm_utils.py │ │ │ │ │ ├── fixer_base.py │ │ │ │ │ ├── fixer_util.py │ │ │ │ │ ├── fixes │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── fix_apply.py │ │ │ │ │ │ ├── fix_asserts.py │ │ │ │ │ │ ├── fix_basestring.py │ │ │ │ │ │ ├── fix_buffer.py │ │ │ │ │ │ ├── fix_dict.py │ │ │ │ │ │ ├── fix_except.py │ │ │ │ │ │ ├── fix_exec.py │ │ │ │ │ │ ├── fix_execfile.py │ │ │ │ │ │ ├── fix_exitfunc.py │ │ │ │ │ │ ├── fix_filter.py │ │ │ │ │ │ ├── fix_funcattrs.py │ │ │ │ │ │ ├── fix_future.py │ │ │ │ │ │ ├── fix_getcwdu.py │ │ │ │ │ │ ├── fix_has_key.py │ │ │ │ │ │ ├── fix_idioms.py │ │ │ │ │ │ ├── fix_import.py │ │ │ │ │ │ ├── fix_imports.py │ │ │ │ │ │ ├── fix_imports2.py │ │ │ │ │ │ ├── fix_input.py │ │ │ │ │ │ ├── fix_intern.py │ │ │ │ │ │ ├── fix_isinstance.py │ │ │ │ │ │ ├── fix_itertools.py │ │ │ │ │ │ ├── fix_itertools_imports.py │ │ │ │ │ │ ├── fix_long.py │ │ │ │ │ │ ├── fix_map.py │ │ │ │ │ │ ├── fix_metaclass.py │ │ │ │ │ │ ├── fix_methodattrs.py │ │ │ │ │ │ ├── fix_ne.py │ │ │ │ │ │ ├── fix_next.py │ │ │ │ │ │ ├── fix_nonzero.py │ │ │ │ │ │ ├── fix_numliterals.py │ │ │ │ │ │ ├── fix_operator.py │ │ │ │ │ │ ├── fix_paren.py │ │ │ │ │ │ ├── fix_print.py │ │ │ │ │ │ ├── fix_raise.py │ │ │ │ │ │ ├── fix_raw_input.py │ │ │ │ │ │ ├── fix_reduce.py │ │ │ │ │ │ ├── fix_reload.py │ │ │ │ │ │ ├── fix_renames.py │ │ │ │ │ │ ├── fix_repr.py │ │ │ │ │ │ ├── fix_set_literal.py │ │ │ │ │ │ ├── fix_standarderror.py │ │ │ │ │ │ ├── fix_sys_exc.py │ │ │ │ │ │ ├── fix_throw.py │ │ │ │ │ │ ├── fix_tuple_params.py │ │ │ │ │ │ ├── fix_types.py │ │ │ │ │ │ ├── fix_unicode.py │ │ │ │ │ │ ├── fix_urllib.py │ │ │ │ │ │ ├── fix_ws_comma.py │ │ │ │ │ │ ├── fix_xrange.py │ │ │ │ │ │ ├── fix_xreadlines.py │ │ │ │ │ │ └── fix_zip.py │ │ │ │ │ ├── main.py │ │ │ │ │ ├── patcomp.py │ │ │ │ │ ├── pgen2 │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── conv.py │ │ │ │ │ │ ├── driver.py │ │ │ │ │ │ ├── grammar.py │ │ │ │ │ │ ├── literals.py │ │ │ │ │ │ ├── parse.py │ │ │ │ │ │ ├── pgen.py │ │ │ │ │ │ ├── token.py │ │ │ │ │ │ └── tokenize.py │ │ │ │ │ ├── pygram.py │ │ │ │ │ ├── pytree.py │ │ │ │ │ ├── refactor.py │ │ │ │ │ └── tests │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ ├── data │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── bom.py │ │ │ │ │ │ ├── crlf.py │ │ │ │ │ │ ├── different_encoding.py │ │ │ │ │ │ ├── false_encoding.py │ │ │ │ │ │ ├── fixers │ │ │ │ │ │ │ ├── bad_order.py │ │ │ │ │ │ │ ├── myfixes │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── fix_explicit.py │ │ │ │ │ │ │ │ ├── fix_first.py │ │ │ │ │ │ │ │ ├── fix_last.py │ │ │ │ │ │ │ │ ├── fix_parrot.py │ │ │ │ │ │ │ │ └── fix_preorder.py │ │ │ │ │ │ │ ├── no_fixer_cls.py │ │ │ │ │ │ │ └── parrot_example.py │ │ │ │ │ │ ├── infinite_recursion.py │ │ │ │ │ │ ├── py2_test_grammar.py │ │ │ │ │ │ └── py3_test_grammar.py │ │ │ │ │ │ ├── pytree_idempotency.py │ │ │ │ │ │ ├── support.py │ │ │ │ │ │ ├── test_all_fixers.py │ │ │ │ │ │ ├── test_fixers.py │ │ │ │ │ │ ├── test_main.py │ │ │ │ │ │ ├── test_parser.py │ │ │ │ │ │ ├── test_pytree.py │ │ │ │ │ │ ├── test_refactor.py │ │ │ │ │ │ └── test_util.py │ │ │ │ ├── linecache.py │ │ │ │ ├── locale.py │ │ │ │ ├── logging │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── config.py │ │ │ │ │ └── handlers.py │ │ │ │ ├── lzma.py │ │ │ │ ├── mailbox.py │ │ │ │ ├── mailcap.py │ │ │ │ ├── mimetypes.py │ │ │ │ ├── modulefinder.py │ │ │ │ ├── multiprocessing │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── context.py │ │ │ │ │ ├── dummy │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── connection.py │ │ │ │ │ ├── forkserver.py │ │ │ │ │ ├── heap.py │ │ │ │ │ ├── managers.py │ │ │ │ │ ├── pool.py │ │ │ │ │ ├── popen_fork.py │ │ │ │ │ ├── popen_forkserver.py │ │ │ │ │ ├── popen_spawn_posix.py │ │ │ │ │ ├── popen_spawn_win32.py │ │ │ │ │ ├── process.py │ │ │ │ │ ├── queues.py │ │ │ │ │ ├── reduction.py │ │ │ │ │ ├── resource_sharer.py │ │ │ │ │ ├── resource_tracker.py │ │ │ │ │ ├── shared_memory.py │ │ │ │ │ ├── sharedctypes.py │ │ │ │ │ ├── spawn.py │ │ │ │ │ ├── synchronize.py │ │ │ │ │ └── util.py │ │ │ │ ├── netrc.py │ │ │ │ ├── nntplib.py │ │ │ │ ├── ntpath.py │ │ │ │ ├── nturl2path.py │ │ │ │ ├── numbers.py │ │ │ │ ├── opcode.py │ │ │ │ ├── operator.py │ │ │ │ ├── optparse.py │ │ │ │ ├── os.py │ │ │ │ ├── pathlib.py │ │ │ │ ├── pdb.py │ │ │ │ ├── pickle.py │ │ │ │ ├── pickletools.py │ │ │ │ ├── pipes.py │ │ │ │ ├── pkgutil.py │ │ │ │ ├── platform.py │ │ │ │ ├── plistlib.py │ │ │ │ ├── poplib.py │ │ │ │ ├── posixpath.py │ │ │ │ ├── pprint.py │ │ │ │ ├── profile.py │ │ │ │ ├── pstats.py │ │ │ │ ├── pty.py │ │ │ │ ├── py_compile.py │ │ │ │ ├── pyclbr.py │ │ │ │ ├── pydoc.py │ │ │ │ ├── pydoc_data │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _pydoc.css │ │ │ │ │ └── topics.py │ │ │ │ ├── queue.py │ │ │ │ ├── quopri.py │ │ │ │ ├── random.py │ │ │ │ ├── re.py │ │ │ │ ├── reprlib.py │ │ │ │ ├── rlcompleter.py │ │ │ │ ├── runpy.py │ │ │ │ ├── sched.py │ │ │ │ ├── secrets.py │ │ │ │ ├── selectors.py │ │ │ │ ├── shelve.py │ │ │ │ ├── shlex.py │ │ │ │ ├── shutil.py │ │ │ │ ├── signal.py │ │ │ │ ├── site-packages │ │ │ │ │ ├── AVFoundation │ │ │ │ │ │ ├── _AVFoundation.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _inlines.abi3.so │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── AVKit │ │ │ │ │ │ ├── _AVKit.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── Accessibility │ │ │ │ │ │ ├── _Accessibility.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── Accounts │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── AdSupport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── AddressBook │ │ │ │ │ │ ├── _AddressBook.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── AppKit │ │ │ │ │ │ ├── _AppKit.cpython-39-darwin.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _inlines.cpython-39-darwin.so │ │ │ │ │ │ ├── _metadata.py │ │ │ │ │ │ └── _nsapp.py │ │ │ │ │ ├── AppTrackingTransparency │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── AppleScriptKit │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── AppleScriptObjC │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── ApplicationServices │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── AuthenticationServices │ │ │ │ │ │ ├── _AuthenticationServices.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── AutomaticAssessmentConfiguration │ │ │ │ │ │ ├── _AutomaticAssessmentConfiguration.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── Automator │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── BusinessChat │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── CFNetwork │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _manual.abi3.so │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── CFOpenDirectory │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── CalendarStore │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── CallKit │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── ClassKit │ │ │ │ │ │ ├── _ClassKit.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── CloudKit │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── Cocoa │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── Collaboration │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── ColorSync │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── Contacts │ │ │ │ │ │ ├── _Contacts.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── ContactsUI │ │ │ │ │ │ ├── _ContactsUI.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── CoreAudio │ │ │ │ │ │ ├── _CoreAudio.cpython-39-darwin.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _inlines.abi3.so │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── CoreAudioKit │ │ │ │ │ │ ├── _CoreAudioKit.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── CoreBluetooth │ │ │ │ │ │ ├── _CoreBluetooth.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── CoreData │ │ │ │ │ │ ├── _CoreData.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _convenience.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── CoreFoundation │ │ │ │ │ │ ├── _CoreFoundation.cpython-39-darwin.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _inlines.cpython-39-darwin.so │ │ │ │ │ │ ├── _metadata.py │ │ │ │ │ │ └── _static.py │ │ │ │ │ ├── CoreHaptics │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── CoreLocation │ │ │ │ │ │ ├── _CoreLocation.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── CoreMIDI │ │ │ │ │ │ ├── _CoreMIDI.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── CoreML │ │ │ │ │ │ ├── _CoreML.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── CoreMedia │ │ │ │ │ │ ├── _CoreMedia.cpython-39-darwin.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _macros.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── CoreMediaIO │ │ │ │ │ │ ├── _CoreMediaIO.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── CoreMotion │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── CoreServices │ │ │ │ │ │ ├── CarbonCore │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ │ ├── DictionaryServices │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ │ ├── LaunchServices │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ │ ├── Metadata │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ │ ├── SearchKit │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _inlines.abi3.so │ │ │ │ │ ├── CoreSpotlight │ │ │ │ │ │ ├── _CoreSpotlight.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── CoreText │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _manual.cpython-39-darwin.so │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── CoreWLAN │ │ │ │ │ │ ├── _CoreWLAN.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── CryptoTokenKit │ │ │ │ │ │ ├── _CryptoTokenKit.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── DVDPlayback │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── DeviceCheck │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── DictionaryServices │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── DiscRecording │ │ │ │ │ │ ├── _DiscRecording.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── DiscRecordingUI │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── DiskArbitration │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── EventKit │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── ExceptionHandling │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── ExecutionPolicy │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── ExternalAccessory │ │ │ │ │ │ ├── _ExternalAccessory.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── FSEvents │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _callbacks.abi3.so │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── FileProvider │ │ │ │ │ │ ├── _FileProvider.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── FileProviderUI │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── FinderSync │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── Foundation │ │ │ │ │ │ ├── _Foundation.cpython-39-darwin.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _context.py │ │ │ │ │ │ ├── _functiondefines.py │ │ │ │ │ │ ├── _inlines.cpython-39-darwin.so │ │ │ │ │ │ ├── _metadata.py │ │ │ │ │ │ ├── _nsindexset.py │ │ │ │ │ │ └── _nsobject.py │ │ │ │ │ ├── GameCenter │ │ │ │ │ │ ├── _GameCenter.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── GameController │ │ │ │ │ │ ├── _GameController.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── GameKit │ │ │ │ │ │ ├── _GameKit.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── GameplayKit │ │ │ │ │ │ ├── _GameplayKit.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── HIServices │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── IMServicePlugIn │ │ │ │ │ │ ├── _IMServicePlugIn.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── IOSurface │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── ImageCaptureCore │ │ │ │ │ │ ├── _ImageCaptureCore.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── InputMethodKit │ │ │ │ │ │ ├── _InputMethodKit.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── InstallerPlugins │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── InstantMessage │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── Intents │ │ │ │ │ │ ├── _Intents.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── JavaScriptCore │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _metadata.py │ │ │ │ │ │ └── _util.py │ │ │ │ │ ├── KernelManagement │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── LatentSemanticMapping │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── LaunchServices │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── LinkPresentation │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── LocalAuthentication │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── MLCompute │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── MapKit │ │ │ │ │ │ ├── _MapKit.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _inlines.cpython-39-darwin.so │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── MediaAccessibility │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── MediaLibrary │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── MediaPlayer │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── MediaToolbox │ │ │ │ │ │ ├── _MediaToolbox.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── Metal │ │ │ │ │ │ ├── _Metal.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _inlines.abi3.so │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── MetalKit │ │ │ │ │ │ ├── _MetalKit.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── MetalPerformanceShaders │ │ │ │ │ │ ├── _MetalPerformanceShaders.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _inlines.abi3.so │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── MetalPerformanceShadersGraph │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── ModelIO │ │ │ │ │ │ ├── _ModelIO.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── MultipeerConnectivity │ │ │ │ │ │ ├── _MultipeerConnectivity.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── NaturalLanguage │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── NetFS │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── Network │ │ │ │ │ │ ├── _Network.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── NetworkExtension │ │ │ │ │ │ ├── _NetworkExtension.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── NotificationCenter │ │ │ │ │ │ ├── _NotificationCenter.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── OSAKit │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── OSLog │ │ │ │ │ │ ├── _OSLog.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── OpenDirectory │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── PassKit │ │ │ │ │ │ ├── _PassKit.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── PencilKit │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── Photos │ │ │ │ │ │ ├── _Photos.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── PhotosUI │ │ │ │ │ │ ├── _PhotosUI.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── PreferencePanes │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── PrintCore │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── PushKit │ │ │ │ │ │ ├── _PushKit.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── PyObjCTools │ │ │ │ │ │ ├── AppCategories.py │ │ │ │ │ │ ├── AppHelper.py │ │ │ │ │ │ ├── Conversion.py │ │ │ │ │ │ ├── Debugging.py │ │ │ │ │ │ ├── FndCategories.py │ │ │ │ │ │ ├── KeyValueCoding.py │ │ │ │ │ │ ├── MachSignals.py │ │ │ │ │ │ ├── Signals.py │ │ │ │ │ │ └── TestSupport.py │ │ │ │ │ ├── Quartz │ │ │ │ │ │ ├── CoreGraphics │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── _callbacks.cpython-39-darwin.so │ │ │ │ │ │ │ ├── _contextmanager.py │ │ │ │ │ │ │ ├── _coregraphics.cpython-39-darwin.so │ │ │ │ │ │ │ ├── _doubleindirect.abi3.so │ │ │ │ │ │ │ ├── _inlines.abi3.so │ │ │ │ │ │ │ ├── _metadata.py │ │ │ │ │ │ │ └── _sortandmap.abi3.so │ │ │ │ │ │ ├── CoreVideo │ │ │ │ │ │ │ ├── _CVPixelBuffer.abi3.so │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ │ ├── ImageIO │ │ │ │ │ │ │ ├── PyObjCOverrides.bridgesupport │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ │ ├── ImageKit │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── _imagekit.abi3.so │ │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ │ ├── PDFKit │ │ │ │ │ │ │ ├── _PDFKit.abi3.so │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ │ ├── QuartzComposer │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ │ ├── QuartzCore │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── _metadata.py │ │ │ │ │ │ │ └── _quartzcore.abi3.so │ │ │ │ │ │ ├── QuartzFilters │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ │ ├── QuickLookUI │ │ │ │ │ │ │ ├── _QuickLookUI.abi3.so │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── QuickLookThumbnailing │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── ReplayKit │ │ │ │ │ │ ├── _ReplayKit.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── SafariServices │ │ │ │ │ │ ├── _SafariServices.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── SceneKit │ │ │ │ │ │ ├── _SceneKit.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _inlines.abi3.so │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── ScreenSaver │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _inlines.abi3.so │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── ScreenTime │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── ScriptingBridge │ │ │ │ │ │ ├── _ScriptingBridge.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── SearchKit │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── Security │ │ │ │ │ │ ├── _Security.cpython-39-darwin.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── SecurityFoundation │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── SecurityInterface │ │ │ │ │ │ ├── _SecurityInterface.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── ServiceManagement │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── Social │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── SoundAnalysis │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── Speech │ │ │ │ │ │ ├── _Speech.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── SpriteKit │ │ │ │ │ │ ├── _SpriteKit.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── StoreKit │ │ │ │ │ │ ├── _StoreKit.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── SyncServices │ │ │ │ │ │ ├── _SyncServices.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── SystemConfiguration │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _manual.abi3.so │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── SystemExtensions │ │ │ │ │ │ ├── _SystemExtensions.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── UniformTypeIdentifiers │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── UserNotifications │ │ │ │ │ │ ├── _UserNotifications.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── UserNotificationsUI │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── VideoSubscriberAccount │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── VideoToolbox │ │ │ │ │ │ ├── _VideoToolbox.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── Virtualization │ │ │ │ │ │ ├── _Virtualization.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── Vision │ │ │ │ │ │ ├── _Vision.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── WebKit │ │ │ │ │ │ ├── _WebKit.abi3.so │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── _cffi_backend.cpython-39-darwin.so │ │ │ │ │ ├── cffi-1.14.4.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── REQUESTED │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ ├── entry_points.txt │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── cffi │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _cffi_errors.h │ │ │ │ │ │ ├── _cffi_include.h │ │ │ │ │ │ ├── _embedding.h │ │ │ │ │ │ ├── api.py │ │ │ │ │ │ ├── backend_ctypes.py │ │ │ │ │ │ ├── cffi_opcode.py │ │ │ │ │ │ ├── commontypes.py │ │ │ │ │ │ ├── cparser.py │ │ │ │ │ │ ├── error.py │ │ │ │ │ │ ├── ffiplatform.py │ │ │ │ │ │ ├── lock.py │ │ │ │ │ │ ├── model.py │ │ │ │ │ │ ├── parse_c_type.h │ │ │ │ │ │ ├── pkgconfig.py │ │ │ │ │ │ ├── recompiler.py │ │ │ │ │ │ ├── setuptools_ext.py │ │ │ │ │ │ ├── vengine_cpy.py │ │ │ │ │ │ ├── vengine_gen.py │ │ │ │ │ │ └── verifier.py │ │ │ │ │ ├── easy_install.py │ │ │ │ │ ├── iTunesLibrary │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── libdispatch │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _inlines.abi3.so │ │ │ │ │ │ ├── _libdispatch.cpython-39-darwin.so │ │ │ │ │ │ └── _metadata.py │ │ │ │ │ ├── objc │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _bridges.py │ │ │ │ │ │ ├── _bridgesupport.py │ │ │ │ │ │ ├── _callable_docstr.py │ │ │ │ │ │ ├── _category.py │ │ │ │ │ │ ├── _compat.py │ │ │ │ │ │ ├── _context.py │ │ │ │ │ │ ├── _convenience.py │ │ │ │ │ │ ├── _convenience_mapping.py │ │ │ │ │ │ ├── _convenience_nsarray.py │ │ │ │ │ │ ├── _convenience_nsdata.py │ │ │ │ │ │ ├── _convenience_nsdecimal.py │ │ │ │ │ │ ├── _convenience_nsdictionary.py │ │ │ │ │ │ ├── _convenience_nsobject.py │ │ │ │ │ │ ├── _convenience_nsset.py │ │ │ │ │ │ ├── _convenience_nsstring.py │ │ │ │ │ │ ├── _convenience_sequence.py │ │ │ │ │ │ ├── _descriptors.py │ │ │ │ │ │ ├── _dyld.py │ │ │ │ │ │ ├── _framework.py │ │ │ │ │ │ ├── _lazyimport.py │ │ │ │ │ │ ├── _locking.py │ │ │ │ │ │ ├── _machsignals.cpython-39-darwin.so │ │ │ │ │ │ ├── _objc.cpython-39-darwin.so │ │ │ │ │ │ ├── _properties.py │ │ │ │ │ │ ├── _protocols.py │ │ │ │ │ │ ├── _pycoder.py │ │ │ │ │ │ └── _pythonify.py │ │ │ │ │ ├── pip-20.3.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── REQUESTED │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ ├── entry_points.txt │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pip │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ ├── _internal │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── build_env.py │ │ │ │ │ │ │ ├── cache.py │ │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── autocompletion.py │ │ │ │ │ │ │ │ ├── base_command.py │ │ │ │ │ │ │ │ ├── cmdoptions.py │ │ │ │ │ │ │ │ ├── command_context.py │ │ │ │ │ │ │ │ ├── main.py │ │ │ │ │ │ │ │ ├── main_parser.py │ │ │ │ │ │ │ │ ├── parser.py │ │ │ │ │ │ │ │ ├── progress_bars.py │ │ │ │ │ │ │ │ ├── req_command.py │ │ │ │ │ │ │ │ ├── spinners.py │ │ │ │ │ │ │ │ └── status_codes.py │ │ │ │ │ │ │ ├── commands │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── cache.py │ │ │ │ │ │ │ │ ├── check.py │ │ │ │ │ │ │ │ ├── completion.py │ │ │ │ │ │ │ │ ├── configuration.py │ │ │ │ │ │ │ │ ├── debug.py │ │ │ │ │ │ │ │ ├── download.py │ │ │ │ │ │ │ │ ├── freeze.py │ │ │ │ │ │ │ │ ├── hash.py │ │ │ │ │ │ │ │ ├── help.py │ │ │ │ │ │ │ │ ├── install.py │ │ │ │ │ │ │ │ ├── list.py │ │ │ │ │ │ │ │ ├── search.py │ │ │ │ │ │ │ │ ├── show.py │ │ │ │ │ │ │ │ ├── uninstall.py │ │ │ │ │ │ │ │ └── wheel.py │ │ │ │ │ │ │ ├── configuration.py │ │ │ │ │ │ │ ├── distributions │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ ├── installed.py │ │ │ │ │ │ │ │ ├── sdist.py │ │ │ │ │ │ │ │ └── wheel.py │ │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ │ ├── index │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── collector.py │ │ │ │ │ │ │ │ └── package_finder.py │ │ │ │ │ │ │ ├── locations.py │ │ │ │ │ │ │ ├── main.py │ │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── candidate.py │ │ │ │ │ │ │ │ ├── direct_url.py │ │ │ │ │ │ │ │ ├── format_control.py │ │ │ │ │ │ │ │ ├── index.py │ │ │ │ │ │ │ │ ├── link.py │ │ │ │ │ │ │ │ ├── scheme.py │ │ │ │ │ │ │ │ ├── search_scope.py │ │ │ │ │ │ │ │ ├── selection_prefs.py │ │ │ │ │ │ │ │ ├── target_python.py │ │ │ │ │ │ │ │ └── wheel.py │ │ │ │ │ │ │ ├── network │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── auth.py │ │ │ │ │ │ │ │ ├── cache.py │ │ │ │ │ │ │ │ ├── download.py │ │ │ │ │ │ │ │ ├── lazy_wheel.py │ │ │ │ │ │ │ │ ├── session.py │ │ │ │ │ │ │ │ ├── utils.py │ │ │ │ │ │ │ │ └── xmlrpc.py │ │ │ │ │ │ │ ├── operations │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── check.py │ │ │ │ │ │ │ │ ├── freeze.py │ │ │ │ │ │ │ │ ├── install │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ ├── editable_legacy.py │ │ │ │ │ │ │ │ │ ├── legacy.py │ │ │ │ │ │ │ │ │ └── wheel.py │ │ │ │ │ │ │ │ └── prepare.py │ │ │ │ │ │ │ ├── pyproject.py │ │ │ │ │ │ │ ├── req │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── constructors.py │ │ │ │ │ │ │ │ ├── req_file.py │ │ │ │ │ │ │ │ ├── req_install.py │ │ │ │ │ │ │ │ ├── req_set.py │ │ │ │ │ │ │ │ ├── req_tracker.py │ │ │ │ │ │ │ │ └── req_uninstall.py │ │ │ │ │ │ │ ├── resolution │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ ├── legacy │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ └── resolver.py │ │ │ │ │ │ │ │ └── resolvelib │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ │ ├── candidates.py │ │ │ │ │ │ │ │ │ ├── factory.py │ │ │ │ │ │ │ │ │ ├── found_candidates.py │ │ │ │ │ │ │ │ │ ├── provider.py │ │ │ │ │ │ │ │ │ ├── reporter.py │ │ │ │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ │ │ │ └── resolver.py │ │ │ │ │ │ │ ├── self_outdated_check.py │ │ │ │ │ │ │ ├── utils │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── appdirs.py │ │ │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ │ │ ├── compatibility_tags.py │ │ │ │ │ │ │ │ ├── datetime.py │ │ │ │ │ │ │ │ ├── deprecation.py │ │ │ │ │ │ │ │ ├── direct_url_helpers.py │ │ │ │ │ │ │ │ ├── distutils_args.py │ │ │ │ │ │ │ │ ├── encoding.py │ │ │ │ │ │ │ │ ├── entrypoints.py │ │ │ │ │ │ │ │ ├── filesystem.py │ │ │ │ │ │ │ │ ├── filetypes.py │ │ │ │ │ │ │ │ ├── glibc.py │ │ │ │ │ │ │ │ ├── hashes.py │ │ │ │ │ │ │ │ ├── inject_securetransport.py │ │ │ │ │ │ │ │ ├── logging.py │ │ │ │ │ │ │ │ ├── misc.py │ │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ │ ├── packaging.py │ │ │ │ │ │ │ │ ├── parallel.py │ │ │ │ │ │ │ │ ├── pkg_resources.py │ │ │ │ │ │ │ │ ├── setuptools_build.py │ │ │ │ │ │ │ │ ├── subprocess.py │ │ │ │ │ │ │ │ ├── temp_dir.py │ │ │ │ │ │ │ │ ├── typing.py │ │ │ │ │ │ │ │ ├── unpacking.py │ │ │ │ │ │ │ │ ├── urls.py │ │ │ │ │ │ │ │ ├── virtualenv.py │ │ │ │ │ │ │ │ └── wheel.py │ │ │ │ │ │ │ ├── vcs │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── bazaar.py │ │ │ │ │ │ │ │ ├── git.py │ │ │ │ │ │ │ │ ├── mercurial.py │ │ │ │ │ │ │ │ ├── subversion.py │ │ │ │ │ │ │ │ └── versioncontrol.py │ │ │ │ │ │ │ └── wheel_builder.py │ │ │ │ │ │ └── _vendor │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── appdirs.py │ │ │ │ │ │ │ ├── cachecontrol │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── _cmd.py │ │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ │ ├── cache.py │ │ │ │ │ │ │ ├── caches │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── file_cache.py │ │ │ │ │ │ │ │ └── redis_cache.py │ │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ │ ├── controller.py │ │ │ │ │ │ │ ├── filewrapper.py │ │ │ │ │ │ │ ├── heuristics.py │ │ │ │ │ │ │ ├── serialize.py │ │ │ │ │ │ │ └── wrapper.py │ │ │ │ │ │ │ ├── certifi │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ │ ├── cacert.pem │ │ │ │ │ │ │ └── core.py │ │ │ │ │ │ │ ├── chardet │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── big5freq.py │ │ │ │ │ │ │ ├── big5prober.py │ │ │ │ │ │ │ ├── chardistribution.py │ │ │ │ │ │ │ ├── charsetgroupprober.py │ │ │ │ │ │ │ ├── charsetprober.py │ │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ └── chardetect.py │ │ │ │ │ │ │ ├── codingstatemachine.py │ │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ │ ├── cp949prober.py │ │ │ │ │ │ │ ├── enums.py │ │ │ │ │ │ │ ├── escprober.py │ │ │ │ │ │ │ ├── escsm.py │ │ │ │ │ │ │ ├── eucjpprober.py │ │ │ │ │ │ │ ├── euckrfreq.py │ │ │ │ │ │ │ ├── euckrprober.py │ │ │ │ │ │ │ ├── euctwfreq.py │ │ │ │ │ │ │ ├── euctwprober.py │ │ │ │ │ │ │ ├── gb2312freq.py │ │ │ │ │ │ │ ├── gb2312prober.py │ │ │ │ │ │ │ ├── hebrewprober.py │ │ │ │ │ │ │ ├── jisfreq.py │ │ │ │ │ │ │ ├── jpcntx.py │ │ │ │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ │ │ │ ├── langgreekmodel.py │ │ │ │ │ │ │ ├── langhebrewmodel.py │ │ │ │ │ │ │ ├── langhungarianmodel.py │ │ │ │ │ │ │ ├── langthaimodel.py │ │ │ │ │ │ │ ├── langturkishmodel.py │ │ │ │ │ │ │ ├── latin1prober.py │ │ │ │ │ │ │ ├── mbcharsetprober.py │ │ │ │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ │ │ │ ├── mbcssm.py │ │ │ │ │ │ │ ├── sbcharsetprober.py │ │ │ │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ │ │ │ ├── sjisprober.py │ │ │ │ │ │ │ ├── universaldetector.py │ │ │ │ │ │ │ ├── utf8prober.py │ │ │ │ │ │ │ └── version.py │ │ │ │ │ │ │ ├── colorama │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── ansi.py │ │ │ │ │ │ │ ├── ansitowin32.py │ │ │ │ │ │ │ ├── initialise.py │ │ │ │ │ │ │ ├── win32.py │ │ │ │ │ │ │ └── winterm.py │ │ │ │ │ │ │ ├── contextlib2.py │ │ │ │ │ │ │ ├── distlib │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── _backport │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── misc.py │ │ │ │ │ │ │ │ ├── shutil.py │ │ │ │ │ │ │ │ ├── sysconfig.cfg │ │ │ │ │ │ │ │ ├── sysconfig.py │ │ │ │ │ │ │ │ └── tarfile.py │ │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ │ ├── database.py │ │ │ │ │ │ │ ├── index.py │ │ │ │ │ │ │ ├── locators.py │ │ │ │ │ │ │ ├── manifest.py │ │ │ │ │ │ │ ├── markers.py │ │ │ │ │ │ │ ├── metadata.py │ │ │ │ │ │ │ ├── resources.py │ │ │ │ │ │ │ ├── scripts.py │ │ │ │ │ │ │ ├── t32.exe │ │ │ │ │ │ │ ├── t64.exe │ │ │ │ │ │ │ ├── util.py │ │ │ │ │ │ │ ├── version.py │ │ │ │ │ │ │ ├── w32.exe │ │ │ │ │ │ │ ├── w64.exe │ │ │ │ │ │ │ └── wheel.py │ │ │ │ │ │ │ ├── distro.py │ │ │ │ │ │ │ ├── html5lib │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── _ihatexml.py │ │ │ │ │ │ │ ├── _inputstream.py │ │ │ │ │ │ │ ├── _tokenizer.py │ │ │ │ │ │ │ ├── _trie │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── _base.py │ │ │ │ │ │ │ │ └── py.py │ │ │ │ │ │ │ ├── _utils.py │ │ │ │ │ │ │ ├── constants.py │ │ │ │ │ │ │ ├── filters │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ ├── inject_meta_charset.py │ │ │ │ │ │ │ │ ├── lint.py │ │ │ │ │ │ │ │ ├── optionaltags.py │ │ │ │ │ │ │ │ ├── sanitizer.py │ │ │ │ │ │ │ │ └── whitespace.py │ │ │ │ │ │ │ ├── html5parser.py │ │ │ │ │ │ │ ├── serializer.py │ │ │ │ │ │ │ ├── treeadapters │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── genshi.py │ │ │ │ │ │ │ │ └── sax.py │ │ │ │ │ │ │ ├── treebuilders │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ ├── dom.py │ │ │ │ │ │ │ │ ├── etree.py │ │ │ │ │ │ │ │ └── etree_lxml.py │ │ │ │ │ │ │ └── treewalkers │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ ├── dom.py │ │ │ │ │ │ │ │ ├── etree.py │ │ │ │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ │ │ │ └── genshi.py │ │ │ │ │ │ │ ├── idna │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── codec.py │ │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ │ ├── core.py │ │ │ │ │ │ │ ├── idnadata.py │ │ │ │ │ │ │ ├── intranges.py │ │ │ │ │ │ │ ├── package_data.py │ │ │ │ │ │ │ └── uts46data.py │ │ │ │ │ │ │ ├── ipaddress.py │ │ │ │ │ │ │ ├── msgpack │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── _version.py │ │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ │ ├── ext.py │ │ │ │ │ │ │ └── fallback.py │ │ │ │ │ │ │ ├── packaging │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── _compat.py │ │ │ │ │ │ │ ├── _structures.py │ │ │ │ │ │ │ ├── _typing.py │ │ │ │ │ │ │ ├── markers.py │ │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ │ ├── specifiers.py │ │ │ │ │ │ │ ├── tags.py │ │ │ │ │ │ │ ├── utils.py │ │ │ │ │ │ │ └── version.py │ │ │ │ │ │ │ ├── pep517 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── _in_process.py │ │ │ │ │ │ │ ├── build.py │ │ │ │ │ │ │ ├── check.py │ │ │ │ │ │ │ ├── colorlog.py │ │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ │ ├── dirtools.py │ │ │ │ │ │ │ ├── envbuild.py │ │ │ │ │ │ │ ├── meta.py │ │ │ │ │ │ │ └── wrappers.py │ │ │ │ │ │ │ ├── pkg_resources │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── py31compat.py │ │ │ │ │ │ │ ├── progress │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── bar.py │ │ │ │ │ │ │ ├── counter.py │ │ │ │ │ │ │ └── spinner.py │ │ │ │ │ │ │ ├── pyparsing.py │ │ │ │ │ │ │ ├── requests │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __version__.py │ │ │ │ │ │ │ ├── _internal_utils.py │ │ │ │ │ │ │ ├── adapters.py │ │ │ │ │ │ │ ├── api.py │ │ │ │ │ │ │ ├── auth.py │ │ │ │ │ │ │ ├── certs.py │ │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ │ ├── cookies.py │ │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ │ ├── help.py │ │ │ │ │ │ │ ├── hooks.py │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ ├── packages.py │ │ │ │ │ │ │ ├── sessions.py │ │ │ │ │ │ │ ├── status_codes.py │ │ │ │ │ │ │ ├── structures.py │ │ │ │ │ │ │ └── utils.py │ │ │ │ │ │ │ ├── resolvelib │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── compat │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ └── collections_abc.py │ │ │ │ │ │ │ ├── providers.py │ │ │ │ │ │ │ ├── reporters.py │ │ │ │ │ │ │ ├── resolvers.py │ │ │ │ │ │ │ └── structs.py │ │ │ │ │ │ │ ├── retrying.py │ │ │ │ │ │ │ ├── six.py │ │ │ │ │ │ │ ├── toml │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── decoder.py │ │ │ │ │ │ │ ├── encoder.py │ │ │ │ │ │ │ ├── ordered.py │ │ │ │ │ │ │ └── tz.py │ │ │ │ │ │ │ ├── urllib3 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── _collections.py │ │ │ │ │ │ │ ├── _version.py │ │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ │ ├── connectionpool.py │ │ │ │ │ │ │ ├── contrib │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── _appengine_environ.py │ │ │ │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ ├── bindings.py │ │ │ │ │ │ │ │ │ └── low_level.py │ │ │ │ │ │ │ │ ├── appengine.py │ │ │ │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ │ │ │ ├── securetransport.py │ │ │ │ │ │ │ │ └── socks.py │ │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ │ ├── fields.py │ │ │ │ │ │ │ ├── filepost.py │ │ │ │ │ │ │ ├── packages │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── backports │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ └── makefile.py │ │ │ │ │ │ │ │ ├── six.py │ │ │ │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ └── _implementation.py │ │ │ │ │ │ │ ├── poolmanager.py │ │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ │ │ ├── proxy.py │ │ │ │ │ │ │ │ ├── queue.py │ │ │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ │ │ ├── retry.py │ │ │ │ │ │ │ │ ├── ssl_.py │ │ │ │ │ │ │ │ ├── ssltransport.py │ │ │ │ │ │ │ │ ├── timeout.py │ │ │ │ │ │ │ │ ├── url.py │ │ │ │ │ │ │ │ └── wait.py │ │ │ │ │ │ │ ├── vendor.txt │ │ │ │ │ │ │ └── webencodings │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── labels.py │ │ │ │ │ │ │ ├── mklabels.py │ │ │ │ │ │ │ ├── tests.py │ │ │ │ │ │ │ └── x_user_defined.py │ │ │ │ │ ├── pkg_resources │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _vendor │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── appdirs.py │ │ │ │ │ │ │ ├── packaging │ │ │ │ │ │ │ │ ├── __about__.py │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── _compat.py │ │ │ │ │ │ │ │ ├── _structures.py │ │ │ │ │ │ │ │ ├── markers.py │ │ │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ │ │ ├── specifiers.py │ │ │ │ │ │ │ │ ├── tags.py │ │ │ │ │ │ │ │ ├── utils.py │ │ │ │ │ │ │ │ └── version.py │ │ │ │ │ │ │ ├── pyparsing.py │ │ │ │ │ │ │ └── six.py │ │ │ │ │ │ └── extern │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── pycparser-2.20.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pycparser │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _ast_gen.py │ │ │ │ │ │ ├── _build_tables.py │ │ │ │ │ │ ├── _c_ast.cfg │ │ │ │ │ │ ├── ast_transforms.py │ │ │ │ │ │ ├── c_ast.py │ │ │ │ │ │ ├── c_generator.py │ │ │ │ │ │ ├── c_lexer.py │ │ │ │ │ │ ├── c_parser.py │ │ │ │ │ │ ├── lextab.py │ │ │ │ │ │ ├── ply │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── cpp.py │ │ │ │ │ │ │ ├── ctokens.py │ │ │ │ │ │ │ ├── lex.py │ │ │ │ │ │ │ ├── yacc.py │ │ │ │ │ │ │ └── ygen.py │ │ │ │ │ │ ├── plyparser.py │ │ │ │ │ │ └── yacctab.py │ │ │ │ │ ├── pyobjc-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── REQUESTED │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ ├── top_level.txt │ │ │ │ │ │ └── zip-safe │ │ │ │ │ ├── pyobjc_core-7.0.1-py3.9-nspkg.pth │ │ │ │ │ ├── pyobjc_core-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ ├── pyobjc-api.h │ │ │ │ │ │ │ └── pyobjc-compat.h │ │ │ │ │ │ ├── namespace_packages.txt │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_AVFoundation-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_AVKit-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_Accessibility-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_Accounts-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_AdSupport-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_AddressBook-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_AppTrackingTransparency-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_AppleScriptKit-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_AppleScriptObjC-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_ApplicationServices-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_AuthenticationServices-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_AutomaticAssessmentConfiguration-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_Automator-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_BusinessChat-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_CFNetwork-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_CalendarStore-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_CallKit-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_ClassKit-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_CloudKit-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_Cocoa-7.0.1-py3.9-nspkg.pth │ │ │ │ │ ├── pyobjc_framework_Cocoa-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ ├── namespace_packages.txt │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_Collaboration-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_ColorSync-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_Contacts-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_ContactsUI-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_CoreAudio-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_CoreAudioKit-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_CoreBluetooth-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_CoreData-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_CoreHaptics-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_CoreLocation-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_CoreMIDI-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_CoreML-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_CoreMedia-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_CoreMediaIO-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_CoreMotion-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_CoreServices-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_CoreSpotlight-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_CoreText-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_CoreWLAN-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_CryptoTokenKit-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_DVDPlayback-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_DeviceCheck-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_DictionaryServices-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_DiscRecording-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_DiscRecordingUI-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_DiskArbitration-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_EventKit-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_ExceptionHandling-7.0.1-py3.9-nspkg.pth │ │ │ │ │ ├── pyobjc_framework_ExceptionHandling-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ ├── namespace_packages.txt │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_ExecutionPolicy-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_ExternalAccessory-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_FSEvents-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_FileProvider-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_FileProviderUI-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_FinderSync-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_GameCenter-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_GameController-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_GameKit-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_GameplayKit-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_IMServicePlugIn-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_IOSurface-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_ImageCaptureCore-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_InputMethodKit-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_InstallerPlugins-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_InstantMessage-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_Intents-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_KernelManagement-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_LatentSemanticMapping-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_LaunchServices-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_LinkPresentation-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_LocalAuthentication-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_MLCompute-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_MapKit-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_MediaAccessibility-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_MediaLibrary-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_MediaPlayer-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_MediaToolbox-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_Metal-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_MetalKit-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_MetalPerformanceShaders-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_MetalPerformanceShadersGraph-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_ModelIO-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_MultipeerConnectivity-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_NaturalLanguage-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_NetFS-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_Network-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_NetworkExtension-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_NotificationCenter-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_OSAKit-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_OSLog-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_OpenDirectory-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_PassKit-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_PencilKit-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_Photos-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_PhotosUI-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_PreferencePanes-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_PushKit-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_Quartz-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_QuickLookThumbnailing-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_ReplayKit-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_SafariServices-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_SceneKit-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_ScreenSaver-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_ScreenTime-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_ScriptingBridge-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_SearchKit-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_Security-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_SecurityFoundation-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_SecurityInterface-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_ServiceManagement-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_Social-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_SoundAnalysis-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_Speech-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_SpriteKit-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_StoreKit-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_SyncServices-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_SystemConfiguration-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_SystemExtensions-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_UniformTypeIdentifiers-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_UserNotifications-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_UserNotificationsUI-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_VideoSubscriberAccount-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_VideoToolbox-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_Virtualization-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_Vision-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_WebKit-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_iTunesLibrary-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── pyobjc_framework_libdispatch-7.0.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── setuptools-49.2.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── REQUESTED │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ ├── dependency_links.txt │ │ │ │ │ │ ├── entry_points.txt │ │ │ │ │ │ ├── top_level.txt │ │ │ │ │ │ └── zip-safe │ │ │ │ │ ├── setuptools │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _deprecation_warning.py │ │ │ │ │ │ ├── _distutils │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── _msvccompiler.py │ │ │ │ │ │ │ ├── archive_util.py │ │ │ │ │ │ │ ├── bcppcompiler.py │ │ │ │ │ │ │ ├── ccompiler.py │ │ │ │ │ │ │ ├── cmd.py │ │ │ │ │ │ │ ├── command │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── bdist.py │ │ │ │ │ │ │ │ ├── bdist_dumb.py │ │ │ │ │ │ │ │ ├── bdist_msi.py │ │ │ │ │ │ │ │ ├── bdist_rpm.py │ │ │ │ │ │ │ │ ├── bdist_wininst.py │ │ │ │ │ │ │ │ ├── build.py │ │ │ │ │ │ │ │ ├── build_clib.py │ │ │ │ │ │ │ │ ├── build_ext.py │ │ │ │ │ │ │ │ ├── build_py.py │ │ │ │ │ │ │ │ ├── build_scripts.py │ │ │ │ │ │ │ │ ├── check.py │ │ │ │ │ │ │ │ ├── clean.py │ │ │ │ │ │ │ │ ├── config.py │ │ │ │ │ │ │ │ ├── install.py │ │ │ │ │ │ │ │ ├── install_data.py │ │ │ │ │ │ │ │ ├── install_egg_info.py │ │ │ │ │ │ │ │ ├── install_headers.py │ │ │ │ │ │ │ │ ├── install_lib.py │ │ │ │ │ │ │ │ ├── install_scripts.py │ │ │ │ │ │ │ │ ├── register.py │ │ │ │ │ │ │ │ ├── sdist.py │ │ │ │ │ │ │ │ └── upload.py │ │ │ │ │ │ │ ├── config.py │ │ │ │ │ │ │ ├── core.py │ │ │ │ │ │ │ ├── cygwinccompiler.py │ │ │ │ │ │ │ ├── debug.py │ │ │ │ │ │ │ ├── dep_util.py │ │ │ │ │ │ │ ├── dir_util.py │ │ │ │ │ │ │ ├── dist.py │ │ │ │ │ │ │ ├── errors.py │ │ │ │ │ │ │ ├── extension.py │ │ │ │ │ │ │ ├── fancy_getopt.py │ │ │ │ │ │ │ ├── file_util.py │ │ │ │ │ │ │ ├── filelist.py │ │ │ │ │ │ │ ├── log.py │ │ │ │ │ │ │ ├── msvc9compiler.py │ │ │ │ │ │ │ ├── msvccompiler.py │ │ │ │ │ │ │ ├── spawn.py │ │ │ │ │ │ │ ├── sysconfig.py │ │ │ │ │ │ │ ├── text_file.py │ │ │ │ │ │ │ ├── unixccompiler.py │ │ │ │ │ │ │ ├── util.py │ │ │ │ │ │ │ ├── version.py │ │ │ │ │ │ │ └── versionpredicate.py │ │ │ │ │ │ ├── _imp.py │ │ │ │ │ │ ├── _vendor │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── ordered_set.py │ │ │ │ │ │ │ ├── packaging │ │ │ │ │ │ │ │ ├── __about__.py │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── _compat.py │ │ │ │ │ │ │ │ ├── _structures.py │ │ │ │ │ │ │ │ ├── markers.py │ │ │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ │ │ ├── specifiers.py │ │ │ │ │ │ │ │ ├── tags.py │ │ │ │ │ │ │ │ ├── utils.py │ │ │ │ │ │ │ │ └── version.py │ │ │ │ │ │ │ ├── pyparsing.py │ │ │ │ │ │ │ └── six.py │ │ │ │ │ │ ├── archive_util.py │ │ │ │ │ │ ├── build_meta.py │ │ │ │ │ │ ├── cli-32.exe │ │ │ │ │ │ ├── cli-64.exe │ │ │ │ │ │ ├── cli.exe │ │ │ │ │ │ ├── command │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── alias.py │ │ │ │ │ │ │ ├── bdist_egg.py │ │ │ │ │ │ │ ├── bdist_rpm.py │ │ │ │ │ │ │ ├── bdist_wininst.py │ │ │ │ │ │ │ ├── build_clib.py │ │ │ │ │ │ │ ├── build_ext.py │ │ │ │ │ │ │ ├── build_py.py │ │ │ │ │ │ │ ├── develop.py │ │ │ │ │ │ │ ├── dist_info.py │ │ │ │ │ │ │ ├── easy_install.py │ │ │ │ │ │ │ ├── egg_info.py │ │ │ │ │ │ │ ├── install.py │ │ │ │ │ │ │ ├── install_egg_info.py │ │ │ │ │ │ │ ├── install_lib.py │ │ │ │ │ │ │ ├── install_scripts.py │ │ │ │ │ │ │ ├── launcher manifest.xml │ │ │ │ │ │ │ ├── py36compat.py │ │ │ │ │ │ │ ├── register.py │ │ │ │ │ │ │ ├── rotate.py │ │ │ │ │ │ │ ├── saveopts.py │ │ │ │ │ │ │ ├── sdist.py │ │ │ │ │ │ │ ├── setopt.py │ │ │ │ │ │ │ ├── test.py │ │ │ │ │ │ │ ├── upload.py │ │ │ │ │ │ │ └── upload_docs.py │ │ │ │ │ │ ├── config.py │ │ │ │ │ │ ├── dep_util.py │ │ │ │ │ │ ├── depends.py │ │ │ │ │ │ ├── dist.py │ │ │ │ │ │ ├── distutils_patch.py │ │ │ │ │ │ ├── errors.py │ │ │ │ │ │ ├── extension.py │ │ │ │ │ │ ├── extern │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ ├── glob.py │ │ │ │ │ │ ├── gui-32.exe │ │ │ │ │ │ ├── gui-64.exe │ │ │ │ │ │ ├── gui.exe │ │ │ │ │ │ ├── installer.py │ │ │ │ │ │ ├── launch.py │ │ │ │ │ │ ├── lib2to3_ex.py │ │ │ │ │ │ ├── monkey.py │ │ │ │ │ │ ├── msvc.py │ │ │ │ │ │ ├── namespaces.py │ │ │ │ │ │ ├── package_index.py │ │ │ │ │ │ ├── py27compat.py │ │ │ │ │ │ ├── py31compat.py │ │ │ │ │ │ ├── py33compat.py │ │ │ │ │ │ ├── py34compat.py │ │ │ │ │ │ ├── sandbox.py │ │ │ │ │ │ ├── script (dev).tmpl │ │ │ │ │ │ ├── script.tmpl │ │ │ │ │ │ ├── ssl_support.py │ │ │ │ │ │ ├── unicode_utils.py │ │ │ │ │ │ ├── version.py │ │ │ │ │ │ ├── wheel.py │ │ │ │ │ │ └── windows_support.py │ │ │ │ │ ├── wheel-0.36.1.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── REQUESTED │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ ├── entry_points.txt │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ ├── wheel │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ ├── bdist_wheel.py │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── convert.py │ │ │ │ │ │ │ ├── pack.py │ │ │ │ │ │ │ └── unpack.py │ │ │ │ │ │ ├── macosx_libfile.py │ │ │ │ │ │ ├── metadata.py │ │ │ │ │ │ ├── pkginfo.py │ │ │ │ │ │ ├── util.py │ │ │ │ │ │ ├── vendored │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── packaging │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── _typing.py │ │ │ │ │ │ │ │ └── tags.py │ │ │ │ │ │ └── wheelfile.py │ │ │ │ │ ├── xattr-0.9.7.dist-info │ │ │ │ │ │ ├── INSTALLER │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── METADATA │ │ │ │ │ │ ├── RECORD │ │ │ │ │ │ ├── REQUESTED │ │ │ │ │ │ ├── WHEEL │ │ │ │ │ │ ├── entry_points.txt │ │ │ │ │ │ └── top_level.txt │ │ │ │ │ └── xattr │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _lib.abi3.so │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ ├── lib.py │ │ │ │ │ │ ├── lib_build.py │ │ │ │ │ │ ├── pyxattr_compat.py │ │ │ │ │ │ └── tool.py │ │ │ │ ├── site.py │ │ │ │ ├── smtpd.py │ │ │ │ ├── smtplib.py │ │ │ │ ├── sndhdr.py │ │ │ │ ├── socket.py │ │ │ │ ├── socketserver.py │ │ │ │ ├── sqlite3 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── dbapi2.py │ │ │ │ │ ├── dump.py │ │ │ │ │ └── test │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── backup.py │ │ │ │ │ │ ├── dbapi.py │ │ │ │ │ │ ├── dump.py │ │ │ │ │ │ ├── factory.py │ │ │ │ │ │ ├── hooks.py │ │ │ │ │ │ ├── regression.py │ │ │ │ │ │ ├── transactions.py │ │ │ │ │ │ ├── types.py │ │ │ │ │ │ └── userfunctions.py │ │ │ │ ├── sre_compile.py │ │ │ │ ├── sre_constants.py │ │ │ │ ├── sre_parse.py │ │ │ │ ├── ssl.py │ │ │ │ ├── stat.py │ │ │ │ ├── statistics.py │ │ │ │ ├── string.py │ │ │ │ ├── stringprep.py │ │ │ │ ├── struct.py │ │ │ │ ├── subprocess.py │ │ │ │ ├── sunau.py │ │ │ │ ├── symbol.py │ │ │ │ ├── symtable.py │ │ │ │ ├── sysconfig.py │ │ │ │ ├── tabnanny.py │ │ │ │ ├── tarfile.py │ │ │ │ ├── telnetlib.py │ │ │ │ ├── tempfile.py │ │ │ │ ├── test │ │ │ │ │ ├── Sine-1000Hz-300ms.aif │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── _test_multiprocessing.py │ │ │ │ │ ├── allsans.pem │ │ │ │ │ ├── ann_module.py │ │ │ │ │ ├── ann_module2.py │ │ │ │ │ ├── ann_module3.py │ │ │ │ │ ├── audiodata │ │ │ │ │ │ ├── pluck-alaw.aifc │ │ │ │ │ │ ├── pluck-pcm16.aiff │ │ │ │ │ │ ├── pluck-pcm16.au │ │ │ │ │ │ ├── pluck-pcm16.wav │ │ │ │ │ │ ├── pluck-pcm24.aiff │ │ │ │ │ │ ├── pluck-pcm24.au │ │ │ │ │ │ ├── pluck-pcm24.wav │ │ │ │ │ │ ├── pluck-pcm32.aiff │ │ │ │ │ │ ├── pluck-pcm32.au │ │ │ │ │ │ ├── pluck-pcm32.wav │ │ │ │ │ │ ├── pluck-pcm8.aiff │ │ │ │ │ │ ├── pluck-pcm8.au │ │ │ │ │ │ ├── pluck-pcm8.wav │ │ │ │ │ │ ├── pluck-ulaw.aifc │ │ │ │ │ │ └── pluck-ulaw.au │ │ │ │ │ ├── audiotest.au │ │ │ │ │ ├── audiotests.py │ │ │ │ │ ├── audit-tests.py │ │ │ │ │ ├── autotest.py │ │ │ │ │ ├── bad_coding.py │ │ │ │ │ ├── bad_coding2.py │ │ │ │ │ ├── bad_getattr.py │ │ │ │ │ ├── bad_getattr2.py │ │ │ │ │ ├── bad_getattr3.py │ │ │ │ │ ├── badcert.pem │ │ │ │ │ ├── badkey.pem │ │ │ │ │ ├── badsyntax_3131.py │ │ │ │ │ ├── badsyntax_future10.py │ │ │ │ │ ├── badsyntax_future3.py │ │ │ │ │ ├── badsyntax_future4.py │ │ │ │ │ ├── badsyntax_future5.py │ │ │ │ │ ├── badsyntax_future6.py │ │ │ │ │ ├── badsyntax_future7.py │ │ │ │ │ ├── badsyntax_future8.py │ │ │ │ │ ├── badsyntax_future9.py │ │ │ │ │ ├── badsyntax_pep3120.py │ │ │ │ │ ├── bisect_cmd.py │ │ │ │ │ ├── capath │ │ │ │ │ │ ├── 4e1295a3.0 │ │ │ │ │ │ ├── 5ed36f99.0 │ │ │ │ │ │ ├── 6e88d7b8.0 │ │ │ │ │ │ ├── 99d0fa06.0 │ │ │ │ │ │ ├── b1930218.0 │ │ │ │ │ │ └── ceff1710.0 │ │ │ │ │ ├── cfgparser.1 │ │ │ │ │ ├── cfgparser.2 │ │ │ │ │ ├── cfgparser.3 │ │ │ │ │ ├── cjkencodings │ │ │ │ │ │ ├── big5-utf8.txt │ │ │ │ │ │ ├── big5.txt │ │ │ │ │ │ ├── big5hkscs-utf8.txt │ │ │ │ │ │ ├── big5hkscs.txt │ │ │ │ │ │ ├── cp949-utf8.txt │ │ │ │ │ │ ├── cp949.txt │ │ │ │ │ │ ├── euc_jisx0213-utf8.txt │ │ │ │ │ │ ├── euc_jisx0213.txt │ │ │ │ │ │ ├── euc_jp-utf8.txt │ │ │ │ │ │ ├── euc_jp.txt │ │ │ │ │ │ ├── euc_kr-utf8.txt │ │ │ │ │ │ ├── euc_kr.txt │ │ │ │ │ │ ├── gb18030-utf8.txt │ │ │ │ │ │ ├── gb18030.txt │ │ │ │ │ │ ├── gb2312-utf8.txt │ │ │ │ │ │ ├── gb2312.txt │ │ │ │ │ │ ├── gbk-utf8.txt │ │ │ │ │ │ ├── gbk.txt │ │ │ │ │ │ ├── hz-utf8.txt │ │ │ │ │ │ ├── hz.txt │ │ │ │ │ │ ├── iso2022_jp-utf8.txt │ │ │ │ │ │ ├── iso2022_jp.txt │ │ │ │ │ │ ├── iso2022_kr-utf8.txt │ │ │ │ │ │ ├── iso2022_kr.txt │ │ │ │ │ │ ├── johab-utf8.txt │ │ │ │ │ │ ├── johab.txt │ │ │ │ │ │ ├── shift_jis-utf8.txt │ │ │ │ │ │ ├── shift_jis.txt │ │ │ │ │ │ ├── shift_jisx0213-utf8.txt │ │ │ │ │ │ └── shift_jisx0213.txt │ │ │ │ │ ├── clinic.test │ │ │ │ │ ├── cmath_testcases.txt │ │ │ │ │ ├── coding20731.py │ │ │ │ │ ├── curses_tests.py │ │ │ │ │ ├── data │ │ │ │ │ │ └── README │ │ │ │ │ ├── dataclass_module_1.py │ │ │ │ │ ├── dataclass_module_1_str.py │ │ │ │ │ ├── dataclass_module_2.py │ │ │ │ │ ├── dataclass_module_2_str.py │ │ │ │ │ ├── dataclass_textanno.py │ │ │ │ │ ├── datetimetester.py │ │ │ │ │ ├── decimaltestdata │ │ │ │ │ │ ├── abs.decTest │ │ │ │ │ │ ├── add.decTest │ │ │ │ │ │ ├── and.decTest │ │ │ │ │ │ ├── base.decTest │ │ │ │ │ │ ├── clamp.decTest │ │ │ │ │ │ ├── class.decTest │ │ │ │ │ │ ├── compare.decTest │ │ │ │ │ │ ├── comparetotal.decTest │ │ │ │ │ │ ├── comparetotmag.decTest │ │ │ │ │ │ ├── copy.decTest │ │ │ │ │ │ ├── copyabs.decTest │ │ │ │ │ │ ├── copynegate.decTest │ │ │ │ │ │ ├── copysign.decTest │ │ │ │ │ │ ├── ddAbs.decTest │ │ │ │ │ │ ├── ddAdd.decTest │ │ │ │ │ │ ├── ddAnd.decTest │ │ │ │ │ │ ├── ddBase.decTest │ │ │ │ │ │ ├── ddCanonical.decTest │ │ │ │ │ │ ├── ddClass.decTest │ │ │ │ │ │ ├── ddCompare.decTest │ │ │ │ │ │ ├── ddCompareSig.decTest │ │ │ │ │ │ ├── ddCompareTotal.decTest │ │ │ │ │ │ ├── ddCompareTotalMag.decTest │ │ │ │ │ │ ├── ddCopy.decTest │ │ │ │ │ │ ├── ddCopyAbs.decTest │ │ │ │ │ │ ├── ddCopyNegate.decTest │ │ │ │ │ │ ├── ddCopySign.decTest │ │ │ │ │ │ ├── ddDivide.decTest │ │ │ │ │ │ ├── ddDivideInt.decTest │ │ │ │ │ │ ├── ddEncode.decTest │ │ │ │ │ │ ├── ddFMA.decTest │ │ │ │ │ │ ├── ddInvert.decTest │ │ │ │ │ │ ├── ddLogB.decTest │ │ │ │ │ │ ├── ddMax.decTest │ │ │ │ │ │ ├── ddMaxMag.decTest │ │ │ │ │ │ ├── ddMin.decTest │ │ │ │ │ │ ├── ddMinMag.decTest │ │ │ │ │ │ ├── ddMinus.decTest │ │ │ │ │ │ ├── ddMultiply.decTest │ │ │ │ │ │ ├── ddNextMinus.decTest │ │ │ │ │ │ ├── ddNextPlus.decTest │ │ │ │ │ │ ├── ddNextToward.decTest │ │ │ │ │ │ ├── ddOr.decTest │ │ │ │ │ │ ├── ddPlus.decTest │ │ │ │ │ │ ├── ddQuantize.decTest │ │ │ │ │ │ ├── ddReduce.decTest │ │ │ │ │ │ ├── ddRemainder.decTest │ │ │ │ │ │ ├── ddRemainderNear.decTest │ │ │ │ │ │ ├── ddRotate.decTest │ │ │ │ │ │ ├── ddSameQuantum.decTest │ │ │ │ │ │ ├── ddScaleB.decTest │ │ │ │ │ │ ├── ddShift.decTest │ │ │ │ │ │ ├── ddSubtract.decTest │ │ │ │ │ │ ├── ddToIntegral.decTest │ │ │ │ │ │ ├── ddXor.decTest │ │ │ │ │ │ ├── decDouble.decTest │ │ │ │ │ │ ├── decQuad.decTest │ │ │ │ │ │ ├── decSingle.decTest │ │ │ │ │ │ ├── divide.decTest │ │ │ │ │ │ ├── divideint.decTest │ │ │ │ │ │ ├── dqAbs.decTest │ │ │ │ │ │ ├── dqAdd.decTest │ │ │ │ │ │ ├── dqAnd.decTest │ │ │ │ │ │ ├── dqBase.decTest │ │ │ │ │ │ ├── dqCanonical.decTest │ │ │ │ │ │ ├── dqClass.decTest │ │ │ │ │ │ ├── dqCompare.decTest │ │ │ │ │ │ ├── dqCompareSig.decTest │ │ │ │ │ │ ├── dqCompareTotal.decTest │ │ │ │ │ │ ├── dqCompareTotalMag.decTest │ │ │ │ │ │ ├── dqCopy.decTest │ │ │ │ │ │ ├── dqCopyAbs.decTest │ │ │ │ │ │ ├── dqCopyNegate.decTest │ │ │ │ │ │ ├── dqCopySign.decTest │ │ │ │ │ │ ├── dqDivide.decTest │ │ │ │ │ │ ├── dqDivideInt.decTest │ │ │ │ │ │ ├── dqEncode.decTest │ │ │ │ │ │ ├── dqFMA.decTest │ │ │ │ │ │ ├── dqInvert.decTest │ │ │ │ │ │ ├── dqLogB.decTest │ │ │ │ │ │ ├── dqMax.decTest │ │ │ │ │ │ ├── dqMaxMag.decTest │ │ │ │ │ │ ├── dqMin.decTest │ │ │ │ │ │ ├── dqMinMag.decTest │ │ │ │ │ │ ├── dqMinus.decTest │ │ │ │ │ │ ├── dqMultiply.decTest │ │ │ │ │ │ ├── dqNextMinus.decTest │ │ │ │ │ │ ├── dqNextPlus.decTest │ │ │ │ │ │ ├── dqNextToward.decTest │ │ │ │ │ │ ├── dqOr.decTest │ │ │ │ │ │ ├── dqPlus.decTest │ │ │ │ │ │ ├── dqQuantize.decTest │ │ │ │ │ │ ├── dqReduce.decTest │ │ │ │ │ │ ├── dqRemainder.decTest │ │ │ │ │ │ ├── dqRemainderNear.decTest │ │ │ │ │ │ ├── dqRotate.decTest │ │ │ │ │ │ ├── dqSameQuantum.decTest │ │ │ │ │ │ ├── dqScaleB.decTest │ │ │ │ │ │ ├── dqShift.decTest │ │ │ │ │ │ ├── dqSubtract.decTest │ │ │ │ │ │ ├── dqToIntegral.decTest │ │ │ │ │ │ ├── dqXor.decTest │ │ │ │ │ │ ├── dsBase.decTest │ │ │ │ │ │ ├── dsEncode.decTest │ │ │ │ │ │ ├── exp.decTest │ │ │ │ │ │ ├── extra.decTest │ │ │ │ │ │ ├── fma.decTest │ │ │ │ │ │ ├── inexact.decTest │ │ │ │ │ │ ├── invert.decTest │ │ │ │ │ │ ├── ln.decTest │ │ │ │ │ │ ├── log10.decTest │ │ │ │ │ │ ├── logb.decTest │ │ │ │ │ │ ├── max.decTest │ │ │ │ │ │ ├── maxmag.decTest │ │ │ │ │ │ ├── min.decTest │ │ │ │ │ │ ├── minmag.decTest │ │ │ │ │ │ ├── minus.decTest │ │ │ │ │ │ ├── multiply.decTest │ │ │ │ │ │ ├── nextminus.decTest │ │ │ │ │ │ ├── nextplus.decTest │ │ │ │ │ │ ├── nexttoward.decTest │ │ │ │ │ │ ├── or.decTest │ │ │ │ │ │ ├── plus.decTest │ │ │ │ │ │ ├── power.decTest │ │ │ │ │ │ ├── powersqrt.decTest │ │ │ │ │ │ ├── quantize.decTest │ │ │ │ │ │ ├── randomBound32.decTest │ │ │ │ │ │ ├── randoms.decTest │ │ │ │ │ │ ├── reduce.decTest │ │ │ │ │ │ ├── remainder.decTest │ │ │ │ │ │ ├── remainderNear.decTest │ │ │ │ │ │ ├── rescale.decTest │ │ │ │ │ │ ├── rotate.decTest │ │ │ │ │ │ ├── rounding.decTest │ │ │ │ │ │ ├── samequantum.decTest │ │ │ │ │ │ ├── scaleb.decTest │ │ │ │ │ │ ├── shift.decTest │ │ │ │ │ │ ├── squareroot.decTest │ │ │ │ │ │ ├── subtract.decTest │ │ │ │ │ │ ├── testall.decTest │ │ │ │ │ │ ├── tointegral.decTest │ │ │ │ │ │ ├── tointegralx.decTest │ │ │ │ │ │ └── xor.decTest │ │ │ │ │ ├── dis_module.py │ │ │ │ │ ├── doctest_aliases.py │ │ │ │ │ ├── double_const.py │ │ │ │ │ ├── dtracedata │ │ │ │ │ │ ├── assert_usable.d │ │ │ │ │ │ ├── assert_usable.stp │ │ │ │ │ │ ├── call_stack.d │ │ │ │ │ │ ├── call_stack.d.expected │ │ │ │ │ │ ├── call_stack.py │ │ │ │ │ │ ├── call_stack.stp │ │ │ │ │ │ ├── call_stack.stp.expected │ │ │ │ │ │ ├── gc.d │ │ │ │ │ │ ├── gc.d.expected │ │ │ │ │ │ ├── gc.py │ │ │ │ │ │ ├── gc.stp │ │ │ │ │ │ ├── gc.stp.expected │ │ │ │ │ │ ├── instance.py │ │ │ │ │ │ ├── line.d │ │ │ │ │ │ ├── line.d.expected │ │ │ │ │ │ └── line.py │ │ │ │ │ ├── eintrdata │ │ │ │ │ │ └── eintr_tester.py │ │ │ │ │ ├── empty.vbs │ │ │ │ │ ├── encoded_modules │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── module_iso_8859_1.py │ │ │ │ │ │ └── module_koi8_r.py │ │ │ │ │ ├── exception_hierarchy.txt │ │ │ │ │ ├── ffdh3072.pem │ │ │ │ │ ├── final_a.py │ │ │ │ │ ├── final_b.py │ │ │ │ │ ├── floating_points.txt │ │ │ │ │ ├── fork_wait.py │ │ │ │ │ ├── formatfloat_testcases.txt │ │ │ │ │ ├── future_test1.py │ │ │ │ │ ├── future_test2.py │ │ │ │ │ ├── gdb_sample.py │ │ │ │ │ ├── good_getattr.py │ │ │ │ │ ├── idnsans.pem │ │ │ │ │ ├── ieee754.txt │ │ │ │ │ ├── imghdrdata │ │ │ │ │ │ ├── python.bmp │ │ │ │ │ │ ├── python.exr │ │ │ │ │ │ ├── python.gif │ │ │ │ │ │ ├── python.jpg │ │ │ │ │ │ ├── python.pbm │ │ │ │ │ │ ├── python.pgm │ │ │ │ │ │ ├── python.png │ │ │ │ │ │ ├── python.ppm │ │ │ │ │ │ ├── python.ras │ │ │ │ │ │ ├── python.sgi │ │ │ │ │ │ ├── python.tiff │ │ │ │ │ │ ├── python.webp │ │ │ │ │ │ └── python.xbm │ │ │ │ │ ├── imp_dummy.py │ │ │ │ │ ├── inspect_fodder.py │ │ │ │ │ ├── inspect_fodder2.py │ │ │ │ │ ├── keycert.passwd.pem │ │ │ │ │ ├── keycert.pem │ │ │ │ │ ├── keycert2.pem │ │ │ │ │ ├── keycert3.pem │ │ │ │ │ ├── keycert4.pem │ │ │ │ │ ├── keycertecc.pem │ │ │ │ │ ├── libregrtest │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── cmdline.py │ │ │ │ │ │ ├── main.py │ │ │ │ │ │ ├── pgo.py │ │ │ │ │ │ ├── refleak.py │ │ │ │ │ │ ├── runtest.py │ │ │ │ │ │ ├── runtest_mp.py │ │ │ │ │ │ ├── save_env.py │ │ │ │ │ │ ├── setup.py │ │ │ │ │ │ ├── utils.py │ │ │ │ │ │ └── win_utils.py │ │ │ │ │ ├── list_tests.py │ │ │ │ │ ├── lock_tests.py │ │ │ │ │ ├── mailcap.txt │ │ │ │ │ ├── make_ssl_certs.py │ │ │ │ │ ├── mapping_tests.py │ │ │ │ │ ├── math_testcases.txt │ │ │ │ │ ├── memory_watchdog.py │ │ │ │ │ ├── mime.types │ │ │ │ │ ├── mock_socket.py │ │ │ │ │ ├── mod_generics_cache.py │ │ │ │ │ ├── mp_fork_bomb.py │ │ │ │ │ ├── mp_preload.py │ │ │ │ │ ├── multibytecodec_support.py │ │ │ │ │ ├── nokia.pem │ │ │ │ │ ├── nullbytecert.pem │ │ │ │ │ ├── nullcert.pem │ │ │ │ │ ├── pickletester.py │ │ │ │ │ ├── profilee.py │ │ │ │ │ ├── pstats.pck │ │ │ │ │ ├── pycacert.pem │ │ │ │ │ ├── pycakey.pem │ │ │ │ │ ├── pyclbr_input.py │ │ │ │ │ ├── pydoc_mod.py │ │ │ │ │ ├── pydocfodder.py │ │ │ │ │ ├── pythoninfo.py │ │ │ │ │ ├── randv2_32.pck │ │ │ │ │ ├── randv2_64.pck │ │ │ │ │ ├── randv3.pck │ │ │ │ │ ├── re_tests.py │ │ │ │ │ ├── recursion.tar │ │ │ │ │ ├── regrtest.py │ │ │ │ │ ├── relimport.py │ │ │ │ │ ├── reperf.py │ │ │ │ │ ├── revocation.crl │ │ │ │ │ ├── sample_doctest.py │ │ │ │ │ ├── sample_doctest_no_docstrings.py │ │ │ │ │ ├── sample_doctest_no_doctests.py │ │ │ │ │ ├── secp384r1.pem │ │ │ │ │ ├── selfsigned_pythontestdotnet.pem │ │ │ │ │ ├── seq_tests.py │ │ │ │ │ ├── sgml_input.html │ │ │ │ │ ├── signalinterproctester.py │ │ │ │ │ ├── sndhdrdata │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── sndhdr.8svx │ │ │ │ │ │ ├── sndhdr.aifc │ │ │ │ │ │ ├── sndhdr.aiff │ │ │ │ │ │ ├── sndhdr.au │ │ │ │ │ │ ├── sndhdr.hcom │ │ │ │ │ │ ├── sndhdr.sndt │ │ │ │ │ │ ├── sndhdr.voc │ │ │ │ │ │ └── sndhdr.wav │ │ │ │ │ ├── sortperf.py │ │ │ │ │ ├── ssl_cert.pem │ │ │ │ │ ├── ssl_key.passwd.pem │ │ │ │ │ ├── ssl_key.pem │ │ │ │ │ ├── ssl_servers.py │ │ │ │ │ ├── ssltests.py │ │ │ │ │ ├── string_tests.py │ │ │ │ │ ├── subprocessdata │ │ │ │ │ │ ├── fd_status.py │ │ │ │ │ │ ├── input_reader.py │ │ │ │ │ │ ├── qcat.py │ │ │ │ │ │ ├── qgrep.py │ │ │ │ │ │ └── sigchild_ignore.py │ │ │ │ │ ├── support │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── bytecode_helper.py │ │ │ │ │ │ ├── hashlib_helper.py │ │ │ │ │ │ ├── logging_helper.py │ │ │ │ │ │ ├── script_helper.py │ │ │ │ │ │ ├── socket_helper.py │ │ │ │ │ │ └── testresult.py │ │ │ │ │ ├── talos-2019-0758.pem │ │ │ │ │ ├── test___all__.py │ │ │ │ │ ├── test___future__.py │ │ │ │ │ ├── test__locale.py │ │ │ │ │ ├── test__opcode.py │ │ │ │ │ ├── test__osx_support.py │ │ │ │ │ ├── test__xxsubinterpreters.py │ │ │ │ │ ├── test_abc.py │ │ │ │ │ ├── test_abstract_numbers.py │ │ │ │ │ ├── test_aifc.py │ │ │ │ │ ├── test_argparse.py │ │ │ │ │ ├── test_array.py │ │ │ │ │ ├── test_asdl_parser.py │ │ │ │ │ ├── test_ast.py │ │ │ │ │ ├── test_asyncgen.py │ │ │ │ │ ├── test_asynchat.py │ │ │ │ │ ├── test_asyncio │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ ├── echo.py │ │ │ │ │ │ ├── echo2.py │ │ │ │ │ │ ├── echo3.py │ │ │ │ │ │ ├── functional.py │ │ │ │ │ │ ├── test_base_events.py │ │ │ │ │ │ ├── test_buffered_proto.py │ │ │ │ │ │ ├── test_context.py │ │ │ │ │ │ ├── test_events.py │ │ │ │ │ │ ├── test_futures.py │ │ │ │ │ │ ├── test_futures2.py │ │ │ │ │ │ ├── test_locks.py │ │ │ │ │ │ ├── test_pep492.py │ │ │ │ │ │ ├── test_proactor_events.py │ │ │ │ │ │ ├── test_protocols.py │ │ │ │ │ │ ├── test_queues.py │ │ │ │ │ │ ├── test_runners.py │ │ │ │ │ │ ├── test_selector_events.py │ │ │ │ │ │ ├── test_sendfile.py │ │ │ │ │ │ ├── test_server.py │ │ │ │ │ │ ├── test_sock_lowlevel.py │ │ │ │ │ │ ├── test_sslproto.py │ │ │ │ │ │ ├── test_streams.py │ │ │ │ │ │ ├── test_subprocess.py │ │ │ │ │ │ ├── test_tasks.py │ │ │ │ │ │ ├── test_threads.py │ │ │ │ │ │ ├── test_transports.py │ │ │ │ │ │ ├── test_unix_events.py │ │ │ │ │ │ ├── test_windows_events.py │ │ │ │ │ │ ├── test_windows_utils.py │ │ │ │ │ │ └── utils.py │ │ │ │ │ ├── test_asyncore.py │ │ │ │ │ ├── test_atexit.py │ │ │ │ │ ├── test_audioop.py │ │ │ │ │ ├── test_audit.py │ │ │ │ │ ├── test_augassign.py │ │ │ │ │ ├── test_base64.py │ │ │ │ │ ├── test_baseexception.py │ │ │ │ │ ├── test_bdb.py │ │ │ │ │ ├── test_bigaddrspace.py │ │ │ │ │ ├── test_bigmem.py │ │ │ │ │ ├── test_binascii.py │ │ │ │ │ ├── test_binhex.py │ │ │ │ │ ├── test_binop.py │ │ │ │ │ ├── test_bisect.py │ │ │ │ │ ├── test_bool.py │ │ │ │ │ ├── test_buffer.py │ │ │ │ │ ├── test_bufio.py │ │ │ │ │ ├── test_builtin.py │ │ │ │ │ ├── test_bytes.py │ │ │ │ │ ├── test_bz2.py │ │ │ │ │ ├── test_c_locale_coercion.py │ │ │ │ │ ├── test_calendar.py │ │ │ │ │ ├── test_call.py │ │ │ │ │ ├── test_capi.py │ │ │ │ │ ├── test_cgi.py │ │ │ │ │ ├── test_cgitb.py │ │ │ │ │ ├── test_charmapcodec.py │ │ │ │ │ ├── test_check_c_globals.py │ │ │ │ │ ├── test_class.py │ │ │ │ │ ├── test_clinic.py │ │ │ │ │ ├── test_cmath.py │ │ │ │ │ ├── test_cmd.py │ │ │ │ │ ├── test_cmd_line.py │ │ │ │ │ ├── test_cmd_line_script.py │ │ │ │ │ ├── test_code.py │ │ │ │ │ ├── test_code_module.py │ │ │ │ │ ├── test_codeccallbacks.py │ │ │ │ │ ├── test_codecencodings_cn.py │ │ │ │ │ ├── test_codecencodings_hk.py │ │ │ │ │ ├── test_codecencodings_iso2022.py │ │ │ │ │ ├── test_codecencodings_jp.py │ │ │ │ │ ├── test_codecencodings_kr.py │ │ │ │ │ ├── test_codecencodings_tw.py │ │ │ │ │ ├── test_codecmaps_cn.py │ │ │ │ │ ├── test_codecmaps_hk.py │ │ │ │ │ ├── test_codecmaps_jp.py │ │ │ │ │ ├── test_codecmaps_kr.py │ │ │ │ │ ├── test_codecmaps_tw.py │ │ │ │ │ ├── test_codecs.py │ │ │ │ │ ├── test_codeop.py │ │ │ │ │ ├── test_collections.py │ │ │ │ │ ├── test_colorsys.py │ │ │ │ │ ├── test_compare.py │ │ │ │ │ ├── test_compile.py │ │ │ │ │ ├── test_compileall.py │ │ │ │ │ ├── test_complex.py │ │ │ │ │ ├── test_concurrent_futures.py │ │ │ │ │ ├── test_configparser.py │ │ │ │ │ ├── test_contains.py │ │ │ │ │ ├── test_context.py │ │ │ │ │ ├── test_contextlib.py │ │ │ │ │ ├── test_contextlib_async.py │ │ │ │ │ ├── test_copy.py │ │ │ │ │ ├── test_copyreg.py │ │ │ │ │ ├── test_coroutines.py │ │ │ │ │ ├── test_cprofile.py │ │ │ │ │ ├── test_crashers.py │ │ │ │ │ ├── test_crypt.py │ │ │ │ │ ├── test_csv.py │ │ │ │ │ ├── test_ctypes.py │ │ │ │ │ ├── test_curses.py │ │ │ │ │ ├── test_dataclasses.py │ │ │ │ │ ├── test_datetime.py │ │ │ │ │ ├── test_dbm.py │ │ │ │ │ ├── test_dbm_dumb.py │ │ │ │ │ ├── test_dbm_gnu.py │ │ │ │ │ ├── test_dbm_ndbm.py │ │ │ │ │ ├── test_decimal.py │ │ │ │ │ ├── test_decorators.py │ │ │ │ │ ├── test_defaultdict.py │ │ │ │ │ ├── test_deque.py │ │ │ │ │ ├── test_descr.py │ │ │ │ │ ├── test_descrtut.py │ │ │ │ │ ├── test_devpoll.py │ │ │ │ │ ├── test_dict.py │ │ │ │ │ ├── test_dict_version.py │ │ │ │ │ ├── test_dictcomps.py │ │ │ │ │ ├── test_dictviews.py │ │ │ │ │ ├── test_difflib.py │ │ │ │ │ ├── test_difflib_expect.html │ │ │ │ │ ├── test_dis.py │ │ │ │ │ ├── test_distutils.py │ │ │ │ │ ├── test_doctest.py │ │ │ │ │ ├── test_doctest.txt │ │ │ │ │ ├── test_doctest2.py │ │ │ │ │ ├── test_doctest2.txt │ │ │ │ │ ├── test_doctest3.txt │ │ │ │ │ ├── test_doctest4.txt │ │ │ │ │ ├── test_docxmlrpc.py │ │ │ │ │ ├── test_dtrace.py │ │ │ │ │ ├── test_dynamic.py │ │ │ │ │ ├── test_dynamicclassattribute.py │ │ │ │ │ ├── test_eintr.py │ │ │ │ │ ├── test_email │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── PyBanner048.gif │ │ │ │ │ │ │ ├── audiotest.au │ │ │ │ │ │ │ ├── msg_01.txt │ │ │ │ │ │ │ ├── msg_02.txt │ │ │ │ │ │ │ ├── msg_03.txt │ │ │ │ │ │ │ ├── msg_04.txt │ │ │ │ │ │ │ ├── msg_05.txt │ │ │ │ │ │ │ ├── msg_06.txt │ │ │ │ │ │ │ ├── msg_07.txt │ │ │ │ │ │ │ ├── msg_08.txt │ │ │ │ │ │ │ ├── msg_09.txt │ │ │ │ │ │ │ ├── msg_10.txt │ │ │ │ │ │ │ ├── msg_11.txt │ │ │ │ │ │ │ ├── msg_12.txt │ │ │ │ │ │ │ ├── msg_12a.txt │ │ │ │ │ │ │ ├── msg_13.txt │ │ │ │ │ │ │ ├── msg_14.txt │ │ │ │ │ │ │ ├── msg_15.txt │ │ │ │ │ │ │ ├── msg_16.txt │ │ │ │ │ │ │ ├── msg_17.txt │ │ │ │ │ │ │ ├── msg_18.txt │ │ │ │ │ │ │ ├── msg_19.txt │ │ │ │ │ │ │ ├── msg_20.txt │ │ │ │ │ │ │ ├── msg_21.txt │ │ │ │ │ │ │ ├── msg_22.txt │ │ │ │ │ │ │ ├── msg_23.txt │ │ │ │ │ │ │ ├── msg_24.txt │ │ │ │ │ │ │ ├── msg_25.txt │ │ │ │ │ │ │ ├── msg_26.txt │ │ │ │ │ │ │ ├── msg_27.txt │ │ │ │ │ │ │ ├── msg_28.txt │ │ │ │ │ │ │ ├── msg_29.txt │ │ │ │ │ │ │ ├── msg_30.txt │ │ │ │ │ │ │ ├── msg_31.txt │ │ │ │ │ │ │ ├── msg_32.txt │ │ │ │ │ │ │ ├── msg_33.txt │ │ │ │ │ │ │ ├── msg_34.txt │ │ │ │ │ │ │ ├── msg_35.txt │ │ │ │ │ │ │ ├── msg_36.txt │ │ │ │ │ │ │ ├── msg_37.txt │ │ │ │ │ │ │ ├── msg_38.txt │ │ │ │ │ │ │ ├── msg_39.txt │ │ │ │ │ │ │ ├── msg_40.txt │ │ │ │ │ │ │ ├── msg_41.txt │ │ │ │ │ │ │ ├── msg_42.txt │ │ │ │ │ │ │ ├── msg_43.txt │ │ │ │ │ │ │ ├── msg_44.txt │ │ │ │ │ │ │ ├── msg_45.txt │ │ │ │ │ │ │ └── msg_46.txt │ │ │ │ │ │ ├── test__encoded_words.py │ │ │ │ │ │ ├── test__header_value_parser.py │ │ │ │ │ │ ├── test_asian_codecs.py │ │ │ │ │ │ ├── test_contentmanager.py │ │ │ │ │ │ ├── test_defect_handling.py │ │ │ │ │ │ ├── test_email.py │ │ │ │ │ │ ├── test_generator.py │ │ │ │ │ │ ├── test_headerregistry.py │ │ │ │ │ │ ├── test_inversion.py │ │ │ │ │ │ ├── test_message.py │ │ │ │ │ │ ├── test_parser.py │ │ │ │ │ │ ├── test_pickleable.py │ │ │ │ │ │ ├── test_policy.py │ │ │ │ │ │ ├── test_utils.py │ │ │ │ │ │ └── torture_test.py │ │ │ │ │ ├── test_embed.py │ │ │ │ │ ├── test_ensurepip.py │ │ │ │ │ ├── test_enum.py │ │ │ │ │ ├── test_enumerate.py │ │ │ │ │ ├── test_eof.py │ │ │ │ │ ├── test_epoll.py │ │ │ │ │ ├── test_errno.py │ │ │ │ │ ├── test_exception_hierarchy.py │ │ │ │ │ ├── test_exception_variations.py │ │ │ │ │ ├── test_exceptions.py │ │ │ │ │ ├── test_extcall.py │ │ │ │ │ ├── test_faulthandler.py │ │ │ │ │ ├── test_fcntl.py │ │ │ │ │ ├── test_file.py │ │ │ │ │ ├── test_file_eintr.py │ │ │ │ │ ├── test_filecmp.py │ │ │ │ │ ├── test_fileinput.py │ │ │ │ │ ├── test_fileio.py │ │ │ │ │ ├── test_finalization.py │ │ │ │ │ ├── test_float.py │ │ │ │ │ ├── test_flufl.py │ │ │ │ │ ├── test_fnmatch.py │ │ │ │ │ ├── test_fork1.py │ │ │ │ │ ├── test_format.py │ │ │ │ │ ├── test_fractions.py │ │ │ │ │ ├── test_frame.py │ │ │ │ │ ├── test_frozen.py │ │ │ │ │ ├── test_fstring.py │ │ │ │ │ ├── test_ftplib.py │ │ │ │ │ ├── test_funcattrs.py │ │ │ │ │ ├── test_functools.py │ │ │ │ │ ├── test_future.py │ │ │ │ │ ├── test_future3.py │ │ │ │ │ ├── test_future4.py │ │ │ │ │ ├── test_future5.py │ │ │ │ │ ├── test_gc.py │ │ │ │ │ ├── test_gdb.py │ │ │ │ │ ├── test_generator_stop.py │ │ │ │ │ ├── test_generators.py │ │ │ │ │ ├── test_genericalias.py │ │ │ │ │ ├── test_genericclass.py │ │ │ │ │ ├── test_genericpath.py │ │ │ │ │ ├── test_genexps.py │ │ │ │ │ ├── test_getargs2.py │ │ │ │ │ ├── test_getopt.py │ │ │ │ │ ├── test_getpass.py │ │ │ │ │ ├── test_gettext.py │ │ │ │ │ ├── test_glob.py │ │ │ │ │ ├── test_global.py │ │ │ │ │ ├── test_grammar.py │ │ │ │ │ ├── test_graphlib.py │ │ │ │ │ ├── test_grp.py │ │ │ │ │ ├── test_gzip.py │ │ │ │ │ ├── test_hash.py │ │ │ │ │ ├── test_hashlib.py │ │ │ │ │ ├── test_heapq.py │ │ │ │ │ ├── test_hmac.py │ │ │ │ │ ├── test_html.py │ │ │ │ │ ├── test_htmlparser.py │ │ │ │ │ ├── test_http_cookiejar.py │ │ │ │ │ ├── test_http_cookies.py │ │ │ │ │ ├── test_httplib.py │ │ │ │ │ ├── test_httpservers.py │ │ │ │ │ ├── test_idle.py │ │ │ │ │ ├── test_imaplib.py │ │ │ │ │ ├── test_imghdr.py │ │ │ │ │ ├── test_imp.py │ │ │ │ │ ├── test_import │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── circular_imports │ │ │ │ │ │ │ ├── basic.py │ │ │ │ │ │ │ ├── basic2.py │ │ │ │ │ │ │ ├── binding.py │ │ │ │ │ │ │ ├── binding2.py │ │ │ │ │ │ │ ├── from_cycle1.py │ │ │ │ │ │ │ ├── from_cycle2.py │ │ │ │ │ │ │ ├── indirect.py │ │ │ │ │ │ │ ├── rebinding.py │ │ │ │ │ │ │ ├── rebinding2.py │ │ │ │ │ │ │ ├── source.py │ │ │ │ │ │ │ ├── subpackage.py │ │ │ │ │ │ │ ├── subpkg │ │ │ │ │ │ │ │ ├── subpackage2.py │ │ │ │ │ │ │ │ └── util.py │ │ │ │ │ │ │ ├── use.py │ │ │ │ │ │ │ └── util.py │ │ │ │ │ │ │ ├── package │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── submodule.py │ │ │ │ │ │ │ ├── package2 │ │ │ │ │ │ │ ├── submodule1.py │ │ │ │ │ │ │ └── submodule2.py │ │ │ │ │ │ │ └── unwritable │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── x.py │ │ │ │ │ ├── test_importlib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ ├── abc.py │ │ │ │ │ │ ├── builtin │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ │ ├── test_finder.py │ │ │ │ │ │ │ └── test_loader.py │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── example-21.12-py3-none-any.whl │ │ │ │ │ │ │ └── example-21.12-py3.6.egg │ │ │ │ │ │ ├── data01 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── binary.file │ │ │ │ │ │ │ ├── subdirectory │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ └── binary.file │ │ │ │ │ │ │ ├── utf-16.file │ │ │ │ │ │ │ └── utf-8.file │ │ │ │ │ │ ├── data02 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── one │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ └── resource1.txt │ │ │ │ │ │ │ └── two │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ └── resource2.txt │ │ │ │ │ │ ├── data03 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── namespace │ │ │ │ │ │ │ │ ├── portion1 │ │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ │ │ ├── portion2 │ │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ │ │ └── resource1.txt │ │ │ │ │ │ ├── extension │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ │ ├── test_case_sensitivity.py │ │ │ │ │ │ │ ├── test_finder.py │ │ │ │ │ │ │ ├── test_loader.py │ │ │ │ │ │ │ └── test_path_hook.py │ │ │ │ │ │ ├── fixtures.py │ │ │ │ │ │ ├── frozen │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ │ ├── test_finder.py │ │ │ │ │ │ │ └── test_loader.py │ │ │ │ │ │ ├── import_ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ │ ├── test___loader__.py │ │ │ │ │ │ │ ├── test___package__.py │ │ │ │ │ │ │ ├── test_api.py │ │ │ │ │ │ │ ├── test_caching.py │ │ │ │ │ │ │ ├── test_fromlist.py │ │ │ │ │ │ │ ├── test_meta_path.py │ │ │ │ │ │ │ ├── test_packages.py │ │ │ │ │ │ │ ├── test_path.py │ │ │ │ │ │ │ └── test_relative_imports.py │ │ │ │ │ │ ├── namespace_pkgs │ │ │ │ │ │ │ ├── both_portions │ │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ │ │ ├── one.py │ │ │ │ │ │ │ │ │ └── two.py │ │ │ │ │ │ │ ├── missing_directory.zip │ │ │ │ │ │ │ ├── module_and_namespace_package │ │ │ │ │ │ │ │ ├── a_test.py │ │ │ │ │ │ │ │ └── a_test │ │ │ │ │ │ │ │ │ └── empty │ │ │ │ │ │ │ ├── nested_portion1.zip │ │ │ │ │ │ │ ├── not_a_namespace_pkg │ │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ └── one.py │ │ │ │ │ │ │ ├── portion1 │ │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ │ │ └── one.py │ │ │ │ │ │ │ ├── portion2 │ │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ │ │ └── two.py │ │ │ │ │ │ │ ├── project1 │ │ │ │ │ │ │ │ └── parent │ │ │ │ │ │ │ │ │ └── child │ │ │ │ │ │ │ │ │ └── one.py │ │ │ │ │ │ │ ├── project2 │ │ │ │ │ │ │ │ └── parent │ │ │ │ │ │ │ │ │ └── child │ │ │ │ │ │ │ │ │ └── two.py │ │ │ │ │ │ │ ├── project3 │ │ │ │ │ │ │ │ └── parent │ │ │ │ │ │ │ │ │ └── child │ │ │ │ │ │ │ │ │ └── three.py │ │ │ │ │ │ │ └── top_level_portion1.zip │ │ │ │ │ │ ├── source │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ │ ├── test_case_sensitivity.py │ │ │ │ │ │ │ ├── test_file_loader.py │ │ │ │ │ │ │ ├── test_finder.py │ │ │ │ │ │ │ ├── test_path_hook.py │ │ │ │ │ │ │ └── test_source_encoding.py │ │ │ │ │ │ ├── stubs.py │ │ │ │ │ │ ├── test_abc.py │ │ │ │ │ │ ├── test_api.py │ │ │ │ │ │ ├── test_files.py │ │ │ │ │ │ ├── test_lazy.py │ │ │ │ │ │ ├── test_locks.py │ │ │ │ │ │ ├── test_main.py │ │ │ │ │ │ ├── test_metadata_api.py │ │ │ │ │ │ ├── test_namespace_pkgs.py │ │ │ │ │ │ ├── test_open.py │ │ │ │ │ │ ├── test_path.py │ │ │ │ │ │ ├── test_pkg_import.py │ │ │ │ │ │ ├── test_read.py │ │ │ │ │ │ ├── test_resource.py │ │ │ │ │ │ ├── test_spec.py │ │ │ │ │ │ ├── test_threaded_import.py │ │ │ │ │ │ ├── test_util.py │ │ │ │ │ │ ├── test_windows.py │ │ │ │ │ │ ├── test_zip.py │ │ │ │ │ │ ├── threaded_import_hangers.py │ │ │ │ │ │ ├── util.py │ │ │ │ │ │ ├── zipdata01 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── ziptestdata.zip │ │ │ │ │ │ └── zipdata02 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── ziptestdata.zip │ │ │ │ │ ├── test_index.py │ │ │ │ │ ├── test_inspect.py │ │ │ │ │ ├── test_int.py │ │ │ │ │ ├── test_int_literal.py │ │ │ │ │ ├── test_io.py │ │ │ │ │ ├── test_ioctl.py │ │ │ │ │ ├── test_ipaddress.py │ │ │ │ │ ├── test_isinstance.py │ │ │ │ │ ├── test_iter.py │ │ │ │ │ ├── test_iterlen.py │ │ │ │ │ ├── test_itertools.py │ │ │ │ │ ├── test_json │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ ├── test_decode.py │ │ │ │ │ │ ├── test_default.py │ │ │ │ │ │ ├── test_dump.py │ │ │ │ │ │ ├── test_encode_basestring_ascii.py │ │ │ │ │ │ ├── test_enum.py │ │ │ │ │ │ ├── test_fail.py │ │ │ │ │ │ ├── test_float.py │ │ │ │ │ │ ├── test_indent.py │ │ │ │ │ │ ├── test_pass1.py │ │ │ │ │ │ ├── test_pass2.py │ │ │ │ │ │ ├── test_pass3.py │ │ │ │ │ │ ├── test_recursion.py │ │ │ │ │ │ ├── test_scanstring.py │ │ │ │ │ │ ├── test_separators.py │ │ │ │ │ │ ├── test_speedups.py │ │ │ │ │ │ ├── test_tool.py │ │ │ │ │ │ └── test_unicode.py │ │ │ │ │ ├── test_keyword.py │ │ │ │ │ ├── test_keywordonlyarg.py │ │ │ │ │ ├── test_kqueue.py │ │ │ │ │ ├── test_largefile.py │ │ │ │ │ ├── test_lib2to3.py │ │ │ │ │ ├── test_linecache.py │ │ │ │ │ ├── test_list.py │ │ │ │ │ ├── test_listcomps.py │ │ │ │ │ ├── test_lltrace.py │ │ │ │ │ ├── test_locale.py │ │ │ │ │ ├── test_logging.py │ │ │ │ │ ├── test_long.py │ │ │ │ │ ├── test_longexp.py │ │ │ │ │ ├── test_lzma.py │ │ │ │ │ ├── test_mailbox.py │ │ │ │ │ ├── test_mailcap.py │ │ │ │ │ ├── test_marshal.py │ │ │ │ │ ├── test_math.py │ │ │ │ │ ├── test_memoryio.py │ │ │ │ │ ├── test_memoryview.py │ │ │ │ │ ├── test_metaclass.py │ │ │ │ │ ├── test_mimetypes.py │ │ │ │ │ ├── test_minidom.py │ │ │ │ │ ├── test_mmap.py │ │ │ │ │ ├── test_module.py │ │ │ │ │ ├── test_modulefinder.py │ │ │ │ │ ├── test_msilib.py │ │ │ │ │ ├── test_multibytecodec.py │ │ │ │ │ ├── test_multiprocessing_fork.py │ │ │ │ │ ├── test_multiprocessing_forkserver.py │ │ │ │ │ ├── test_multiprocessing_main_handling.py │ │ │ │ │ ├── test_multiprocessing_spawn.py │ │ │ │ │ ├── test_named_expressions.py │ │ │ │ │ ├── test_netrc.py │ │ │ │ │ ├── test_nis.py │ │ │ │ │ ├── test_nntplib.py │ │ │ │ │ ├── test_ntpath.py │ │ │ │ │ ├── test_numeric_tower.py │ │ │ │ │ ├── test_opcodes.py │ │ │ │ │ ├── test_openpty.py │ │ │ │ │ ├── test_operator.py │ │ │ │ │ ├── test_optparse.py │ │ │ │ │ ├── test_ordered_dict.py │ │ │ │ │ ├── test_os.py │ │ │ │ │ ├── test_ossaudiodev.py │ │ │ │ │ ├── test_osx_env.py │ │ │ │ │ ├── test_parser.py │ │ │ │ │ ├── test_pathlib.py │ │ │ │ │ ├── test_pdb.py │ │ │ │ │ ├── test_peepholer.py │ │ │ │ │ ├── test_peg_generator │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ ├── test_c_parser.py │ │ │ │ │ │ ├── test_first_sets.py │ │ │ │ │ │ └── test_pegen.py │ │ │ │ │ ├── test_peg_parser.py │ │ │ │ │ ├── test_pickle.py │ │ │ │ │ ├── test_picklebuffer.py │ │ │ │ │ ├── test_pickletools.py │ │ │ │ │ ├── test_pipes.py │ │ │ │ │ ├── test_pkg.py │ │ │ │ │ ├── test_pkgutil.py │ │ │ │ │ ├── test_platform.py │ │ │ │ │ ├── test_plistlib.py │ │ │ │ │ ├── test_poll.py │ │ │ │ │ ├── test_popen.py │ │ │ │ │ ├── test_poplib.py │ │ │ │ │ ├── test_positional_only_arg.py │ │ │ │ │ ├── test_posix.py │ │ │ │ │ ├── test_posixpath.py │ │ │ │ │ ├── test_pow.py │ │ │ │ │ ├── test_pprint.py │ │ │ │ │ ├── test_print.py │ │ │ │ │ ├── test_profile.py │ │ │ │ │ ├── test_property.py │ │ │ │ │ ├── test_pstats.py │ │ │ │ │ ├── test_pty.py │ │ │ │ │ ├── test_pulldom.py │ │ │ │ │ ├── test_pwd.py │ │ │ │ │ ├── test_py_compile.py │ │ │ │ │ ├── test_pyclbr.py │ │ │ │ │ ├── test_pydoc.py │ │ │ │ │ ├── test_pyexpat.py │ │ │ │ │ ├── test_queue.py │ │ │ │ │ ├── test_quopri.py │ │ │ │ │ ├── test_raise.py │ │ │ │ │ ├── test_random.py │ │ │ │ │ ├── test_range.py │ │ │ │ │ ├── test_re.py │ │ │ │ │ ├── test_readline.py │ │ │ │ │ ├── test_regrtest.py │ │ │ │ │ ├── test_repl.py │ │ │ │ │ ├── test_reprlib.py │ │ │ │ │ ├── test_resource.py │ │ │ │ │ ├── test_richcmp.py │ │ │ │ │ ├── test_rlcompleter.py │ │ │ │ │ ├── test_robotparser.py │ │ │ │ │ ├── test_runpy.py │ │ │ │ │ ├── test_sax.py │ │ │ │ │ ├── test_sched.py │ │ │ │ │ ├── test_scope.py │ │ │ │ │ ├── test_script_helper.py │ │ │ │ │ ├── test_secrets.py │ │ │ │ │ ├── test_select.py │ │ │ │ │ ├── test_selectors.py │ │ │ │ │ ├── test_set.py │ │ │ │ │ ├── test_setcomps.py │ │ │ │ │ ├── test_shelve.py │ │ │ │ │ ├── test_shlex.py │ │ │ │ │ ├── test_shutil.py │ │ │ │ │ ├── test_signal.py │ │ │ │ │ ├── test_site.py │ │ │ │ │ ├── test_slice.py │ │ │ │ │ ├── test_smtpd.py │ │ │ │ │ ├── test_smtplib.py │ │ │ │ │ ├── test_smtpnet.py │ │ │ │ │ ├── test_sndhdr.py │ │ │ │ │ ├── test_socket.py │ │ │ │ │ ├── test_socketserver.py │ │ │ │ │ ├── test_sort.py │ │ │ │ │ ├── test_source_encoding.py │ │ │ │ │ ├── test_spwd.py │ │ │ │ │ ├── test_sqlite.py │ │ │ │ │ ├── test_ssl.py │ │ │ │ │ ├── test_startfile.py │ │ │ │ │ ├── test_stat.py │ │ │ │ │ ├── test_statistics.py │ │ │ │ │ ├── test_strftime.py │ │ │ │ │ ├── test_string.py │ │ │ │ │ ├── test_string_literals.py │ │ │ │ │ ├── test_stringprep.py │ │ │ │ │ ├── test_strptime.py │ │ │ │ │ ├── test_strtod.py │ │ │ │ │ ├── test_struct.py │ │ │ │ │ ├── test_structmembers.py │ │ │ │ │ ├── test_structseq.py │ │ │ │ │ ├── test_subclassinit.py │ │ │ │ │ ├── test_subprocess.py │ │ │ │ │ ├── test_sunau.py │ │ │ │ │ ├── test_sundry.py │ │ │ │ │ ├── test_super.py │ │ │ │ │ ├── test_support.py │ │ │ │ │ ├── test_symbol.py │ │ │ │ │ ├── test_symtable.py │ │ │ │ │ ├── test_syntax.py │ │ │ │ │ ├── test_sys.py │ │ │ │ │ ├── test_sys_setprofile.py │ │ │ │ │ ├── test_sys_settrace.py │ │ │ │ │ ├── test_sysconfig.py │ │ │ │ │ ├── test_syslog.py │ │ │ │ │ ├── test_tabnanny.py │ │ │ │ │ ├── test_tarfile.py │ │ │ │ │ ├── test_tcl.py │ │ │ │ │ ├── test_telnetlib.py │ │ │ │ │ ├── test_tempfile.py │ │ │ │ │ ├── test_textwrap.py │ │ │ │ │ ├── test_thread.py │ │ │ │ │ ├── test_threadedtempfile.py │ │ │ │ │ ├── test_threading.py │ │ │ │ │ ├── test_threading_local.py │ │ │ │ │ ├── test_threadsignals.py │ │ │ │ │ ├── test_time.py │ │ │ │ │ ├── test_timeit.py │ │ │ │ │ ├── test_timeout.py │ │ │ │ │ ├── test_tix.py │ │ │ │ │ ├── test_tk.py │ │ │ │ │ ├── test_tokenize.py │ │ │ │ │ ├── test_tools │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ ├── test_fixcid.py │ │ │ │ │ │ ├── test_gprof2html.py │ │ │ │ │ │ ├── test_i18n.py │ │ │ │ │ │ ├── test_lll.py │ │ │ │ │ │ ├── test_md5sum.py │ │ │ │ │ │ ├── test_pathfix.py │ │ │ │ │ │ ├── test_pdeps.py │ │ │ │ │ │ ├── test_pindent.py │ │ │ │ │ │ ├── test_reindent.py │ │ │ │ │ │ └── test_sundry.py │ │ │ │ │ ├── test_trace.py │ │ │ │ │ ├── test_traceback.py │ │ │ │ │ ├── test_tracemalloc.py │ │ │ │ │ ├── test_ttk_guionly.py │ │ │ │ │ ├── test_ttk_textonly.py │ │ │ │ │ ├── test_tuple.py │ │ │ │ │ ├── test_turtle.py │ │ │ │ │ ├── test_type_comments.py │ │ │ │ │ ├── test_typechecks.py │ │ │ │ │ ├── test_types.py │ │ │ │ │ ├── test_typing.py │ │ │ │ │ ├── test_ucn.py │ │ │ │ │ ├── test_unary.py │ │ │ │ │ ├── test_unicode.py │ │ │ │ │ ├── test_unicode_file.py │ │ │ │ │ ├── test_unicode_file_functions.py │ │ │ │ │ ├── test_unicode_identifiers.py │ │ │ │ │ ├── test_unicodedata.py │ │ │ │ │ ├── test_unittest.py │ │ │ │ │ ├── test_univnewlines.py │ │ │ │ │ ├── test_unpack.py │ │ │ │ │ ├── test_unpack_ex.py │ │ │ │ │ ├── test_unparse.py │ │ │ │ │ ├── test_urllib.py │ │ │ │ │ ├── test_urllib2.py │ │ │ │ │ ├── test_urllib2_localnet.py │ │ │ │ │ ├── test_urllib2net.py │ │ │ │ │ ├── test_urllib_response.py │ │ │ │ │ ├── test_urllibnet.py │ │ │ │ │ ├── test_urlparse.py │ │ │ │ │ ├── test_userdict.py │ │ │ │ │ ├── test_userlist.py │ │ │ │ │ ├── test_userstring.py │ │ │ │ │ ├── test_utf8_mode.py │ │ │ │ │ ├── test_utf8source.py │ │ │ │ │ ├── test_uu.py │ │ │ │ │ ├── test_uuid.py │ │ │ │ │ ├── test_venv.py │ │ │ │ │ ├── test_wait3.py │ │ │ │ │ ├── test_wait4.py │ │ │ │ │ ├── test_warnings │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── import_warning.py │ │ │ │ │ │ │ └── stacklevel.py │ │ │ │ │ ├── test_wave.py │ │ │ │ │ ├── test_weakref.py │ │ │ │ │ ├── test_weakset.py │ │ │ │ │ ├── test_webbrowser.py │ │ │ │ │ ├── test_winconsoleio.py │ │ │ │ │ ├── test_winreg.py │ │ │ │ │ ├── test_winsound.py │ │ │ │ │ ├── test_with.py │ │ │ │ │ ├── test_wsgiref.py │ │ │ │ │ ├── test_xdrlib.py │ │ │ │ │ ├── test_xml_dom_minicompat.py │ │ │ │ │ ├── test_xml_etree.py │ │ │ │ │ ├── test_xml_etree_c.py │ │ │ │ │ ├── test_xmlrpc.py │ │ │ │ │ ├── test_xmlrpc_net.py │ │ │ │ │ ├── test_xxtestfuzz.py │ │ │ │ │ ├── test_yield_from.py │ │ │ │ │ ├── test_zipapp.py │ │ │ │ │ ├── test_zipfile.py │ │ │ │ │ ├── test_zipfile64.py │ │ │ │ │ ├── test_zipimport.py │ │ │ │ │ ├── test_zipimport_support.py │ │ │ │ │ ├── test_zlib.py │ │ │ │ │ ├── test_zoneinfo │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ ├── _support.py │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── update_test_data.py │ │ │ │ │ │ │ └── zoneinfo_data.json │ │ │ │ │ │ └── test_zoneinfo.py │ │ │ │ │ ├── testcodec.py │ │ │ │ │ ├── testtar.tar │ │ │ │ │ ├── tf_inherit_check.py │ │ │ │ │ ├── time_hashlib.py │ │ │ │ │ ├── tokenize_tests-latin1-coding-cookie-and-utf8-bom-sig.txt │ │ │ │ │ ├── tokenize_tests-no-coding-cookie-and-utf8-bom-sig-only.txt │ │ │ │ │ ├── tokenize_tests-utf8-coding-cookie-and-no-utf8-bom-sig.txt │ │ │ │ │ ├── tokenize_tests-utf8-coding-cookie-and-utf8-bom-sig.txt │ │ │ │ │ ├── tokenize_tests.txt │ │ │ │ │ ├── tracedmodules │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── testmod.py │ │ │ │ │ ├── win_console_handler.py │ │ │ │ │ ├── xmltestdata │ │ │ │ │ │ ├── c14n-20 │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── c14nComment.xml │ │ │ │ │ │ │ ├── c14nDefault.xml │ │ │ │ │ │ │ ├── c14nPrefix.xml │ │ │ │ │ │ │ ├── c14nPrefixQname.xml │ │ │ │ │ │ │ ├── c14nPrefixQnameXpathElem.xml │ │ │ │ │ │ │ ├── c14nQname.xml │ │ │ │ │ │ │ ├── c14nQnameElem.xml │ │ │ │ │ │ │ ├── c14nQnameXpathElem.xml │ │ │ │ │ │ │ ├── c14nTrim.xml │ │ │ │ │ │ │ ├── doc.dtd │ │ │ │ │ │ │ ├── doc.xsl │ │ │ │ │ │ │ ├── inC14N1.xml │ │ │ │ │ │ │ ├── inC14N2.xml │ │ │ │ │ │ │ ├── inC14N3.xml │ │ │ │ │ │ │ ├── inC14N4.xml │ │ │ │ │ │ │ ├── inC14N5.xml │ │ │ │ │ │ │ ├── inC14N6.xml │ │ │ │ │ │ │ ├── inNsContent.xml │ │ │ │ │ │ │ ├── inNsDefault.xml │ │ │ │ │ │ │ ├── inNsPushdown.xml │ │ │ │ │ │ │ ├── inNsRedecl.xml │ │ │ │ │ │ │ ├── inNsSort.xml │ │ │ │ │ │ │ ├── inNsSuperfluous.xml │ │ │ │ │ │ │ ├── inNsXml.xml │ │ │ │ │ │ │ ├── out_inC14N1_c14nComment.xml │ │ │ │ │ │ │ ├── out_inC14N1_c14nDefault.xml │ │ │ │ │ │ │ ├── out_inC14N2_c14nDefault.xml │ │ │ │ │ │ │ ├── out_inC14N2_c14nTrim.xml │ │ │ │ │ │ │ ├── out_inC14N3_c14nDefault.xml │ │ │ │ │ │ │ ├── out_inC14N3_c14nPrefix.xml │ │ │ │ │ │ │ ├── out_inC14N3_c14nTrim.xml │ │ │ │ │ │ │ ├── out_inC14N4_c14nDefault.xml │ │ │ │ │ │ │ ├── out_inC14N4_c14nTrim.xml │ │ │ │ │ │ │ ├── out_inC14N5_c14nDefault.xml │ │ │ │ │ │ │ ├── out_inC14N5_c14nTrim.xml │ │ │ │ │ │ │ ├── out_inC14N6_c14nDefault.xml │ │ │ │ │ │ │ ├── out_inNsContent_c14nDefault.xml │ │ │ │ │ │ │ ├── out_inNsContent_c14nPrefixQnameXpathElem.xml │ │ │ │ │ │ │ ├── out_inNsContent_c14nQnameElem.xml │ │ │ │ │ │ │ ├── out_inNsContent_c14nQnameXpathElem.xml │ │ │ │ │ │ │ ├── out_inNsDefault_c14nDefault.xml │ │ │ │ │ │ │ ├── out_inNsDefault_c14nPrefix.xml │ │ │ │ │ │ │ ├── out_inNsPushdown_c14nDefault.xml │ │ │ │ │ │ │ ├── out_inNsPushdown_c14nPrefix.xml │ │ │ │ │ │ │ ├── out_inNsRedecl_c14nDefault.xml │ │ │ │ │ │ │ ├── out_inNsRedecl_c14nPrefix.xml │ │ │ │ │ │ │ ├── out_inNsSort_c14nDefault.xml │ │ │ │ │ │ │ ├── out_inNsSort_c14nPrefix.xml │ │ │ │ │ │ │ ├── out_inNsSuperfluous_c14nDefault.xml │ │ │ │ │ │ │ ├── out_inNsSuperfluous_c14nPrefix.xml │ │ │ │ │ │ │ ├── out_inNsXml_c14nDefault.xml │ │ │ │ │ │ │ ├── out_inNsXml_c14nPrefix.xml │ │ │ │ │ │ │ ├── out_inNsXml_c14nPrefixQname.xml │ │ │ │ │ │ │ ├── out_inNsXml_c14nQname.xml │ │ │ │ │ │ │ └── world.txt │ │ │ │ │ │ ├── expat224_utf8_bug.xml │ │ │ │ │ │ ├── simple-ns.xml │ │ │ │ │ │ ├── simple.xml │ │ │ │ │ │ ├── test.xml │ │ │ │ │ │ └── test.xml.out │ │ │ │ │ ├── xmltests.py │ │ │ │ │ ├── zip_cp437_header.zip │ │ │ │ │ ├── zipdir.zip │ │ │ │ │ └── ziptestdata │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── exe_with_z64 │ │ │ │ │ │ ├── exe_with_zip │ │ │ │ │ │ ├── header.sh │ │ │ │ │ │ └── testdata_module_inside_zip.py │ │ │ │ ├── textwrap.py │ │ │ │ ├── this.py │ │ │ │ ├── threading.py │ │ │ │ ├── timeit.py │ │ │ │ ├── tkinter │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── colorchooser.py │ │ │ │ │ ├── commondialog.py │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── dialog.py │ │ │ │ │ ├── dnd.py │ │ │ │ │ ├── filedialog.py │ │ │ │ │ ├── font.py │ │ │ │ │ ├── messagebox.py │ │ │ │ │ ├── scrolledtext.py │ │ │ │ │ ├── simpledialog.py │ │ │ │ │ ├── test │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── runtktests.py │ │ │ │ │ │ ├── support.py │ │ │ │ │ │ ├── test_tkinter │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── test_font.py │ │ │ │ │ │ │ ├── test_geometry_managers.py │ │ │ │ │ │ │ ├── test_images.py │ │ │ │ │ │ │ ├── test_loadtk.py │ │ │ │ │ │ │ ├── test_misc.py │ │ │ │ │ │ │ ├── test_text.py │ │ │ │ │ │ │ ├── test_variables.py │ │ │ │ │ │ │ └── test_widgets.py │ │ │ │ │ │ ├── test_ttk │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── test_extensions.py │ │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ │ ├── test_style.py │ │ │ │ │ │ │ └── test_widgets.py │ │ │ │ │ │ └── widget_tests.py │ │ │ │ │ ├── tix.py │ │ │ │ │ └── ttk.py │ │ │ │ ├── token.py │ │ │ │ ├── tokenize.py │ │ │ │ ├── trace.py │ │ │ │ ├── traceback.py │ │ │ │ ├── tracemalloc.py │ │ │ │ ├── tty.py │ │ │ │ ├── turtle.py │ │ │ │ ├── turtledemo │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── bytedesign.py │ │ │ │ │ ├── chaos.py │ │ │ │ │ ├── clock.py │ │ │ │ │ ├── colormixer.py │ │ │ │ │ ├── forest.py │ │ │ │ │ ├── fractalcurves.py │ │ │ │ │ ├── lindenmayer.py │ │ │ │ │ ├── minimal_hanoi.py │ │ │ │ │ ├── nim.py │ │ │ │ │ ├── paint.py │ │ │ │ │ ├── peace.py │ │ │ │ │ ├── penrose.py │ │ │ │ │ ├── planet_and_moon.py │ │ │ │ │ ├── rosette.py │ │ │ │ │ ├── round_dance.py │ │ │ │ │ ├── sorting_animate.py │ │ │ │ │ ├── tree.py │ │ │ │ │ ├── turtle.cfg │ │ │ │ │ ├── two_canvases.py │ │ │ │ │ └── yinyang.py │ │ │ │ ├── types.py │ │ │ │ ├── typing.py │ │ │ │ ├── unittest │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── _log.py │ │ │ │ │ ├── async_case.py │ │ │ │ │ ├── case.py │ │ │ │ │ ├── loader.py │ │ │ │ │ ├── main.py │ │ │ │ │ ├── mock.py │ │ │ │ │ ├── result.py │ │ │ │ │ ├── runner.py │ │ │ │ │ ├── signals.py │ │ │ │ │ ├── suite.py │ │ │ │ │ ├── test │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ ├── _test_warnings.py │ │ │ │ │ │ ├── dummy.py │ │ │ │ │ │ ├── support.py │ │ │ │ │ │ ├── test_assertions.py │ │ │ │ │ │ ├── test_async_case.py │ │ │ │ │ │ ├── test_break.py │ │ │ │ │ │ ├── test_case.py │ │ │ │ │ │ ├── test_discovery.py │ │ │ │ │ │ ├── test_functiontestcase.py │ │ │ │ │ │ ├── test_loader.py │ │ │ │ │ │ ├── test_program.py │ │ │ │ │ │ ├── test_result.py │ │ │ │ │ │ ├── test_runner.py │ │ │ │ │ │ ├── test_setups.py │ │ │ │ │ │ ├── test_skipping.py │ │ │ │ │ │ ├── test_suite.py │ │ │ │ │ │ └── testmock │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ │ ├── support.py │ │ │ │ │ │ │ ├── testasync.py │ │ │ │ │ │ │ ├── testcallable.py │ │ │ │ │ │ │ ├── testhelpers.py │ │ │ │ │ │ │ ├── testmagicmethods.py │ │ │ │ │ │ │ ├── testmock.py │ │ │ │ │ │ │ ├── testpatch.py │ │ │ │ │ │ │ ├── testsealable.py │ │ │ │ │ │ │ ├── testsentinel.py │ │ │ │ │ │ │ └── testwith.py │ │ │ │ │ └── util.py │ │ │ │ ├── urllib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── parse.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ └── robotparser.py │ │ │ │ ├── uu.py │ │ │ │ ├── uuid.py │ │ │ │ ├── venv │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── Activate.ps1 │ │ │ │ │ │ └── activate │ │ │ │ │ │ └── posix │ │ │ │ │ │ ├── activate.csh │ │ │ │ │ │ └── activate.fish │ │ │ │ ├── warnings.py │ │ │ │ ├── wave.py │ │ │ │ ├── weakref.py │ │ │ │ ├── webbrowser.py │ │ │ │ ├── wsgiref │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── handlers.py │ │ │ │ │ ├── headers.py │ │ │ │ │ ├── simple_server.py │ │ │ │ │ ├── util.py │ │ │ │ │ └── validate.py │ │ │ │ ├── xdrlib.py │ │ │ │ ├── xml │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── dom │ │ │ │ │ │ ├── NodeFilter.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── domreg.py │ │ │ │ │ │ ├── expatbuilder.py │ │ │ │ │ │ ├── minicompat.py │ │ │ │ │ │ ├── minidom.py │ │ │ │ │ │ ├── pulldom.py │ │ │ │ │ │ └── xmlbuilder.py │ │ │ │ │ ├── etree │ │ │ │ │ │ ├── ElementInclude.py │ │ │ │ │ │ ├── ElementPath.py │ │ │ │ │ │ ├── ElementTree.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── cElementTree.py │ │ │ │ │ ├── parsers │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── expat.py │ │ │ │ │ └── sax │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _exceptions.py │ │ │ │ │ │ ├── expatreader.py │ │ │ │ │ │ ├── handler.py │ │ │ │ │ │ ├── saxutils.py │ │ │ │ │ │ └── xmlreader.py │ │ │ │ ├── xmlrpc │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── client.py │ │ │ │ │ └── server.py │ │ │ │ ├── zipapp.py │ │ │ │ ├── zipfile.py │ │ │ │ ├── zipimport.py │ │ │ │ └── zoneinfo │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _common.py │ │ │ │ │ ├── _tzpath.py │ │ │ │ │ └── _zoneinfo.py │ │ │ ├── sqlite3.30.1.2 │ │ │ │ └── pkgIndex.tcl │ │ │ ├── tcl8.6 │ │ │ │ ├── auto.tcl │ │ │ │ ├── clock.tcl │ │ │ │ ├── encoding │ │ │ │ │ ├── ascii.enc │ │ │ │ │ ├── big5.enc │ │ │ │ │ ├── cp1250.enc │ │ │ │ │ ├── cp1251.enc │ │ │ │ │ ├── cp1252.enc │ │ │ │ │ ├── cp1253.enc │ │ │ │ │ ├── cp1254.enc │ │ │ │ │ ├── cp1255.enc │ │ │ │ │ ├── cp1256.enc │ │ │ │ │ ├── cp1257.enc │ │ │ │ │ ├── cp1258.enc │ │ │ │ │ ├── cp437.enc │ │ │ │ │ ├── cp737.enc │ │ │ │ │ ├── cp775.enc │ │ │ │ │ ├── cp850.enc │ │ │ │ │ ├── cp852.enc │ │ │ │ │ ├── cp855.enc │ │ │ │ │ ├── cp857.enc │ │ │ │ │ ├── cp860.enc │ │ │ │ │ ├── cp861.enc │ │ │ │ │ ├── cp862.enc │ │ │ │ │ ├── cp863.enc │ │ │ │ │ ├── cp864.enc │ │ │ │ │ ├── cp865.enc │ │ │ │ │ ├── cp866.enc │ │ │ │ │ ├── cp869.enc │ │ │ │ │ ├── cp874.enc │ │ │ │ │ ├── cp932.enc │ │ │ │ │ ├── cp936.enc │ │ │ │ │ ├── cp949.enc │ │ │ │ │ ├── cp950.enc │ │ │ │ │ ├── dingbats.enc │ │ │ │ │ ├── ebcdic.enc │ │ │ │ │ ├── euc-cn.enc │ │ │ │ │ ├── euc-jp.enc │ │ │ │ │ ├── euc-kr.enc │ │ │ │ │ ├── gb12345.enc │ │ │ │ │ ├── gb1988.enc │ │ │ │ │ ├── gb2312-raw.enc │ │ │ │ │ ├── gb2312.enc │ │ │ │ │ ├── iso2022-jp.enc │ │ │ │ │ ├── iso2022-kr.enc │ │ │ │ │ ├── iso2022.enc │ │ │ │ │ ├── iso8859-1.enc │ │ │ │ │ ├── iso8859-10.enc │ │ │ │ │ ├── iso8859-13.enc │ │ │ │ │ ├── iso8859-14.enc │ │ │ │ │ ├── iso8859-15.enc │ │ │ │ │ ├── iso8859-16.enc │ │ │ │ │ ├── iso8859-2.enc │ │ │ │ │ ├── iso8859-3.enc │ │ │ │ │ ├── iso8859-4.enc │ │ │ │ │ ├── iso8859-5.enc │ │ │ │ │ ├── iso8859-6.enc │ │ │ │ │ ├── iso8859-7.enc │ │ │ │ │ ├── iso8859-8.enc │ │ │ │ │ ├── iso8859-9.enc │ │ │ │ │ ├── jis0201.enc │ │ │ │ │ ├── jis0208.enc │ │ │ │ │ ├── jis0212.enc │ │ │ │ │ ├── koi8-r.enc │ │ │ │ │ ├── koi8-u.enc │ │ │ │ │ ├── ksc5601.enc │ │ │ │ │ ├── macCentEuro.enc │ │ │ │ │ ├── macCroatian.enc │ │ │ │ │ ├── macCyrillic.enc │ │ │ │ │ ├── macDingbats.enc │ │ │ │ │ ├── macGreek.enc │ │ │ │ │ ├── macIceland.enc │ │ │ │ │ ├── macJapan.enc │ │ │ │ │ ├── macRoman.enc │ │ │ │ │ ├── macRomania.enc │ │ │ │ │ ├── macThai.enc │ │ │ │ │ ├── macTurkish.enc │ │ │ │ │ ├── macUkraine.enc │ │ │ │ │ ├── shiftjis.enc │ │ │ │ │ ├── symbol.enc │ │ │ │ │ └── tis-620.enc │ │ │ │ ├── history.tcl │ │ │ │ ├── http1.0 │ │ │ │ │ ├── http.tcl │ │ │ │ │ └── pkgIndex.tcl │ │ │ │ ├── init.tcl │ │ │ │ ├── msgs │ │ │ │ │ ├── af.msg │ │ │ │ │ ├── af_za.msg │ │ │ │ │ ├── ar.msg │ │ │ │ │ ├── ar_in.msg │ │ │ │ │ ├── ar_jo.msg │ │ │ │ │ ├── ar_lb.msg │ │ │ │ │ ├── ar_sy.msg │ │ │ │ │ ├── be.msg │ │ │ │ │ ├── bg.msg │ │ │ │ │ ├── bn.msg │ │ │ │ │ ├── bn_in.msg │ │ │ │ │ ├── ca.msg │ │ │ │ │ ├── cs.msg │ │ │ │ │ ├── da.msg │ │ │ │ │ ├── de.msg │ │ │ │ │ ├── de_at.msg │ │ │ │ │ ├── de_be.msg │ │ │ │ │ ├── el.msg │ │ │ │ │ ├── en_au.msg │ │ │ │ │ ├── en_be.msg │ │ │ │ │ ├── en_bw.msg │ │ │ │ │ ├── en_ca.msg │ │ │ │ │ ├── en_gb.msg │ │ │ │ │ ├── en_hk.msg │ │ │ │ │ ├── en_ie.msg │ │ │ │ │ ├── en_in.msg │ │ │ │ │ ├── en_nz.msg │ │ │ │ │ ├── en_ph.msg │ │ │ │ │ ├── en_sg.msg │ │ │ │ │ ├── en_za.msg │ │ │ │ │ ├── en_zw.msg │ │ │ │ │ ├── eo.msg │ │ │ │ │ ├── es.msg │ │ │ │ │ ├── es_ar.msg │ │ │ │ │ ├── es_bo.msg │ │ │ │ │ ├── es_cl.msg │ │ │ │ │ ├── es_co.msg │ │ │ │ │ ├── es_cr.msg │ │ │ │ │ ├── es_do.msg │ │ │ │ │ ├── es_ec.msg │ │ │ │ │ ├── es_gt.msg │ │ │ │ │ ├── es_hn.msg │ │ │ │ │ ├── es_mx.msg │ │ │ │ │ ├── es_ni.msg │ │ │ │ │ ├── es_pa.msg │ │ │ │ │ ├── es_pe.msg │ │ │ │ │ ├── es_pr.msg │ │ │ │ │ ├── es_py.msg │ │ │ │ │ ├── es_sv.msg │ │ │ │ │ ├── es_uy.msg │ │ │ │ │ ├── es_ve.msg │ │ │ │ │ ├── et.msg │ │ │ │ │ ├── eu.msg │ │ │ │ │ ├── eu_es.msg │ │ │ │ │ ├── fa.msg │ │ │ │ │ ├── fa_in.msg │ │ │ │ │ ├── fa_ir.msg │ │ │ │ │ ├── fi.msg │ │ │ │ │ ├── fo.msg │ │ │ │ │ ├── fo_fo.msg │ │ │ │ │ ├── fr.msg │ │ │ │ │ ├── fr_be.msg │ │ │ │ │ ├── fr_ca.msg │ │ │ │ │ ├── fr_ch.msg │ │ │ │ │ ├── ga.msg │ │ │ │ │ ├── ga_ie.msg │ │ │ │ │ ├── gl.msg │ │ │ │ │ ├── gl_es.msg │ │ │ │ │ ├── gv.msg │ │ │ │ │ ├── gv_gb.msg │ │ │ │ │ ├── he.msg │ │ │ │ │ ├── hi.msg │ │ │ │ │ ├── hi_in.msg │ │ │ │ │ ├── hr.msg │ │ │ │ │ ├── hu.msg │ │ │ │ │ ├── id.msg │ │ │ │ │ ├── id_id.msg │ │ │ │ │ ├── is.msg │ │ │ │ │ ├── it.msg │ │ │ │ │ ├── it_ch.msg │ │ │ │ │ ├── ja.msg │ │ │ │ │ ├── kl.msg │ │ │ │ │ ├── kl_gl.msg │ │ │ │ │ ├── ko.msg │ │ │ │ │ ├── ko_kr.msg │ │ │ │ │ ├── kok.msg │ │ │ │ │ ├── kok_in.msg │ │ │ │ │ ├── kw.msg │ │ │ │ │ ├── kw_gb.msg │ │ │ │ │ ├── lt.msg │ │ │ │ │ ├── lv.msg │ │ │ │ │ ├── mk.msg │ │ │ │ │ ├── mr.msg │ │ │ │ │ ├── mr_in.msg │ │ │ │ │ ├── ms.msg │ │ │ │ │ ├── ms_my.msg │ │ │ │ │ ├── mt.msg │ │ │ │ │ ├── nb.msg │ │ │ │ │ ├── nl.msg │ │ │ │ │ ├── nl_be.msg │ │ │ │ │ ├── nn.msg │ │ │ │ │ ├── pl.msg │ │ │ │ │ ├── pt.msg │ │ │ │ │ ├── pt_br.msg │ │ │ │ │ ├── ro.msg │ │ │ │ │ ├── ru.msg │ │ │ │ │ ├── ru_ua.msg │ │ │ │ │ ├── sh.msg │ │ │ │ │ ├── sk.msg │ │ │ │ │ ├── sl.msg │ │ │ │ │ ├── sq.msg │ │ │ │ │ ├── sr.msg │ │ │ │ │ ├── sv.msg │ │ │ │ │ ├── sw.msg │ │ │ │ │ ├── ta.msg │ │ │ │ │ ├── ta_in.msg │ │ │ │ │ ├── te.msg │ │ │ │ │ ├── te_in.msg │ │ │ │ │ ├── th.msg │ │ │ │ │ ├── tr.msg │ │ │ │ │ ├── uk.msg │ │ │ │ │ ├── vi.msg │ │ │ │ │ ├── zh.msg │ │ │ │ │ ├── zh_cn.msg │ │ │ │ │ ├── zh_hk.msg │ │ │ │ │ ├── zh_sg.msg │ │ │ │ │ └── zh_tw.msg │ │ │ │ ├── opt0.4 │ │ │ │ │ ├── optparse.tcl │ │ │ │ │ └── pkgIndex.tcl │ │ │ │ ├── package.tcl │ │ │ │ ├── parray.tcl │ │ │ │ ├── safe.tcl │ │ │ │ ├── tclAppInit.c │ │ │ │ ├── tclIndex │ │ │ │ ├── tm.tcl │ │ │ │ └── word.tcl │ │ │ ├── tcl8 │ │ │ │ ├── 8.4 │ │ │ │ │ ├── platform-1.0.14.tm │ │ │ │ │ └── platform │ │ │ │ │ │ └── shell-1.1.4.tm │ │ │ │ ├── 8.5 │ │ │ │ │ ├── msgcat-1.6.1.tm │ │ │ │ │ └── tcltest-2.5.1.tm │ │ │ │ └── 8.6 │ │ │ │ │ ├── http-2.9.1.tm │ │ │ │ │ └── tdbc │ │ │ │ │ └── sqlite3-1.1.1.tm │ │ │ ├── tclConfig.sh │ │ │ ├── tclooConfig.sh │ │ │ ├── tdbc1.1.1 │ │ │ │ ├── libtdbcstub1.1.1.a │ │ │ │ ├── pkgIndex.tcl │ │ │ │ ├── tdbc.tcl │ │ │ │ └── tdbcConfig.sh │ │ │ ├── tdbcmysql1.1.1 │ │ │ │ ├── pkgIndex.tcl │ │ │ │ └── tdbcmysql.tcl │ │ │ ├── tdbcodbc1.1.1 │ │ │ │ ├── pkgIndex.tcl │ │ │ │ └── tdbcodbc.tcl │ │ │ ├── tdbcpostgres1.1.1 │ │ │ │ ├── pkgIndex.tcl │ │ │ │ └── tdbcpostgres.tcl │ │ │ ├── thread2.8.5 │ │ │ │ ├── pkgIndex.tcl │ │ │ │ └── ttrace.tcl │ │ │ ├── tk8.6 │ │ │ │ ├── bgerror.tcl │ │ │ │ ├── button.tcl │ │ │ │ ├── choosedir.tcl │ │ │ │ ├── clrpick.tcl │ │ │ │ ├── comdlg.tcl │ │ │ │ ├── console.tcl │ │ │ │ ├── demos │ │ │ │ │ ├── README │ │ │ │ │ ├── anilabel.tcl │ │ │ │ │ ├── aniwave.tcl │ │ │ │ │ ├── arrow.tcl │ │ │ │ │ ├── bind.tcl │ │ │ │ │ ├── bitmap.tcl │ │ │ │ │ ├── browse │ │ │ │ │ ├── button.tcl │ │ │ │ │ ├── check.tcl │ │ │ │ │ ├── clrpick.tcl │ │ │ │ │ ├── colors.tcl │ │ │ │ │ ├── combo.tcl │ │ │ │ │ ├── cscroll.tcl │ │ │ │ │ ├── ctext.tcl │ │ │ │ │ ├── dialog1.tcl │ │ │ │ │ ├── dialog2.tcl │ │ │ │ │ ├── en.msg │ │ │ │ │ ├── entry1.tcl │ │ │ │ │ ├── entry2.tcl │ │ │ │ │ ├── entry3.tcl │ │ │ │ │ ├── filebox.tcl │ │ │ │ │ ├── floor.tcl │ │ │ │ │ ├── fontchoose.tcl │ │ │ │ │ ├── form.tcl │ │ │ │ │ ├── goldberg.tcl │ │ │ │ │ ├── hello │ │ │ │ │ ├── hscale.tcl │ │ │ │ │ ├── icon.tcl │ │ │ │ │ ├── image1.tcl │ │ │ │ │ ├── image2.tcl │ │ │ │ │ ├── images │ │ │ │ │ │ ├── earth.gif │ │ │ │ │ │ ├── earthmenu.png │ │ │ │ │ │ ├── earthris.gif │ │ │ │ │ │ ├── flagdown.xbm │ │ │ │ │ │ ├── flagup.xbm │ │ │ │ │ │ ├── gray25.xbm │ │ │ │ │ │ ├── letters.xbm │ │ │ │ │ │ ├── noletter.xbm │ │ │ │ │ │ ├── ouster.png │ │ │ │ │ │ ├── pattern.xbm │ │ │ │ │ │ ├── tcllogo.gif │ │ │ │ │ │ └── teapot.ppm │ │ │ │ │ ├── items.tcl │ │ │ │ │ ├── ixset │ │ │ │ │ ├── knightstour.tcl │ │ │ │ │ ├── label.tcl │ │ │ │ │ ├── labelframe.tcl │ │ │ │ │ ├── license.terms │ │ │ │ │ ├── mclist.tcl │ │ │ │ │ ├── menu.tcl │ │ │ │ │ ├── menubu.tcl │ │ │ │ │ ├── msgbox.tcl │ │ │ │ │ ├── nl.msg │ │ │ │ │ ├── paned1.tcl │ │ │ │ │ ├── paned2.tcl │ │ │ │ │ ├── pendulum.tcl │ │ │ │ │ ├── plot.tcl │ │ │ │ │ ├── puzzle.tcl │ │ │ │ │ ├── radio.tcl │ │ │ │ │ ├── rmt │ │ │ │ │ ├── rolodex │ │ │ │ │ ├── ruler.tcl │ │ │ │ │ ├── sayings.tcl │ │ │ │ │ ├── search.tcl │ │ │ │ │ ├── spin.tcl │ │ │ │ │ ├── states.tcl │ │ │ │ │ ├── style.tcl │ │ │ │ │ ├── tclIndex │ │ │ │ │ ├── tcolor │ │ │ │ │ ├── text.tcl │ │ │ │ │ ├── textpeer.tcl │ │ │ │ │ ├── timer │ │ │ │ │ ├── toolbar.tcl │ │ │ │ │ ├── tree.tcl │ │ │ │ │ ├── ttkbut.tcl │ │ │ │ │ ├── ttkmenu.tcl │ │ │ │ │ ├── ttknote.tcl │ │ │ │ │ ├── ttkpane.tcl │ │ │ │ │ ├── ttkprogress.tcl │ │ │ │ │ ├── ttkscale.tcl │ │ │ │ │ ├── twind.tcl │ │ │ │ │ ├── unicodeout.tcl │ │ │ │ │ ├── vscale.tcl │ │ │ │ │ └── widget │ │ │ │ ├── dialog.tcl │ │ │ │ ├── entry.tcl │ │ │ │ ├── focus.tcl │ │ │ │ ├── fontchooser.tcl │ │ │ │ ├── iconlist.tcl │ │ │ │ ├── icons.tcl │ │ │ │ ├── images │ │ │ │ │ ├── README │ │ │ │ │ ├── logo.eps │ │ │ │ │ ├── logo100.gif │ │ │ │ │ ├── logo64.gif │ │ │ │ │ ├── logoLarge.gif │ │ │ │ │ ├── logoMed.gif │ │ │ │ │ ├── pwrdLogo.eps │ │ │ │ │ ├── pwrdLogo100.gif │ │ │ │ │ ├── pwrdLogo150.gif │ │ │ │ │ ├── pwrdLogo175.gif │ │ │ │ │ ├── pwrdLogo200.gif │ │ │ │ │ ├── pwrdLogo75.gif │ │ │ │ │ └── tai-ku.gif │ │ │ │ ├── listbox.tcl │ │ │ │ ├── megawidget.tcl │ │ │ │ ├── menu.tcl │ │ │ │ ├── mkpsenc.tcl │ │ │ │ ├── msgbox.tcl │ │ │ │ ├── msgs │ │ │ │ │ ├── cs.msg │ │ │ │ │ ├── da.msg │ │ │ │ │ ├── de.msg │ │ │ │ │ ├── el.msg │ │ │ │ │ ├── en.msg │ │ │ │ │ ├── en_gb.msg │ │ │ │ │ ├── eo.msg │ │ │ │ │ ├── es.msg │ │ │ │ │ ├── fr.msg │ │ │ │ │ ├── hu.msg │ │ │ │ │ ├── it.msg │ │ │ │ │ ├── nl.msg │ │ │ │ │ ├── pl.msg │ │ │ │ │ ├── pt.msg │ │ │ │ │ ├── ru.msg │ │ │ │ │ └── sv.msg │ │ │ │ ├── obsolete.tcl │ │ │ │ ├── optMenu.tcl │ │ │ │ ├── palette.tcl │ │ │ │ ├── panedwindow.tcl │ │ │ │ ├── pkgIndex.tcl │ │ │ │ ├── safetk.tcl │ │ │ │ ├── scale.tcl │ │ │ │ ├── scrlbar.tcl │ │ │ │ ├── spinbox.tcl │ │ │ │ ├── tclIndex │ │ │ │ ├── tearoff.tcl │ │ │ │ ├── text.tcl │ │ │ │ ├── tk.tcl │ │ │ │ ├── tkAppInit.c │ │ │ │ ├── tkfbox.tcl │ │ │ │ ├── ttk │ │ │ │ │ ├── altTheme.tcl │ │ │ │ │ ├── aquaTheme.tcl │ │ │ │ │ ├── button.tcl │ │ │ │ │ ├── clamTheme.tcl │ │ │ │ │ ├── classicTheme.tcl │ │ │ │ │ ├── combobox.tcl │ │ │ │ │ ├── cursors.tcl │ │ │ │ │ ├── defaults.tcl │ │ │ │ │ ├── entry.tcl │ │ │ │ │ ├── fonts.tcl │ │ │ │ │ ├── menubutton.tcl │ │ │ │ │ ├── notebook.tcl │ │ │ │ │ ├── panedwindow.tcl │ │ │ │ │ ├── progress.tcl │ │ │ │ │ ├── scale.tcl │ │ │ │ │ ├── scrollbar.tcl │ │ │ │ │ ├── sizegrip.tcl │ │ │ │ │ ├── spinbox.tcl │ │ │ │ │ ├── treeview.tcl │ │ │ │ │ ├── ttk.tcl │ │ │ │ │ ├── utils.tcl │ │ │ │ │ ├── vistaTheme.tcl │ │ │ │ │ ├── winTheme.tcl │ │ │ │ │ └── xpTheme.tcl │ │ │ │ ├── unsupported.tcl │ │ │ │ └── xmfbox.tcl │ │ │ └── tkConfig.sh │ │ └── share │ │ │ ├── doc │ │ │ └── python3.9 │ │ │ │ └── examples │ │ │ │ └── Tools │ │ │ │ ├── README │ │ │ │ ├── buildbot │ │ │ │ ├── build.bat │ │ │ │ ├── buildmsi.bat │ │ │ │ ├── clean.bat │ │ │ │ ├── remoteDeploy.bat │ │ │ │ ├── remotePythonInfo.bat │ │ │ │ └── test.bat │ │ │ │ ├── c-analyzer │ │ │ │ ├── README │ │ │ │ ├── TODO │ │ │ │ ├── c-globals.py │ │ │ │ ├── c_analyzer │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── common │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── files.py │ │ │ │ │ │ ├── info.py │ │ │ │ │ │ ├── show.py │ │ │ │ │ │ └── util.py │ │ │ │ │ ├── parser │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── declarations.py │ │ │ │ │ │ ├── find.py │ │ │ │ │ │ ├── naive.py │ │ │ │ │ │ ├── preprocessor.py │ │ │ │ │ │ └── source.py │ │ │ │ │ ├── symbols │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _nm.py │ │ │ │ │ │ ├── find.py │ │ │ │ │ │ └── info.py │ │ │ │ │ └── variables │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── find.py │ │ │ │ │ │ ├── info.py │ │ │ │ │ │ └── known.py │ │ │ │ ├── check-c-globals.py │ │ │ │ ├── cpython │ │ │ │ │ ├── README │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── _generate.py │ │ │ │ │ ├── files.py │ │ │ │ │ ├── find.py │ │ │ │ │ ├── known.py │ │ │ │ │ └── supported.py │ │ │ │ ├── ignored-globals.txt │ │ │ │ ├── ignored.tsv │ │ │ │ └── known.tsv │ │ │ │ ├── ccbench │ │ │ │ └── ccbench.py │ │ │ │ ├── clinic │ │ │ │ ├── clinic.py │ │ │ │ └── cpp.py │ │ │ │ ├── demo │ │ │ │ ├── README │ │ │ │ ├── beer.py │ │ │ │ ├── eiffel.py │ │ │ │ ├── hanoi.py │ │ │ │ ├── life.py │ │ │ │ ├── markov.py │ │ │ │ ├── mcast.py │ │ │ │ ├── queens.py │ │ │ │ ├── redemo.py │ │ │ │ ├── rpython.py │ │ │ │ ├── rpythond.py │ │ │ │ ├── sortvisu.py │ │ │ │ ├── spreadsheet.py │ │ │ │ └── vector.py │ │ │ │ ├── freeze │ │ │ │ ├── README │ │ │ │ ├── bkfile.py │ │ │ │ ├── checkextensions.py │ │ │ │ ├── checkextensions_win32.py │ │ │ │ ├── extensions_win32.ini │ │ │ │ ├── flag.py │ │ │ │ ├── freeze.py │ │ │ │ ├── hello.py │ │ │ │ ├── makeconfig.py │ │ │ │ ├── makefreeze.py │ │ │ │ ├── makemakefile.py │ │ │ │ ├── parsesetup.py │ │ │ │ ├── test │ │ │ │ │ ├── Makefile │ │ │ │ │ └── ok.py │ │ │ │ ├── win32.html │ │ │ │ └── winmakemakefile.py │ │ │ │ ├── gdb │ │ │ │ └── libpython.py │ │ │ │ ├── i18n │ │ │ │ ├── makelocalealias.py │ │ │ │ ├── msgfmt.py │ │ │ │ └── pygettext.py │ │ │ │ ├── importbench │ │ │ │ ├── README │ │ │ │ └── importbench.py │ │ │ │ ├── iobench │ │ │ │ └── iobench.py │ │ │ │ ├── msi │ │ │ │ ├── README.txt │ │ │ │ ├── build.bat │ │ │ │ ├── buildrelease.bat │ │ │ │ ├── bundle │ │ │ │ │ ├── Default.thm │ │ │ │ │ ├── Default.wxl │ │ │ │ │ ├── SideBar.png │ │ │ │ │ ├── bootstrap │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── PythonBootstrapperApplication.cpp │ │ │ │ │ │ ├── pch.cpp │ │ │ │ │ │ ├── pch.h │ │ │ │ │ │ ├── pythonba.cpp │ │ │ │ │ │ ├── pythonba.def │ │ │ │ │ │ ├── pythonba.sln │ │ │ │ │ │ ├── pythonba.vcxproj │ │ │ │ │ │ └── resource.h │ │ │ │ │ ├── bundle.targets │ │ │ │ │ ├── bundle.wxl │ │ │ │ │ ├── bundle.wxs │ │ │ │ │ ├── full.wixproj │ │ │ │ │ ├── packagegroups │ │ │ │ │ │ ├── core.wxs │ │ │ │ │ │ ├── crt.wxs │ │ │ │ │ │ ├── dev.wxs │ │ │ │ │ │ ├── doc.wxs │ │ │ │ │ │ ├── exe.wxs │ │ │ │ │ │ ├── launcher.wxs │ │ │ │ │ │ ├── lib.wxs │ │ │ │ │ │ ├── packageinstall.wxs │ │ │ │ │ │ ├── pip.wxs │ │ │ │ │ │ ├── postinstall.wxs │ │ │ │ │ │ ├── tcltk.wxs │ │ │ │ │ │ ├── test.wxs │ │ │ │ │ │ └── tools.wxs │ │ │ │ │ ├── releaselocal.wixproj │ │ │ │ │ ├── releaseweb.wixproj │ │ │ │ │ └── snapshot.wixproj │ │ │ │ ├── common.wxs │ │ │ │ ├── common_en-US.wxl_template │ │ │ │ ├── core │ │ │ │ │ ├── core.wixproj │ │ │ │ │ ├── core.wxs │ │ │ │ │ ├── core_d.wixproj │ │ │ │ │ ├── core_d.wxs │ │ │ │ │ ├── core_en-US.wxl │ │ │ │ │ ├── core_files.wxs │ │ │ │ │ ├── core_pdb.wixproj │ │ │ │ │ └── core_pdb.wxs │ │ │ │ ├── csv_to_wxs.py │ │ │ │ ├── dev │ │ │ │ │ ├── dev.wixproj │ │ │ │ │ ├── dev.wxs │ │ │ │ │ ├── dev_d.wixproj │ │ │ │ │ ├── dev_d.wxs │ │ │ │ │ ├── dev_en-US.wxl │ │ │ │ │ └── dev_files.wxs │ │ │ │ ├── distutils.command.bdist_wininst.py │ │ │ │ ├── doc │ │ │ │ │ ├── doc.wixproj │ │ │ │ │ ├── doc.wxs │ │ │ │ │ ├── doc_en-US.wxl_template │ │ │ │ │ ├── doc_files.wxs │ │ │ │ │ └── doc_no_files.wxs │ │ │ │ ├── exe │ │ │ │ │ ├── exe.wixproj │ │ │ │ │ ├── exe.wxs │ │ │ │ │ ├── exe_d.wixproj │ │ │ │ │ ├── exe_d.wxs │ │ │ │ │ ├── exe_en-US.wxl_template │ │ │ │ │ ├── exe_files.wxs │ │ │ │ │ ├── exe_pdb.wixproj │ │ │ │ │ ├── exe_pdb.wxs │ │ │ │ │ └── exe_reg.wxs │ │ │ │ ├── generate_md5.py │ │ │ │ ├── get_externals.bat │ │ │ │ ├── launcher │ │ │ │ │ ├── launcher.wixproj │ │ │ │ │ ├── launcher.wxs │ │ │ │ │ ├── launcher_en-US.wxl │ │ │ │ │ ├── launcher_files.wxs │ │ │ │ │ └── launcher_reg.wxs │ │ │ │ ├── lib │ │ │ │ │ ├── lib.wixproj │ │ │ │ │ ├── lib.wxs │ │ │ │ │ ├── lib_d.wixproj │ │ │ │ │ ├── lib_d.wxs │ │ │ │ │ ├── lib_en-US.wxl │ │ │ │ │ ├── lib_files.wxs │ │ │ │ │ ├── lib_pdb.wixproj │ │ │ │ │ └── lib_pdb.wxs │ │ │ │ ├── make_appx.ps1 │ │ │ │ ├── make_cat.ps1 │ │ │ │ ├── make_zip.proj │ │ │ │ ├── msi.props │ │ │ │ ├── msi.targets │ │ │ │ ├── path │ │ │ │ │ ├── path.wixproj │ │ │ │ │ ├── path.wxs │ │ │ │ │ └── path_en-US.wxl │ │ │ │ ├── pip │ │ │ │ │ ├── pip.wixproj │ │ │ │ │ ├── pip.wxs │ │ │ │ │ └── pip_en-US.wxl │ │ │ │ ├── purge.py │ │ │ │ ├── sdktools.psm1 │ │ │ │ ├── sign_build.ps1 │ │ │ │ ├── tcltk │ │ │ │ │ ├── tcltk.wixproj │ │ │ │ │ ├── tcltk.wxs │ │ │ │ │ ├── tcltk_d.wixproj │ │ │ │ │ ├── tcltk_d.wxs │ │ │ │ │ ├── tcltk_en-US.wxl_template │ │ │ │ │ ├── tcltk_files.wxs │ │ │ │ │ ├── tcltk_pdb.wixproj │ │ │ │ │ ├── tcltk_pdb.wxs │ │ │ │ │ └── tcltk_reg.wxs │ │ │ │ ├── test │ │ │ │ │ ├── test.wixproj │ │ │ │ │ ├── test.wxs │ │ │ │ │ ├── test_d.wixproj │ │ │ │ │ ├── test_d.wxs │ │ │ │ │ ├── test_en-US.wxl │ │ │ │ │ ├── test_files.wxs │ │ │ │ │ ├── test_pdb.wixproj │ │ │ │ │ └── test_pdb.wxs │ │ │ │ ├── testrelease.bat │ │ │ │ ├── tools │ │ │ │ │ ├── tools.wixproj │ │ │ │ │ ├── tools.wxs │ │ │ │ │ ├── tools_en-US.wxl │ │ │ │ │ └── tools_files.wxs │ │ │ │ ├── ucrt │ │ │ │ │ ├── ucrt.wixproj │ │ │ │ │ ├── ucrt.wxs │ │ │ │ │ └── ucrt_en-US.wxl │ │ │ │ ├── uploadrelease.bat │ │ │ │ ├── uploadrelease.proj │ │ │ │ ├── uploadrelease.ps1 │ │ │ │ └── wix.props │ │ │ │ ├── nuget │ │ │ │ ├── build.bat │ │ │ │ ├── make_pkg.proj │ │ │ │ ├── python.nuspec │ │ │ │ ├── pythonarm32.nuspec │ │ │ │ ├── pythondaily.nuspec │ │ │ │ ├── pythondaily.symbols.nuspec │ │ │ │ └── pythonx86.nuspec │ │ │ │ ├── peg_generator │ │ │ │ ├── .clang-format │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── data │ │ │ │ │ ├── cprog.py │ │ │ │ │ ├── top-pypi-packages-365-days.json │ │ │ │ │ └── xxl.zip │ │ │ │ ├── mypy.ini │ │ │ │ ├── peg_extension │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── peg_extension.c │ │ │ │ ├── pegen │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── ast_dump.py │ │ │ │ │ ├── build.py │ │ │ │ │ ├── c_generator.py │ │ │ │ │ ├── first_sets.py │ │ │ │ │ ├── grammar.py │ │ │ │ │ ├── grammar_parser.py │ │ │ │ │ ├── grammar_visualizer.py │ │ │ │ │ ├── keywordgen.py │ │ │ │ │ ├── metagrammar.gram │ │ │ │ │ ├── parser.py │ │ │ │ │ ├── parser_generator.py │ │ │ │ │ ├── python_generator.py │ │ │ │ │ ├── sccutils.py │ │ │ │ │ ├── testutil.py │ │ │ │ │ └── tokenizer.py │ │ │ │ ├── pyproject.toml │ │ │ │ ├── requirements.pip │ │ │ │ └── scripts │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ast_timings.py │ │ │ │ │ ├── benchmark.py │ │ │ │ │ ├── download_pypi_packages.py │ │ │ │ │ ├── find_max_nesting.py │ │ │ │ │ ├── grammar_grapher.py │ │ │ │ │ ├── joinstats.py │ │ │ │ │ ├── show_parse.py │ │ │ │ │ ├── test_parse_directory.py │ │ │ │ │ └── test_pypi_packages.py │ │ │ │ ├── pynche │ │ │ │ ├── ChipViewer.py │ │ │ │ ├── ColorDB.py │ │ │ │ ├── DetailsViewer.py │ │ │ │ ├── ListViewer.py │ │ │ │ ├── Main.py │ │ │ │ ├── PyncheWidget.py │ │ │ │ ├── README │ │ │ │ ├── StripViewer.py │ │ │ │ ├── Switchboard.py │ │ │ │ ├── TextViewer.py │ │ │ │ ├── TypeinViewer.py │ │ │ │ ├── X │ │ │ │ │ ├── rgb.txt │ │ │ │ │ └── xlicense.txt │ │ │ │ ├── __init__.py │ │ │ │ ├── html40colors.txt │ │ │ │ ├── namedcolors.txt │ │ │ │ ├── pyColorChooser.py │ │ │ │ ├── pynche │ │ │ │ ├── pynche.pyw │ │ │ │ ├── webcolors.txt │ │ │ │ └── websafe.txt │ │ │ │ ├── scripts │ │ │ │ ├── 2to3 │ │ │ │ ├── README │ │ │ │ ├── abitype.py │ │ │ │ ├── analyze_dxp.py │ │ │ │ ├── byext.py │ │ │ │ ├── byteyears.py │ │ │ │ ├── checkpip.py │ │ │ │ ├── cleanfuture.py │ │ │ │ ├── combinerefs.py │ │ │ │ ├── copytime.py │ │ │ │ ├── crlf.py │ │ │ │ ├── db2pickle.py │ │ │ │ ├── diff.py │ │ │ │ ├── dutree.doc │ │ │ │ ├── dutree.py │ │ │ │ ├── eptags.py │ │ │ │ ├── find-uname.py │ │ │ │ ├── find_recursionlimit.py │ │ │ │ ├── finddiv.py │ │ │ │ ├── findlinksto.py │ │ │ │ ├── findnocoding.py │ │ │ │ ├── fixcid.py │ │ │ │ ├── fixdiv.py │ │ │ │ ├── fixheader.py │ │ │ │ ├── fixnotice.py │ │ │ │ ├── fixps.py │ │ │ │ ├── generate_opcode_h.py │ │ │ │ ├── generate_symbol_py.py │ │ │ │ ├── generate_token.py │ │ │ │ ├── get-remote-certificate.py │ │ │ │ ├── google.py │ │ │ │ ├── gprof2html.py │ │ │ │ ├── highlight.py │ │ │ │ ├── idle3 │ │ │ │ ├── ifdef.py │ │ │ │ ├── import_diagnostics.py │ │ │ │ ├── lfcr.py │ │ │ │ ├── linktree.py │ │ │ │ ├── lll.py │ │ │ │ ├── mailerdaemon.py │ │ │ │ ├── make_ctype.py │ │ │ │ ├── md5sum.py │ │ │ │ ├── mkreal.py │ │ │ │ ├── ndiff.py │ │ │ │ ├── nm2def.py │ │ │ │ ├── objgraph.py │ │ │ │ ├── parse_html5_entities.py │ │ │ │ ├── parseentities.py │ │ │ │ ├── patchcheck.py │ │ │ │ ├── pathfix.py │ │ │ │ ├── pdeps.py │ │ │ │ ├── pep384_macrocheck.py │ │ │ │ ├── pickle2db.py │ │ │ │ ├── pindent.py │ │ │ │ ├── ptags.py │ │ │ │ ├── pydoc3 │ │ │ │ ├── pysource.py │ │ │ │ ├── reindent-rst.py │ │ │ │ ├── reindent.py │ │ │ │ ├── rgrep.py │ │ │ │ ├── run_tests.py │ │ │ │ ├── serve.py │ │ │ │ ├── smelly.py │ │ │ │ ├── suff.py │ │ │ │ ├── texi2html.py │ │ │ │ ├── untabify.py │ │ │ │ ├── update_file.py │ │ │ │ ├── var_access_benchmark.py │ │ │ │ ├── which.py │ │ │ │ └── win_add2path.py │ │ │ │ ├── ssl │ │ │ │ ├── make_ssl_data.py │ │ │ │ └── multissltests.py │ │ │ │ ├── stringbench │ │ │ │ ├── README │ │ │ │ └── stringbench.py │ │ │ │ ├── test2to3 │ │ │ │ ├── README │ │ │ │ ├── maintest.py │ │ │ │ ├── setup.py │ │ │ │ ├── test │ │ │ │ │ ├── runtests.py │ │ │ │ │ └── test_foo.py │ │ │ │ └── test2to3 │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── hello.py │ │ │ │ ├── tz │ │ │ │ └── zdump.py │ │ │ │ ├── unicode │ │ │ │ ├── Makefile │ │ │ │ ├── comparecodecs.py │ │ │ │ ├── gencjkcodecs.py │ │ │ │ ├── gencodec.py │ │ │ │ ├── genmap_japanese.py │ │ │ │ ├── genmap_korean.py │ │ │ │ ├── genmap_schinese.py │ │ │ │ ├── genmap_support.py │ │ │ │ ├── genwincodec.py │ │ │ │ ├── genwincodecs.bat │ │ │ │ ├── listcodecs.py │ │ │ │ ├── makeunicodedata.py │ │ │ │ ├── mkstringprep.py │ │ │ │ └── python-mappings │ │ │ │ │ ├── CP1140.TXT │ │ │ │ │ ├── CP273.TXT │ │ │ │ │ ├── GB2312.TXT │ │ │ │ │ ├── KOI8-U.TXT │ │ │ │ │ ├── TIS-620.TXT │ │ │ │ │ ├── diff │ │ │ │ │ ├── jisx0213-2000-std.txt.diff │ │ │ │ │ └── jisx0213-2004-std.txt.diff │ │ │ │ │ ├── gb-18030-2000.xml │ │ │ │ │ └── jisx0213-2004-std.txt │ │ │ │ └── unittestgui │ │ │ │ ├── README.txt │ │ │ │ └── unittestgui.py │ │ │ └── man │ │ │ └── man1 │ │ │ ├── python3.1 │ │ │ └── python3.9.1 │ │ └── Current │ ├── gurl.py │ └── installapplications.py └── scripts ├── postinstall └── preinstall /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/README.md -------------------------------------------------------------------------------- /hello/com.github.erikng.hello.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/hello/com.github.erikng.hello.json -------------------------------------------------------------------------------- /installapplications/demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/installapplications/demo.json -------------------------------------------------------------------------------- /installapplications/demo_depnotify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/installapplications/demo_depnotify.json -------------------------------------------------------------------------------- /installapplications/generatejson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/installapplications/generatejson.py -------------------------------------------------------------------------------- /installapplications/generatejson_provision_demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/installapplications/generatejson_provision_demo.sh -------------------------------------------------------------------------------- /installapplications/generatejson_provision_demo_depnotify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/installapplications/generatejson_provision_demo_depnotify.sh -------------------------------------------------------------------------------- /installapplications/pkgs/DEPNotify-1.1.6.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/installapplications/pkgs/DEPNotify-1.1.6.pkg -------------------------------------------------------------------------------- /installapplications/pkgs/dockutil-3.0.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/installapplications/pkgs/dockutil-3.0.pkg -------------------------------------------------------------------------------- /installapplications/pkgs/hello-0.0.2.06172021203518.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/installapplications/pkgs/hello-0.0.2.06172021203518.pkg -------------------------------------------------------------------------------- /installapplications/pkgs/munkitools_core-5.5.0.4360.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/installapplications/pkgs/munkitools_core-5.5.0.4360.pkg -------------------------------------------------------------------------------- /installapplications/pkgs/munkitools_launchd-3.0.3265.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/installapplications/pkgs/munkitools_launchd-3.0.3265.pkg -------------------------------------------------------------------------------- /installapplications/pkgs/munkitools_python-3.9.5.4361.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/installapplications/pkgs/munkitools_python-3.9.5.4361.pkg -------------------------------------------------------------------------------- /installapplications/scripts/root/bless_vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/installapplications/scripts/root/bless_vm.py -------------------------------------------------------------------------------- /installapplications/scripts/root/caffeinate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/installapplications/scripts/root/caffeinate.py -------------------------------------------------------------------------------- /installapplications/scripts/root/depnotify_customization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/installapplications/scripts/root/depnotify_customization.py -------------------------------------------------------------------------------- /installapplications/scripts/root/depnotify_end.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/installapplications/scripts/root/depnotify_end.py -------------------------------------------------------------------------------- /installapplications/scripts/root/munki_auto_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/installapplications/scripts/root/munki_auto_trigger.py -------------------------------------------------------------------------------- /installapplications/scripts/root/munki_bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/installapplications/scripts/root/munki_bootstrap.py -------------------------------------------------------------------------------- /installapplications/scripts/root/munki_launchd_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/installapplications/scripts/root/munki_launchd_loader.py -------------------------------------------------------------------------------- /installapplications/scripts/root/preflight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/installapplications/scripts/root/preflight.py -------------------------------------------------------------------------------- /installapplications/scripts/user/depnotify_user_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/installapplications/scripts/user/depnotify_user_launcher.py -------------------------------------------------------------------------------- /installapplications/scripts/user/dockutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/installapplications/scripts/user/dockutil.py -------------------------------------------------------------------------------- /installapplications/scripts/user/hello_user_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/installapplications/scripts/user/hello_user_launcher.py -------------------------------------------------------------------------------- /munki/catalogs/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munki/catalogs/all -------------------------------------------------------------------------------- /munki/catalogs/production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munki/catalogs/production -------------------------------------------------------------------------------- /munki/icons/GoogleChrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munki/icons/GoogleChrome.png -------------------------------------------------------------------------------- /munki/icons/Munki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munki/icons/Munki.png -------------------------------------------------------------------------------- /munki/icons/_icon_hashes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munki/icons/_icon_hashes.plist -------------------------------------------------------------------------------- /munki/manifests/depdemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munki/manifests/depdemo -------------------------------------------------------------------------------- /munki/manifests/production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munki/manifests/production -------------------------------------------------------------------------------- /munki/pkgs/apps/GoogleChrome-91.0.4472.114.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munki/pkgs/apps/GoogleChrome-91.0.4472.114.dmg -------------------------------------------------------------------------------- /munki/pkgs/apps/crypt-4.0.208.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munki/pkgs/apps/crypt-4.0.208.pkg -------------------------------------------------------------------------------- /munki/pkgs/munkitools/munkitools_admin-5.5.0.4360.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munki/pkgs/munkitools/munkitools_admin-5.5.0.4360.pkg -------------------------------------------------------------------------------- /munki/pkgs/munkitools/munkitools_app-5.4.0.4362.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munki/pkgs/munkitools/munkitools_app-5.4.0.4362.pkg -------------------------------------------------------------------------------- /munki/pkgs/munkitools/munkitools_app_usage-5.5.0.4360.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munki/pkgs/munkitools/munkitools_app_usage-5.5.0.4360.pkg -------------------------------------------------------------------------------- /munki/pkgs/munkitools/munkitools_core-5.5.0.4360.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munki/pkgs/munkitools/munkitools_core-5.5.0.4360.pkg -------------------------------------------------------------------------------- /munki/pkgs/munkitools/munkitools_launchd-3.0.3265.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munki/pkgs/munkitools/munkitools_launchd-3.0.3265.pkg -------------------------------------------------------------------------------- /munki/pkgs/munkitools/munkitools_python-3.9.5.4361.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munki/pkgs/munkitools/munkitools_python-3.9.5.4361.pkg -------------------------------------------------------------------------------- /munki/pkgsinfo/apps/GoogleChrome-91.0.4472.114.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munki/pkgsinfo/apps/GoogleChrome-91.0.4472.114.plist -------------------------------------------------------------------------------- /munki/pkgsinfo/apps/crypt-4.0.208.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munki/pkgsinfo/apps/crypt-4.0.208.plist -------------------------------------------------------------------------------- /munki/pkgsinfo/munkitools/munkitools-5.4.0.4362.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munki/pkgsinfo/munkitools/munkitools-5.4.0.4362.plist -------------------------------------------------------------------------------- /munki/pkgsinfo/munkitools/munkitools_admin-5.5.0.4360.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munki/pkgsinfo/munkitools/munkitools_admin-5.5.0.4360.plist -------------------------------------------------------------------------------- /munki/pkgsinfo/munkitools/munkitools_app_usage-5.5.0.4360.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munki/pkgsinfo/munkitools/munkitools_app_usage-5.5.0.4360.plist -------------------------------------------------------------------------------- /munki/pkgsinfo/munkitools/munkitools_core-5.5.0.4360.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munki/pkgsinfo/munkitools/munkitools_core-5.5.0.4360.plist -------------------------------------------------------------------------------- /munki/pkgsinfo/munkitools/munkitools_launchd-3.0.3265.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munki/pkgsinfo/munkitools/munkitools_launchd-3.0.3265.plist -------------------------------------------------------------------------------- /munki/pkgsinfo/munkitools/munkitools_python-3.9.5.4361.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munki/pkgsinfo/munkitools/munkitools_python-3.9.5.4361.plist -------------------------------------------------------------------------------- /munkipkg/dockutil/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/dockutil/.gitignore -------------------------------------------------------------------------------- /munkipkg/dockutil/build-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/dockutil/build-info.json -------------------------------------------------------------------------------- /munkipkg/dockutil/payload/Library/installapplications/dockutil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/dockutil/payload/Library/installapplications/dockutil -------------------------------------------------------------------------------- /munkipkg/installapplications/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/.gitignore -------------------------------------------------------------------------------- /munkipkg/installapplications/build-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/build-info.json -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/LaunchAgents/com.erikng.installapplications.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/LaunchAgents/com.erikng.installapplications.plist -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/LaunchDaemons/com.erikng.installapplications.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/LaunchDaemons/com.erikng.installapplications.plist -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Python: -------------------------------------------------------------------------------- 1 | Versions/Current/Python -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/Headers: -------------------------------------------------------------------------------- 1 | include/python3.9 -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/Python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/Python -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/Resources/Info.plist -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/Resources/Python.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLPytX -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/2to3: -------------------------------------------------------------------------------- 1 | 2to3-3.9 -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/2to3-3.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/2to3-3.9 -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/easy_install-3.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/easy_install-3.9 -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/idle3: -------------------------------------------------------------------------------- 1 | idle3.9 -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/idle3.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/idle3.9 -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/pip -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/pip3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/pip3 -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/pip3.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/pip3.9 -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/pydoc3: -------------------------------------------------------------------------------- 1 | pydoc3.9 -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/pydoc3.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/pydoc3.9 -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/python3: -------------------------------------------------------------------------------- 1 | python3.9 -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/python3-config: -------------------------------------------------------------------------------- 1 | python3.9-config -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/python3.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/python3.9 -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/python3.9-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/python3.9-config -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/wheel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/wheel -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/xattr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/bin/xattr -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/include/python3.9/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/include/python3.9/ast.h -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/Tk.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/Tk.icns -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/Tk.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/Tk.tiff -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/itcl4.2.0/itcl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/itcl4.2.0/itcl.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libcrypto.1.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libcrypto.1.1.dylib -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libcrypto.dylib: -------------------------------------------------------------------------------- 1 | libcrypto.1.1.dylib -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libformw.5.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libformw.5.dylib -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libformw.dylib: -------------------------------------------------------------------------------- 1 | libformw.5.dylib -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libmenuw.5.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libmenuw.5.dylib -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libmenuw.dylib: -------------------------------------------------------------------------------- 1 | libmenuw.5.dylib -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libncursesw.5.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libncursesw.5.dylib -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libncursesw.dylib: -------------------------------------------------------------------------------- 1 | libncursesw.5.dylib -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libpanelw.5.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libpanelw.5.dylib -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libpanelw.dylib: -------------------------------------------------------------------------------- 1 | libpanelw.5.dylib -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libpython3.9.dylib: -------------------------------------------------------------------------------- 1 | ../Python -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libssl.1.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libssl.1.1.dylib -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libssl.dylib: -------------------------------------------------------------------------------- 1 | libssl.1.1.dylib -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libtcl8.6.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libtcl8.6.dylib -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libtclstub8.6.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libtclstub8.6.a -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libtk8.6.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libtk8.6.dylib -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libtkstub8.6.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/libtkstub8.6.a -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/pkgconfig/python3-embed.pc: -------------------------------------------------------------------------------- 1 | python-3.9-embed.pc -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/pkgconfig/python3.pc: -------------------------------------------------------------------------------- 1 | python-3.9.pc -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/pkgconfig/tcl.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/pkgconfig/tcl.pc -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/pkgconfig/tk.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/pkgconfig/tk.pc -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/_pyio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/_pyio.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/abc.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/aifc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/aifc.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/ast.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/base64.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/bdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/bdb.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/binhex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/binhex.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/bisect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/bisect.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/bz2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/bz2.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/cgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/cgi.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/cgitb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/cgitb.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/chunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/chunk.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/cmd.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/code.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/codecs.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/codeop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/codeop.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/concurrent/__init__.py: -------------------------------------------------------------------------------- 1 | # This directory is a Python package. 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/config-3.9-darwin/Setup.local: -------------------------------------------------------------------------------- 1 | # Edit this file for local setup changes 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/config-3.9-darwin/libpython3.9.a: -------------------------------------------------------------------------------- 1 | ../../../Python -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/config-3.9-darwin/libpython3.9.dylib: -------------------------------------------------------------------------------- 1 | ../../../Python -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/copy.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/crypt.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/csv.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/dis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/dis.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/distutils/tests/includetest.rst: -------------------------------------------------------------------------------- 1 | This should be included. 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/email/mime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/ensurepip/_bundled/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/enum.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/ftplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/ftplib.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/getopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/getopt.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/glob.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/gzip.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/heapq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/heapq.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/hmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/hmac.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/imghdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/imghdr.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/imp.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/io.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/lib2to3/fixes/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/lib2to3/tests/data/bom.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | print "BOM BOOM!" 3 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/lib2to3/tests/data/false_encoding.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | print '#coding=0' 3 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/lib2to3/tests/data/fixers/myfixes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/lib2to3/tests/data/fixers/parrot_example.py: -------------------------------------------------------------------------------- 1 | def parrot(): 2 | pass 3 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/locale.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/lzma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/lzma.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/netrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/netrc.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/ntpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/ntpath.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/opcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/opcode.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/os.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/pdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/pdb.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/pickle.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/pipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/pipes.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/poplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/poplib.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/pprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/pprint.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/pstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/pstats.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/pty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/pty.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/pyclbr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/pyclbr.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/pydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/pydoc.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/pydoc_data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/queue.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/quopri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/quopri.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/random.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/re.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/runpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/runpy.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/sched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/sched.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/shelve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/shelve.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/shlex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/shlex.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/shutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/shutil.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/signal.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/cffi-1.14.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/cffi-1.14.4.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pip-20.3.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pip-20.3.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pip-20.3.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.11.08" 4 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.10' 2 | 3 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (1, 0, 0) 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.2" 3 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pycparser-2.20.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pycparser-2.20.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pycparser 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc-7.0.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc-7.0.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.35.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc-7.0.1.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_core-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_core-7.0.1.dist-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | PyObjCTools 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_AVFoundation-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_AVFoundation-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | AVFoundation 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_AVKit-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_AVKit-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | AVKit 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Accessibility-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Accessibility-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | Accessibility 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Accounts-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Accounts-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | Accounts 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_AdSupport-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_AdSupport-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | AdSupport 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_AddressBook-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_AddressBook-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | AddressBook 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_AppTrackingTransparency-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_AppTrackingTransparency-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | AppTrackingTransparency 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_AppleScriptKit-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_AppleScriptKit-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | AppleScriptKit 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_AppleScriptObjC-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_AppleScriptObjC-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | AppleScriptObjC 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ApplicationServices-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_AuthenticationServices-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_AuthenticationServices-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | AuthenticationServices 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_AutomaticAssessmentConfiguration-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_AutomaticAssessmentConfiguration-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | AutomaticAssessmentConfiguration 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Automator-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Automator-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | Automator 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_BusinessChat-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_BusinessChat-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | BusinessChat 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CFNetwork-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CFNetwork-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | CFNetwork 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CalendarStore-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CalendarStore-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | CalendarStore 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CallKit-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CallKit-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | CallKit 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ClassKit-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ClassKit-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ClassKit 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CloudKit-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CloudKit-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | CloudKit 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Cocoa-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Cocoa-7.0.1.dist-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | PyObjCTools 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Collaboration-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Collaboration-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | Collaboration 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ColorSync-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ColorSync-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ColorSync 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Contacts-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Contacts-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | Contacts 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ContactsUI-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ContactsUI-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ContactsUI 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreAudio-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreAudio-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | CoreAudio 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreAudioKit-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreAudioKit-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | CoreAudioKit 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreBluetooth-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreBluetooth-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | CoreBluetooth 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreData-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreData-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | CoreData 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreHaptics-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreHaptics-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | CoreHaptics 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreLocation-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreLocation-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | CoreLocation 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreMIDI-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreMIDI-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | CoreMIDI 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreML-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreML-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | CoreML 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreMedia-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreMedia-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | CoreMedia 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreMediaIO-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreMediaIO-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | CoreMediaIO 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreMotion-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreMotion-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | CoreMotion 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreServices-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreServices-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | CoreServices 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreSpotlight-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreSpotlight-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | CoreSpotlight 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreText-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreText-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | CoreText 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreWLAN-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CoreWLAN-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | CoreWLAN 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CryptoTokenKit-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_CryptoTokenKit-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | CryptoTokenKit 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_DVDPlayback-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_DVDPlayback-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | DVDPlayback 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_DeviceCheck-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_DeviceCheck-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | DeviceCheck 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_DictionaryServices-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_DictionaryServices-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | DictionaryServices 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_DiscRecording-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_DiscRecording-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | DiscRecording 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_DiscRecordingUI-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_DiscRecordingUI-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | DiscRecordingUI 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_DiskArbitration-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_DiskArbitration-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | DiskArbitration 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_EventKit-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_EventKit-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | EventKit 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ExceptionHandling-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ExceptionHandling-7.0.1.dist-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | PyObjCTools 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ExceptionHandling-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ExceptionHandling 2 | PyObjCTools 3 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ExecutionPolicy-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ExecutionPolicy-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ExecutionPolicy 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ExternalAccessory-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ExternalAccessory-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ExternalAccessory 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_FSEvents-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_FSEvents-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | FSEvents 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_FileProvider-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_FileProvider-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | FileProvider 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_FileProviderUI-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_FileProviderUI-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | FileProviderUI 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_FinderSync-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_FinderSync-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | FinderSync 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_GameCenter-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_GameCenter-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | GameCenter 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_GameController-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_GameController-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | GameController 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_GameKit-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_GameKit-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | GameKit 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_GameplayKit-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_GameplayKit-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | GameplayKit 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_IMServicePlugIn-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_IMServicePlugIn-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | IMServicePlugIn 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_IOSurface-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_IOSurface-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | IOSurface 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ImageCaptureCore-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ImageCaptureCore-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ImageCaptureCore 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_InputMethodKit-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_InputMethodKit-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | InputMethodKit 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_InstallerPlugins-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_InstallerPlugins-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | InstallerPlugins 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_InstantMessage-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_InstantMessage-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | InstantMessage 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Intents-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Intents-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | Intents 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_KernelManagement-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_KernelManagement-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | KernelManagement 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_LatentSemanticMapping-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_LatentSemanticMapping-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | LatentSemanticMapping 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_LaunchServices-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_LaunchServices-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | LaunchServices 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_LinkPresentation-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_LinkPresentation-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | LinkPresentation 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_LocalAuthentication-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_LocalAuthentication-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | LocalAuthentication 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_MLCompute-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_MLCompute-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | MLCompute 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_MapKit-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_MapKit-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | MapKit 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_MediaAccessibility-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_MediaAccessibility-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | MediaAccessibility 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_MediaLibrary-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_MediaLibrary-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | MediaLibrary 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_MediaPlayer-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_MediaPlayer-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | MediaPlayer 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_MediaToolbox-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_MediaToolbox-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | MediaToolbox 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Metal-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Metal-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | Metal 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_MetalKit-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_MetalKit-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | MetalKit 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_MetalPerformanceShaders-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_MetalPerformanceShaders-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | MetalPerformanceShaders 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_MetalPerformanceShadersGraph-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_MetalPerformanceShadersGraph-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | MetalPerformanceShadersGraph 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ModelIO-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ModelIO-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ModelIO 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_MultipeerConnectivity-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_MultipeerConnectivity-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | MultipeerConnectivity 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_NaturalLanguage-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_NaturalLanguage-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | NaturalLanguage 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_NetFS-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_NetFS-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | NetFS 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Network-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Network-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | Network 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_NetworkExtension-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_NetworkExtension-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | NetworkExtension 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_NotificationCenter-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_NotificationCenter-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | NotificationCenter 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_OSAKit-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_OSAKit-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | OSAKit 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_OSLog-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_OSLog-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | OSLog 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_OpenDirectory-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_PassKit-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_PassKit-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | PassKit 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_PencilKit-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_PencilKit-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | PencilKit 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Photos-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Photos-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | Photos 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_PhotosUI-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_PhotosUI-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | PhotosUI 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_PreferencePanes-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_PreferencePanes-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | PreferencePanes 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_PushKit-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_PushKit-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | PushKit 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Quartz-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Quartz-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | Quartz 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_QuickLookThumbnailing-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_QuickLookThumbnailing-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | QuickLookThumbnailing 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ReplayKit-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ReplayKit-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ReplayKit 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_SafariServices-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_SafariServices-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | SafariServices 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_SceneKit-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_SceneKit-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | SceneKit 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ScreenSaver-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ScreenSaver-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ScreenSaver 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ScreenTime-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ScreenTime-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ScreenTime 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ScriptingBridge-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ScriptingBridge-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ScriptingBridge 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_SearchKit-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_SearchKit-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | SearchKit 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Security-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Security-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | Security 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_SecurityFoundation-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_SecurityFoundation-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | SecurityFoundation 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_SecurityInterface-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_SecurityInterface-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | SecurityInterface 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ServiceManagement-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_ServiceManagement-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ServiceManagement 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Social-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Social-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | Social 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_SoundAnalysis-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_SoundAnalysis-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | SoundAnalysis 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Speech-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Speech-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | Speech 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_SpriteKit-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_SpriteKit-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | SpriteKit 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_StoreKit-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_StoreKit-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | StoreKit 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_SyncServices-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_SyncServices-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | SyncServices 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_SystemConfiguration-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_SystemConfiguration-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | SystemConfiguration 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_SystemExtensions-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_SystemExtensions-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | SystemExtensions 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_UniformTypeIdentifiers-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_UniformTypeIdentifiers-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | UniformTypeIdentifiers 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_UserNotifications-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_UserNotifications-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | UserNotifications 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_UserNotificationsUI-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_UserNotificationsUI-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | UserNotificationsUI 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_VideoSubscriberAccount-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_VideoSubscriberAccount-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | VideoSubscriberAccount 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_VideoToolbox-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_VideoToolbox-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | VideoToolbox 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Virtualization-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Virtualization-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | Virtualization 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Vision-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_Vision-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | Vision 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_WebKit-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_WebKit-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | JavaScriptCore 2 | WebKit 3 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_iTunesLibrary-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_iTunesLibrary-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | iTunesLibrary 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_libdispatch-7.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/pyobjc_framework_libdispatch-7.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | libdispatch 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools-49.2.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools-49.2.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools-49.2.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools-49.2.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | easy_install 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools-49.2.1.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/wheel-0.36.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/wheel-0.36.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/wheel-0.36.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | wheel 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/wheel/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.36.1' 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/wheel/vendored/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/wheel/vendored/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/xattr-0.9.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/xattr-0.9.7.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site-packages/xattr-0.9.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _lib 2 | xattr 3 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/site.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/smtpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/smtpd.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/sndhdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/sndhdr.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/socket.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/sqlite3/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/ssl.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/stat.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/string.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/struct.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/sunau.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/sunau.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/symbol.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/bad_coding.py: -------------------------------------------------------------------------------- 1 | # -*- coding: uft-8 -*- 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/bad_coding2.py: -------------------------------------------------------------------------------- 1 | #coding: utf8 2 | print('我') 3 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/badsyntax_3131.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | € = 2 3 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/cjkencodings/big5hkscs-utf8.txt: -------------------------------------------------------------------------------- 1 | 𠄌Ě鵮罓洆 2 | ÊÊ̄ê êê̄ 3 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/nullcert.pem: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_import/data/circular_imports/basic2.py: -------------------------------------------------------------------------------- 1 | from . import basic 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_import/data/circular_imports/from_cycle1.py: -------------------------------------------------------------------------------- 1 | from .from_cycle2 import a 2 | b = 1 3 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_import/data/circular_imports/from_cycle2.py: -------------------------------------------------------------------------------- 1 | from .from_cycle1 import b 2 | a = 1 3 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_import/data/circular_imports/source.py: -------------------------------------------------------------------------------- 1 | from . import use 2 | spam = 1 3 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_import/data/circular_imports/subpkg/util.py: -------------------------------------------------------------------------------- 1 | def util(): 2 | pass 3 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_import/data/circular_imports/util.py: -------------------------------------------------------------------------------- 1 | def util(): 2 | pass 3 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_import/data/package/submodule.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_import/data/package2/submodule2.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_import/data/unwritable/x.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/data01/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/data01/binary.file: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/data01/subdirectory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/data01/subdirectory/binary.file: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/data01/utf-8.file: -------------------------------------------------------------------------------- 1 | Hello, UTF-8 world! 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/data02/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/data02/one/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/data02/one/resource1.txt: -------------------------------------------------------------------------------- 1 | one resource 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/data02/two/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/data02/two/resource2.txt: -------------------------------------------------------------------------------- 1 | two resource 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/data03/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/data03/namespace/portion1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/data03/namespace/portion2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/data03/namespace/resource1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/namespace_pkgs/both_portions/foo/one.py: -------------------------------------------------------------------------------- 1 | attr = 'both_portions foo one' 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/namespace_pkgs/both_portions/foo/two.py: -------------------------------------------------------------------------------- 1 | attr = 'both_portions foo two' 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test.py: -------------------------------------------------------------------------------- 1 | attr = 'in module' 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/one.py: -------------------------------------------------------------------------------- 1 | attr = 'portion1 foo one' 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/namespace_pkgs/portion1/foo/one.py: -------------------------------------------------------------------------------- 1 | attr = 'portion1 foo one' 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/namespace_pkgs/portion2/foo/two.py: -------------------------------------------------------------------------------- 1 | attr = 'portion2 foo two' 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/namespace_pkgs/project1/parent/child/one.py: -------------------------------------------------------------------------------- 1 | attr = 'parent child one' 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/namespace_pkgs/project2/parent/child/two.py: -------------------------------------------------------------------------------- 1 | attr = 'parent child two' 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/namespace_pkgs/project3/parent/child/three.py: -------------------------------------------------------------------------------- 1 | attr = 'parent child three' 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/zipdata01/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_importlib/zipdata02/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/test_zoneinfo/__init__.py: -------------------------------------------------------------------------------- 1 | from .test_zoneinfo import * 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/xmltestdata/c14n-20/doc.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/xmltestdata/c14n-20/out_inC14N6_c14nDefault.xml: -------------------------------------------------------------------------------- 1 | © -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/test/xmltestdata/c14n-20/world.txt: -------------------------------------------------------------------------------- 1 | world -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/this.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/this.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/timeit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/timeit.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/tkinter/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/tkinter/test/test_tkinter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/tkinter/test/test_ttk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/token.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/trace.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/tty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/tty.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/turtle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/turtle.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/types.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/typing.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/urllib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/uu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/uu.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/uuid.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/wave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/wave.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/xdrlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/xdrlib.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/xmlrpc/__init__.py: -------------------------------------------------------------------------------- 1 | # This directory is a Python package. 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/zipapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/python3.9/zipapp.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/auto.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/auto.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/clock.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/clock.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/history.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/history.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/init.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/init.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/af.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/af.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/ar.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/ar.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/be.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/be.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/bg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/bg.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/bn.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/bn.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/ca.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/ca.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/cs.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/cs.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/da.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/da.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/de.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/de.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/el.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/el.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/eo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/eo.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/es.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/es.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/et.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/et.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/eu.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/eu.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/fa.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/fa.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/fi.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/fi.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/fo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/fo.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/fr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/msgs/fr.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/parray.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/parray.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/safe.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/safe.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/tclIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/tclIndex -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/tm.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/tm.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/word.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tcl8.6/word.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tclConfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tclConfig.sh -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tclooConfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tclooConfig.sh -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/bgerror.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/bgerror.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/button.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/button.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/clrpick.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/clrpick.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/comdlg.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/comdlg.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/console.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/console.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/demos/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/demos/hello -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/demos/ixset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/demos/ixset -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/demos/rmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/demos/rmt -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/demos/timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/demos/timer -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/dialog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/dialog.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/entry.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/entry.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/focus.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/focus.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/icons.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/icons.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/listbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/listbox.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/menu.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/menu.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/mkpsenc.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/mkpsenc.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgbox.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/cs.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/cs.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/da.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/da.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/de.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/de.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/el.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/el.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/en.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/en.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/eo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/eo.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/es.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/es.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/fr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/fr.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/hu.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/hu.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/it.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/it.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/nl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/nl.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/pl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/pl.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/pt.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/pt.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/ru.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/ru.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/sv.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/msgs/sv.msg -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/optMenu.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/optMenu.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/palette.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/palette.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/safetk.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/safetk.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/scale.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/scale.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/scrlbar.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/scrlbar.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/spinbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/spinbox.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/tclIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/tclIndex -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/tearoff.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/tearoff.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/text.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/text.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/tk.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/tk.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/tkAppInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/tkAppInit.c -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/tkfbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/tkfbox.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/ttk/ttk.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/ttk/ttk.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/xmfbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tk8.6/xmfbox.tcl -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tkConfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/lib/tkConfig.sh -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/share/doc/python3.9/examples/Tools/c-analyzer/c_analyzer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/share/doc/python3.9/examples/Tools/c-analyzer/c_analyzer/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/share/doc/python3.9/examples/Tools/c-analyzer/c_analyzer/parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/share/doc/python3.9/examples/Tools/c-analyzer/c_analyzer/symbols/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/share/doc/python3.9/examples/Tools/c-analyzer/c_analyzer/variables/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/share/doc/python3.9/examples/Tools/freeze/flag.py: -------------------------------------------------------------------------------- 1 | initialized = True 2 | print("Hello world!") 3 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/share/doc/python3.9/examples/Tools/freeze/hello.py: -------------------------------------------------------------------------------- 1 | print('Hello world...') 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/share/doc/python3.9/examples/Tools/freeze/test/ok.py: -------------------------------------------------------------------------------- 1 | import sys 2 | sys.exit(0) 3 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/share/doc/python3.9/examples/Tools/msi/bundle/bootstrap/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/share/doc/python3.9/examples/Tools/peg_generator/.gitignore: -------------------------------------------------------------------------------- 1 | peg_extension/parse.c 2 | data/xxl.py 3 | venv/ 4 | @data 5 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/share/doc/python3.9/examples/Tools/peg_generator/peg_extension/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/share/doc/python3.9/examples/Tools/peg_generator/pegen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/share/doc/python3.9/examples/Tools/peg_generator/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | # This exists to let mypy find modules here 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/share/doc/python3.9/examples/Tools/pynche/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/share/doc/python3.9/examples/Tools/test2to3/test2to3/__init__.py: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/3.9/share/man/man1/python3.1: -------------------------------------------------------------------------------- 1 | python3.9.1 -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/Python.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | 3.9 -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/gurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/gurl.py -------------------------------------------------------------------------------- /munkipkg/installapplications/payload/Library/installapplications/installapplications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/payload/Library/installapplications/installapplications.py -------------------------------------------------------------------------------- /munkipkg/installapplications/scripts/postinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/scripts/postinstall -------------------------------------------------------------------------------- /munkipkg/installapplications/scripts/preinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikng/installapplicationsdemo/HEAD/munkipkg/installapplications/scripts/preinstall --------------------------------------------------------------------------------