From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mx.groups.io with SMTP id smtpd.web12.11139.1629871484364305430 for ; Tue, 24 Aug 2021 23:04:45 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 134.134.136.126, mailfrom: n.jayaprakash@intel.com) X-IronPort-AV: E=McAfee;i="6200,9189,10086"; a="204591676" X-IronPort-AV: E=Sophos;i="5.84,349,1620716400"; d="scan'208";a="204591676" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Aug 2021 23:04:42 -0700 X-IronPort-AV: E=Sophos;i="5.84,349,1620716400"; d="scan'208";a="507894016" Received: from njayapra-mobl1.gar.corp.intel.com ([10.215.113.130]) by orsmga001-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Aug 2021 23:04:38 -0700 From: "Jayaprakash, N" To: devel@edk2.groups.io Subject: [edk2-libc Patch 0/1] Base Python interpreter 3.6.8 version code from python open source project Date: Wed, 25 Aug 2021 11:34:20 +0530 Message-Id: <20210825060421.1598-1-n.jayaprakash@intel.com> X-Mailer: git-send-email 2.32.0.windows.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit *** BLURB HERE *** Jayaprakash Nevara (1): AppPkg/Applications/Python/Python3.6.8: Base code from python git repo v3.6.8 .../Python-3.6.8/.azure-pipelines/ci.yml | 136 + .../.azure-pipelines/docker-steps.yml | 76 + .../.azure-pipelines/docs-steps.yml | 46 + .../.azure-pipelines/macos-steps.yml | 25 + .../.azure-pipelines/posix-deps.sh | 26 + .../.azure-pipelines/posix-steps.yml | 63 + .../Python-3.6.8/.azure-pipelines/pr.yml | 86 + .../.azure-pipelines/prebuild-checks.yml | 36 + .../.azure-pipelines/windows-steps.yml | 32 + .../Python/Python-3.6.8/.bzrignore | 42 + .../Python/Python-3.6.8/.gitattributes | 58 + .../.github/PULL_REQUEST_TEMPLATE.md | 9 + .../Python/Python-3.6.8/.github/appveyor.yml | 38 + .../Python/Python-3.6.8/.github/codecov.yml | 36 + .../Python/Python-3.6.8/.gitignore | 103 + .../Python/Python-3.6.8/.hgignore | 105 + .../Python/Python-3.6.8/.travis.yml | 137 + .../Python/Python-3.6.8/Doc/README.rst | 129 + .../Python/Python-3.6.8/Doc/about.rst | 39 + .../Python/Python-3.6.8/Doc/bugs.rst | 92 + .../Python-3.6.8/Doc/c-api/abstract.rst | 26 + .../Python-3.6.8/Doc/c-api/allocation.rst | 71 + .../Python-3.6.8/Doc/c-api/apiabiversion.rst | 39 + .../Python/Python-3.6.8/Doc/c-api/arg.rst | 676 + .../Python/Python-3.6.8/Doc/c-api/bool.rst | 46 + .../Python/Python-3.6.8/Doc/c-api/buffer.rst | 508 + .../Python-3.6.8/Doc/c-api/bytearray.rst | 87 + .../Python/Python-3.6.8/Doc/c-api/bytes.rst | 202 + .../Python/Python-3.6.8/Doc/c-api/capsule.rst | 157 + .../Python/Python-3.6.8/Doc/c-api/cell.rst | 62 + .../Python/Python-3.6.8/Doc/c-api/code.rst | 48 + .../Python/Python-3.6.8/Doc/c-api/codec.rst | 123 + .../Python/Python-3.6.8/Doc/c-api/complex.rst | 132 + .../Python-3.6.8/Doc/c-api/concrete.rst | 117 + .../Python-3.6.8/Doc/c-api/conversion.rst | 131 + .../Python/Python-3.6.8/Doc/c-api/coro.rst | 34 + .../Python-3.6.8/Doc/c-api/datetime.rst | 209 + .../Python-3.6.8/Doc/c-api/descriptor.rst | 40 + .../Python/Python-3.6.8/Doc/c-api/dict.rst | 240 + .../Python-3.6.8/Doc/c-api/exceptions.rst | 1016 + .../Python/Python-3.6.8/Doc/c-api/file.rst | 76 + .../Python/Python-3.6.8/Doc/c-api/float.rst | 79 + .../Python-3.6.8/Doc/c-api/function.rst | 108 + .../Python-3.6.8/Doc/c-api/gcsupport.rst | 159 + .../Python/Python-3.6.8/Doc/c-api/gen.rst | 44 + .../Python/Python-3.6.8/Doc/c-api/import.rst | 315 + .../Python/Python-3.6.8/Doc/c-api/index.rst | 26 + .../Python/Python-3.6.8/Doc/c-api/init.rst | 1227 + .../Python/Python-3.6.8/Doc/c-api/intro.rst | 645 + .../Python/Python-3.6.8/Doc/c-api/iter.rst | 46 + .../Python-3.6.8/Doc/c-api/iterator.rst | 50 + .../Python/Python-3.6.8/Doc/c-api/list.rst | 151 + .../Python/Python-3.6.8/Doc/c-api/long.rst | 295 + .../Python/Python-3.6.8/Doc/c-api/mapping.rst | 94 + .../Python/Python-3.6.8/Doc/c-api/marshal.rst | 94 + .../Python/Python-3.6.8/Doc/c-api/memory.rst | 546 + .../Python-3.6.8/Doc/c-api/memoryview.rst | 63 + .../Python/Python-3.6.8/Doc/c-api/method.rst | 100 + .../Python/Python-3.6.8/Doc/c-api/module.rst | 479 + .../Python/Python-3.6.8/Doc/c-api/none.rst | 26 + .../Python/Python-3.6.8/Doc/c-api/number.rst | 283 + .../Python-3.6.8/Doc/c-api/objbuffer.rst | 55 + .../Python/Python-3.6.8/Doc/c-api/object.rst | 425 + .../Python/Python-3.6.8/Doc/c-api/objimpl.rst | 17 + .../Python-3.6.8/Doc/c-api/refcounting.rst | 73 + .../Python-3.6.8/Doc/c-api/reflection.rst | 49 + .../Python-3.6.8/Doc/c-api/sequence.rst | 169 + .../Python/Python-3.6.8/Doc/c-api/set.rst | 166 + .../Python/Python-3.6.8/Doc/c-api/slice.rst | 69 + .../Python/Python-3.6.8/Doc/c-api/stable.rst | 38 + .../Python-3.6.8/Doc/c-api/structures.rst | 337 + .../Python/Python-3.6.8/Doc/c-api/sys.rst | 267 + .../Python/Python-3.6.8/Doc/c-api/tuple.rst | 218 + .../Python/Python-3.6.8/Doc/c-api/type.rst | 118 + .../Python/Python-3.6.8/Doc/c-api/typeobj.rst | 1402 + .../Python/Python-3.6.8/Doc/c-api/unicode.rst | 1701 + .../Python-3.6.8/Doc/c-api/utilities.rst | 21 + .../Python-3.6.8/Doc/c-api/veryhigh.rst | 390 + .../Python/Python-3.6.8/Doc/c-api/weakref.rst | 69 + .../Python/Python-3.6.8/Doc/conf.py | 204 + .../Python/Python-3.6.8/Doc/contents.rst | 31 + .../Python/Python-3.6.8/Doc/copyright.rst | 19 + .../Python-3.6.8/Doc/data/refcounts.dat | 1881 + .../Python-3.6.8/Doc/distributing/index.rst | 170 + .../Python-3.6.8/Doc/distutils/apiref.rst | 2030 + .../Python-3.6.8/Doc/distutils/builtdist.rst | 459 + .../Python-3.6.8/Doc/distutils/commandref.rst | 104 + .../Python-3.6.8/Doc/distutils/configfile.rst | 142 + .../Python-3.6.8/Doc/distutils/examples.rst | 338 + .../Python-3.6.8/Doc/distutils/extending.rst | 96 + .../Python-3.6.8/Doc/distutils/index.rst | 41 + .../Doc/distutils/introduction.rst | 212 + .../Doc/distutils/packageindex.rst | 253 + .../Doc/distutils/setupscript.rst | 695 + .../Python-3.6.8/Doc/distutils/sourcedist.rst | 236 + .../Python-3.6.8/Doc/distutils/uploading.rst | 7 + .../Python/Python-3.6.8/Doc/docutils.conf | 2 + .../Python-3.6.8/Doc/extending/building.rst | 167 + .../Python-3.6.8/Doc/extending/embedding.rst | 335 + .../Python-3.6.8/Doc/extending/extending.rst | 1359 + .../Python-3.6.8/Doc/extending/index.rst | 74 + .../Python-3.6.8/Doc/extending/newtypes.rst | 619 + .../Doc/extending/newtypes_tutorial.rst | 896 + .../Python-3.6.8/Doc/extending/windows.rst | 137 + .../Python/Python-3.6.8/Doc/faq/design.rst | 812 + .../Python/Python-3.6.8/Doc/faq/extending.rst | 445 + .../Python/Python-3.6.8/Doc/faq/general.rst | 456 + .../Python/Python-3.6.8/Doc/faq/gui.rst | 159 + .../Python/Python-3.6.8/Doc/faq/index.rst | 17 + .../Python/Python-3.6.8/Doc/faq/installed.rst | 53 + .../Python/Python-3.6.8/Doc/faq/library.rst | 839 + .../Python-3.6.8/Doc/faq/programming.rst | 1868 + .../Doc/faq/python-video-icon.png | Bin 0 -> 3732 bytes .../Python/Python-3.6.8/Doc/faq/windows.rst | 282 + .../Python/Python-3.6.8/Doc/glossary.rst | 1122 + .../Python-3.6.8/Doc/howto/argparse.rst | 765 + .../Python/Python-3.6.8/Doc/howto/clinic.rst | 1734 + .../Python-3.6.8/Doc/howto/cporting.rst | 257 + .../Python/Python-3.6.8/Doc/howto/curses.rst | 552 + .../Python-3.6.8/Doc/howto/descriptor.rst | 443 + .../Python-3.6.8/Doc/howto/functional.rst | 1261 + .../Python/Python-3.6.8/Doc/howto/index.rst | 32 + .../Doc/howto/instrumentation.rst | 412 + .../Python-3.6.8/Doc/howto/ipaddress.rst | 340 + .../Doc/howto/logging-cookbook.rst | 2551 + .../Python/Python-3.6.8/Doc/howto/logging.rst | 1103 + .../Python-3.6.8/Doc/howto/logging_flow.png | Bin 0 -> 49648 bytes .../Python-3.6.8/Doc/howto/pyporting.rst | 452 + .../Python/Python-3.6.8/Doc/howto/regex.rst | 1385 + .../Python/Python-3.6.8/Doc/howto/sockets.rst | 383 + .../Python/Python-3.6.8/Doc/howto/sorting.rst | 293 + .../Python/Python-3.6.8/Doc/howto/unicode.rst | 733 + .../Python/Python-3.6.8/Doc/howto/urllib2.rst | 605 + .../Python-3.6.8/Doc/includes/capsulethunk.h | 134 + .../Python/Python-3.6.8/Doc/includes/custom.c | 39 + .../Python-3.6.8/Doc/includes/custom2.c | 132 + .../Python-3.6.8/Doc/includes/custom3.c | 183 + .../Python-3.6.8/Doc/includes/custom4.c | 197 + .../Python-3.6.8/Doc/includes/dbpickle.py | 87 + .../Doc/includes/email-alternative.py | 56 + .../Python-3.6.8/Doc/includes/email-dir.py | 77 + .../Doc/includes/email-headers.py | 24 + .../Python-3.6.8/Doc/includes/email-mime.py | 29 + .../Doc/includes/email-read-alternative.py | 75 + .../Python-3.6.8/Doc/includes/email-simple.py | 22 + .../Python-3.6.8/Doc/includes/email-unpack.py | 53 + .../Doc/includes/minidom-example.py | 64 + .../Python-3.6.8/Doc/includes/mp_newtype.py | 89 + .../Python-3.6.8/Doc/includes/mp_pool.py | 153 + .../Python-3.6.8/Doc/includes/mp_workers.py | 77 + .../Python-3.6.8/Doc/includes/run-func.c | 70 + .../Python/Python-3.6.8/Doc/includes/setup.py | 9 + .../Doc/includes/sqlite3/adapter_datetime.py | 15 + .../Doc/includes/sqlite3/adapter_point_1.py | 16 + .../Doc/includes/sqlite3/adapter_point_2.py | 17 + .../Doc/includes/sqlite3/collation_reverse.py | 20 + .../includes/sqlite3/complete_statement.py | 30 + .../Doc/includes/sqlite3/connect_db_1.py | 3 + .../Doc/includes/sqlite3/connect_db_2.py | 3 + .../Doc/includes/sqlite3/converter_point.py | 47 + .../Doc/includes/sqlite3/countcursors.py | 15 + .../Doc/includes/sqlite3/createdb.py | 28 + .../Doc/includes/sqlite3/ctx_manager.py | 16 + .../includes/sqlite3/execsql_fetchonerow.py | 17 + .../includes/sqlite3/execsql_printall_1.py | 13 + .../Doc/includes/sqlite3/execute_1.py | 16 + .../Doc/includes/sqlite3/execute_3.py | 12 + .../Doc/includes/sqlite3/executemany_1.py | 24 + .../Doc/includes/sqlite3/executemany_2.py | 15 + .../Doc/includes/sqlite3/executescript.py | 24 + .../includes/sqlite3/insert_more_people.py | 16 + .../Doc/includes/sqlite3/load_extension.py | 26 + .../Doc/includes/sqlite3/md5func.py | 11 + .../Doc/includes/sqlite3/mysumaggr.py | 20 + .../Doc/includes/sqlite3/parse_colnames.py | 8 + .../Doc/includes/sqlite3/pysqlite_datetime.py | 20 + .../Doc/includes/sqlite3/row_factory.py | 13 + .../Doc/includes/sqlite3/rowclass.py | 12 + .../Doc/includes/sqlite3/shared_cache.py | 6 + .../Doc/includes/sqlite3/shortcut_methods.py | 20 + .../includes/sqlite3/simple_tableprinter.py | 26 + .../Doc/includes/sqlite3/text_factory.py | 27 + .../Python-3.6.8/Doc/includes/sublist.c | 63 + .../Python/Python-3.6.8/Doc/includes/test.py | 199 + .../Python-3.6.8/Doc/includes/turtle-star.py | 10 + .../Python-3.6.8/Doc/includes/typestruct.h | 80 + .../Doc/includes/tzinfo-examples.py | 175 + .../Python/Python-3.6.8/Doc/install/index.rst | 1117 + .../Python-3.6.8/Doc/installing/index.rst | 246 + .../Python/Python-3.6.8/Doc/library/2to3.rst | 474 + .../Python-3.6.8/Doc/library/__future__.rst | 98 + .../Python-3.6.8/Doc/library/__main__.rst | 25 + .../Doc/library/_dummy_thread.rst | 25 + .../Python-3.6.8/Doc/library/_thread.rst | 192 + .../Python/Python-3.6.8/Doc/library/abc.rst | 342 + .../Python/Python-3.6.8/Doc/library/aifc.rst | 239 + .../Python/Python-3.6.8/Doc/library/allos.rst | 29 + .../Python-3.6.8/Doc/library/archiving.rst | 20 + .../Python-3.6.8/Doc/library/argparse.rst | 2048 + .../Python/Python-3.6.8/Doc/library/array.rst | 278 + .../Python/Python-3.6.8/Doc/library/ast.rst | 270 + .../Python-3.6.8/Doc/library/asynchat.rst | 213 + .../Python-3.6.8/Doc/library/asyncio-dev.rst | 418 + .../Doc/library/asyncio-eventloop.rst | 1008 + .../Doc/library/asyncio-eventloops.rst | 232 + .../Doc/library/asyncio-protocol.rst | 750 + .../Doc/library/asyncio-queue.rst | 160 + .../Doc/library/asyncio-stream.rst | 471 + .../Doc/library/asyncio-subprocess.rst | 421 + .../Python-3.6.8/Doc/library/asyncio-sync.rst | 295 + .../Python-3.6.8/Doc/library/asyncio-task.rst | 730 + .../Python-3.6.8/Doc/library/asyncio.rst | 66 + .../Python-3.6.8/Doc/library/asyncore.rst | 356 + .../Python-3.6.8/Doc/library/atexit.rst | 109 + .../Python-3.6.8/Doc/library/audioop.rst | 282 + .../Python-3.6.8/Doc/library/base64.rst | 290 + .../Python/Python-3.6.8/Doc/library/bdb.rst | 372 + .../Python-3.6.8/Doc/library/binary.rst | 23 + .../Python-3.6.8/Doc/library/binascii.rst | 186 + .../Python-3.6.8/Doc/library/binhex.rst | 57 + .../Python-3.6.8/Doc/library/bisect.rst | 149 + .../Python-3.6.8/Doc/library/builtins.rst | 42 + .../Python/Python-3.6.8/Doc/library/bz2.rst | 252 + .../Python-3.6.8/Doc/library/calendar.rst | 316 + .../Python/Python-3.6.8/Doc/library/cgi.rst | 538 + .../Python/Python-3.6.8/Doc/library/cgitb.rst | 66 + .../Python/Python-3.6.8/Doc/library/chunk.rst | 137 + .../Python/Python-3.6.8/Doc/library/cmath.rst | 312 + .../Python/Python-3.6.8/Doc/library/cmd.rst | 381 + .../Python/Python-3.6.8/Doc/library/code.rst | 184 + .../Python-3.6.8/Doc/library/codecs.rst | 1502 + .../Python-3.6.8/Doc/library/codeop.rst | 72 + .../Doc/library/collections.abc.rst | 305 + .../Python-3.6.8/Doc/library/collections.rst | 1184 + .../Python-3.6.8/Doc/library/colorsys.rst | 65 + .../Python-3.6.8/Doc/library/compileall.rst | 234 + .../Python-3.6.8/Doc/library/concurrency.rst | 31 + .../Doc/library/concurrent.futures.rst | 451 + .../Python-3.6.8/Doc/library/concurrent.rst | 6 + .../Python-3.6.8/Doc/library/configparser.rst | 1324 + .../Python-3.6.8/Doc/library/constants.rst | 100 + .../Python-3.6.8/Doc/library/contextlib.rst | 777 + .../Python/Python-3.6.8/Doc/library/copy.rst | 95 + .../Python-3.6.8/Doc/library/copyreg.rst | 65 + .../Python/Python-3.6.8/Doc/library/crypt.rst | 156 + .../Python-3.6.8/Doc/library/crypto.rst | 19 + .../Python/Python-3.6.8/Doc/library/csv.rst | 552 + .../Python-3.6.8/Doc/library/ctypes.rst | 2484 + .../Python-3.6.8/Doc/library/curses.ascii.rst | 229 + .../Python-3.6.8/Doc/library/curses.panel.rst | 120 + .../Python-3.6.8/Doc/library/curses.rst | 1830 + .../Python-3.6.8/Doc/library/custominterp.rst | 19 + .../Python-3.6.8/Doc/library/datatypes.rst | 33 + .../Python-3.6.8/Doc/library/datetime.rst | 2172 + .../Python/Python-3.6.8/Doc/library/dbm.rst | 370 + .../Python/Python-3.6.8/Doc/library/debug.rst | 18 + .../Python-3.6.8/Doc/library/decimal.rst | 2112 + .../Python-3.6.8/Doc/library/development.rst | 26 + .../Python-3.6.8/Doc/library/difflib.rst | 746 + .../Python/Python-3.6.8/Doc/library/dis.rst | 1223 + .../Python-3.6.8/Doc/library/distribution.rst | 15 + .../Python-3.6.8/Doc/library/distutils.rst | 44 + .../Python-3.6.8/Doc/library/doctest.rst | 1864 + .../Doc/library/dummy_threading.rst | 25 + .../Doc/library/email.charset.rst | 247 + .../Doc/library/email.compat32-message.rst | 754 + .../Doc/library/email.contentmanager.rst | 198 + .../Doc/library/email.encoders.rst | 70 + .../Python-3.6.8/Doc/library/email.errors.rst | 114 + .../Doc/library/email.examples.rst | 67 + .../Doc/library/email.generator.rst | 279 + .../Python-3.6.8/Doc/library/email.header.rst | 205 + .../Doc/library/email.headerregistry.rst | 455 + .../Doc/library/email.iterators.rst | 83 + .../Doc/library/email.message.rst | 751 + .../Python-3.6.8/Doc/library/email.mime.rst | 259 + .../Python-3.6.8/Doc/library/email.parser.rst | 320 + .../Python-3.6.8/Doc/library/email.policy.rst | 651 + .../Python/Python-3.6.8/Doc/library/email.rst | 152 + .../Python-3.6.8/Doc/library/email.utils.rst | 218 + .../Python-3.6.8/Doc/library/ensurepip.rst | 136 + .../Python/Python-3.6.8/Doc/library/enum.rst | 1093 + .../Python/Python-3.6.8/Doc/library/errno.rst | 639 + .../Python-3.6.8/Doc/library/exceptions.rst | 737 + .../Python-3.6.8/Doc/library/faulthandler.rst | 172 + .../Python/Python-3.6.8/Doc/library/fcntl.rst | 170 + .../Python-3.6.8/Doc/library/filecmp.rst | 198 + .../Python-3.6.8/Doc/library/fileformats.rst | 17 + .../Python-3.6.8/Doc/library/fileinput.rst | 207 + .../Python-3.6.8/Doc/library/filesys.rst | 39 + .../Python-3.6.8/Doc/library/fnmatch.rst | 102 + .../Python-3.6.8/Doc/library/formatter.rst | 351 + .../Python-3.6.8/Doc/library/fpectl.rst | 121 + .../Python-3.6.8/Doc/library/fractions.rst | 183 + .../Python-3.6.8/Doc/library/frameworks.rst | 18 + .../Python-3.6.8/Doc/library/ftplib.rst | 442 + .../Python-3.6.8/Doc/library/functional.rst | 15 + .../Python-3.6.8/Doc/library/functions.rst | 1695 + .../Python-3.6.8/Doc/library/functools.rst | 486 + .../Python/Python-3.6.8/Doc/library/gc.rst | 270 + .../Python-3.6.8/Doc/library/getopt.rst | 164 + .../Python-3.6.8/Doc/library/getpass.rst | 51 + .../Python-3.6.8/Doc/library/gettext.rst | 660 + .../Python/Python-3.6.8/Doc/library/glob.rst | 111 + .../Python/Python-3.6.8/Doc/library/grp.rst | 68 + .../Python/Python-3.6.8/Doc/library/gzip.rst | 213 + .../Doc/library/hashlib-blake2-tree.png | Bin 0 -> 11148 bytes .../Python-3.6.8/Doc/library/hashlib.rst | 739 + .../Python/Python-3.6.8/Doc/library/heapq.rst | 309 + .../Python/Python-3.6.8/Doc/library/hmac.rst | 123 + .../Doc/library/html.entities.rst | 47 + .../Python-3.6.8/Doc/library/html.parser.rst | 340 + .../Python/Python-3.6.8/Doc/library/html.rst | 39 + .../Python-3.6.8/Doc/library/http.client.rst | 551 + .../Doc/library/http.cookiejar.rst | 760 + .../Python-3.6.8/Doc/library/http.cookies.rst | 292 + .../Python/Python-3.6.8/Doc/library/http.rst | 124 + .../Python-3.6.8/Doc/library/http.server.rst | 447 + .../Python/Python-3.6.8/Doc/library/i18n.rst | 18 + .../Python/Python-3.6.8/Doc/library/idle.rst | 813 + .../Python-3.6.8/Doc/library/imaplib.rst | 609 + .../Python-3.6.8/Doc/library/imghdr.rst | 81 + .../Python/Python-3.6.8/Doc/library/imp.rst | 412 + .../Python-3.6.8/Doc/library/importlib.rst | 1497 + .../Python/Python-3.6.8/Doc/library/index.rst | 77 + .../Python-3.6.8/Doc/library/inspect.rst | 1360 + .../Python-3.6.8/Doc/library/internet.rst | 48 + .../Python/Python-3.6.8/Doc/library/intro.rst | 49 + .../Python/Python-3.6.8/Doc/library/io.rst | 1016 + .../Python-3.6.8/Doc/library/ipaddress.rst | 891 + .../Python/Python-3.6.8/Doc/library/ipc.rst | 27 + .../Python-3.6.8/Doc/library/itertools.rst | 904 + .../Python/Python-3.6.8/Doc/library/json.rst | 735 + .../Python-3.6.8/Doc/library/keyword.rst | 23 + .../Python-3.6.8/Doc/library/language.rst | 28 + .../Python-3.6.8/Doc/library/linecache.rst | 64 + .../Python-3.6.8/Doc/library/locale.rst | 572 + .../Doc/library/logging.config.rst | 811 + .../Doc/library/logging.handlers.rst | 1073 + .../Python-3.6.8/Doc/library/logging.rst | 1278 + .../Python/Python-3.6.8/Doc/library/lzma.rst | 434 + .../Python-3.6.8/Doc/library/macpath.rst | 19 + .../Python-3.6.8/Doc/library/mailbox.rst | 1593 + .../Python-3.6.8/Doc/library/mailcap.rst | 76 + .../Python-3.6.8/Doc/library/markup.rst | 27 + .../Python-3.6.8/Doc/library/marshal.rst | 118 + .../Python/Python-3.6.8/Doc/library/math.rst | 477 + .../Python-3.6.8/Doc/library/mimetypes.rst | 263 + .../Python/Python-3.6.8/Doc/library/misc.rst | 13 + .../Python/Python-3.6.8/Doc/library/mm.rst | 22 + .../Python/Python-3.6.8/Doc/library/mmap.rst | 286 + .../Python-3.6.8/Doc/library/modulefinder.rst | 114 + .../Python-3.6.8/Doc/library/modules.rst | 19 + .../Python-3.6.8/Doc/library/msilib.rst | 557 + .../Python-3.6.8/Doc/library/msvcrt.rst | 154 + .../Doc/library/multiprocessing.rst | 2835 + .../Python-3.6.8/Doc/library/netdata.rst | 23 + .../Python/Python-3.6.8/Doc/library/netrc.rst | 85 + .../Python/Python-3.6.8/Doc/library/nis.rst | 65 + .../Python-3.6.8/Doc/library/nntplib.rst | 567 + .../Python-3.6.8/Doc/library/numbers.rst | 223 + .../Python-3.6.8/Doc/library/numeric.rst | 26 + .../Python-3.6.8/Doc/library/operator.rst | 554 + .../Python-3.6.8/Doc/library/optparse.rst | 2037 + .../Python-3.6.8/Doc/library/os.path.rst | 480 + .../Python/Python-3.6.8/Doc/library/os.rst | 4042 + .../Python-3.6.8/Doc/library/ossaudiodev.rst | 448 + .../Python-3.6.8/Doc/library/othergui.rst | 56 + .../Python-3.6.8/Doc/library/parser.rst | 356 + .../Doc/library/pathlib-inheritance.png | Bin 0 -> 11280 bytes .../Doc/library/pathlib-inheritance.svg | 4 + .../Python-3.6.8/Doc/library/pathlib.rst | 1052 + .../Python/Python-3.6.8/Doc/library/pdb.rst | 519 + .../Python-3.6.8/Doc/library/persistence.rst | 23 + .../Python-3.6.8/Doc/library/pickle.rst | 935 + .../Python-3.6.8/Doc/library/pickletools.rst | 110 + .../Python/Python-3.6.8/Doc/library/pipes.rst | 95 + .../Python-3.6.8/Doc/library/pkgutil.rst | 229 + .../Python-3.6.8/Doc/library/platform.rst | 284 + .../Python-3.6.8/Doc/library/plistlib.rst | 244 + .../Python-3.6.8/Doc/library/poplib.rst | 255 + .../Python/Python-3.6.8/Doc/library/posix.rst | 92 + .../Python-3.6.8/Doc/library/pprint.rst | 374 + .../Python-3.6.8/Doc/library/profile.rst | 655 + .../Python/Python-3.6.8/Doc/library/pty.rst | 93 + .../Python/Python-3.6.8/Doc/library/pwd.rst | 76 + .../Python-3.6.8/Doc/library/py_compile.rst | 89 + .../Python-3.6.8/Doc/library/pyclbr.rst | 116 + .../Python/Python-3.6.8/Doc/library/pydoc.rst | 100 + .../Python-3.6.8/Doc/library/pyexpat.rst | 876 + .../Python-3.6.8/Doc/library/python.rst | 27 + .../Python/Python-3.6.8/Doc/library/queue.rst | 203 + .../Python-3.6.8/Doc/library/quopri.rst | 63 + .../Python-3.6.8/Doc/library/random.rst | 479 + .../Python/Python-3.6.8/Doc/library/re.rst | 1655 + .../Python-3.6.8/Doc/library/readline.rst | 351 + .../Python-3.6.8/Doc/library/reprlib.rst | 162 + .../Python-3.6.8/Doc/library/resource.rst | 350 + .../Python-3.6.8/Doc/library/rlcompleter.rst | 61 + .../Python/Python-3.6.8/Doc/library/runpy.rst | 179 + .../Python/Python-3.6.8/Doc/library/sched.rst | 138 + .../Python-3.6.8/Doc/library/secrets.rst | 198 + .../Python-3.6.8/Doc/library/select.rst | 640 + .../Python-3.6.8/Doc/library/selectors.rst | 277 + .../Python-3.6.8/Doc/library/shelve.rst | 203 + .../Python/Python-3.6.8/Doc/library/shlex.rst | 416 + .../Python-3.6.8/Doc/library/shutil.rst | 656 + .../Python-3.6.8/Doc/library/signal.rst | 466 + .../Python/Python-3.6.8/Doc/library/site.rst | 257 + .../Python/Python-3.6.8/Doc/library/smtpd.rst | 277 + .../Python-3.6.8/Doc/library/smtplib.rst | 586 + .../Python-3.6.8/Doc/library/sndhdr.rst | 51 + .../Python-3.6.8/Doc/library/socket.rst | 1763 + .../Python-3.6.8/Doc/library/socketserver.rst | 640 + .../Python/Python-3.6.8/Doc/library/spwd.rst | 75 + .../Python-3.6.8/Doc/library/sqlite3.rst | 1042 + .../Python/Python-3.6.8/Doc/library/ssl.rst | 2434 + .../Python/Python-3.6.8/Doc/library/stat.rst | 427 + .../Python-3.6.8/Doc/library/statistics.rst | 456 + .../Python-3.6.8/Doc/library/stdtypes.rst | 4688 + .../Python-3.6.8/Doc/library/string.rst | 835 + .../Python-3.6.8/Doc/library/stringprep.rst | 143 + .../Python-3.6.8/Doc/library/struct.rst | 464 + .../Python-3.6.8/Doc/library/subprocess.rst | 1258 + .../Python/Python-3.6.8/Doc/library/sunau.rst | 274 + .../Python-3.6.8/Doc/library/superseded.rst | 14 + .../Python-3.6.8/Doc/library/symbol.rst | 27 + .../Python-3.6.8/Doc/library/symtable.rst | 188 + .../Python/Python-3.6.8/Doc/library/sys.rst | 1381 + .../Python-3.6.8/Doc/library/sysconfig.rst | 262 + .../Python-3.6.8/Doc/library/syslog.rst | 112 + .../Python-3.6.8/Doc/library/tabnanny.rst | 67 + .../Python-3.6.8/Doc/library/tarfile.rst | 880 + .../Python-3.6.8/Doc/library/telnetlib.rst | 252 + .../Python-3.6.8/Doc/library/tempfile.rst | 333 + .../Python-3.6.8/Doc/library/termios.rst | 105 + .../Python/Python-3.6.8/Doc/library/test.rst | 686 + .../Python/Python-3.6.8/Doc/library/text.rst | 26 + .../Python-3.6.8/Doc/library/textwrap.rst | 296 + .../Python-3.6.8/Doc/library/threading.rst | 997 + .../Python/Python-3.6.8/Doc/library/time.rst | 761 + .../Python-3.6.8/Doc/library/timeit.rst | 370 + .../Python/Python-3.6.8/Doc/library/tk.rst | 46 + .../Python-3.6.8/Doc/library/tkinter.rst | 863 + .../Doc/library/tkinter.scrolledtext.rst | 36 + .../Python-3.6.8/Doc/library/tkinter.tix.rst | 594 + .../Python-3.6.8/Doc/library/tkinter.ttk.rst | 1447 + .../Python/Python-3.6.8/Doc/library/token.rst | 110 + .../Python-3.6.8/Doc/library/tokenize.rst | 288 + .../Python/Python-3.6.8/Doc/library/trace.rst | 213 + .../Python-3.6.8/Doc/library/traceback.rst | 486 + .../Python-3.6.8/Doc/library/tracemalloc.rst | 674 + .../Python/Python-3.6.8/Doc/library/tty.rst | 41 + .../Python-3.6.8/Doc/library/tulip_coro.dia | Bin 0 -> 4459 bytes .../Python-3.6.8/Doc/library/tulip_coro.png | Bin 0 -> 45021 bytes .../Python-3.6.8/Doc/library/turtle-star.pdf | Bin 0 -> 4418 bytes .../Python-3.6.8/Doc/library/turtle-star.png | Bin 0 -> 39585 bytes .../Python-3.6.8/Doc/library/turtle-star.ps | 447 + .../Python-3.6.8/Doc/library/turtle.rst | 2441 + .../Python/Python-3.6.8/Doc/library/types.rst | 319 + .../Python-3.6.8/Doc/library/typing.rst | 1091 + .../Python/Python-3.6.8/Doc/library/undoc.rst | 26 + .../Python-3.6.8/Doc/library/unicodedata.rst | 173 + .../Doc/library/unittest.mock-examples.rst | 1266 + .../Doc/library/unittest.mock.rst | 2379 + .../Python-3.6.8/Doc/library/unittest.rst | 2295 + .../Python/Python-3.6.8/Doc/library/unix.rst | 26 + .../Python-3.6.8/Doc/library/urllib.error.rst | 66 + .../Python-3.6.8/Doc/library/urllib.parse.rst | 622 + .../Doc/library/urllib.request.rst | 1565 + .../Doc/library/urllib.robotparser.rst | 97 + .../Python-3.6.8/Doc/library/urllib.rst | 15 + .../Python/Python-3.6.8/Doc/library/uu.rst | 62 + .../Python/Python-3.6.8/Doc/library/uuid.rst | 266 + .../Python/Python-3.6.8/Doc/library/venv.rst | 460 + .../Python-3.6.8/Doc/library/warnings.rst | 425 + .../Python/Python-3.6.8/Doc/library/wave.rst | 247 + .../Python-3.6.8/Doc/library/weakref.rst | 574 + .../Python-3.6.8/Doc/library/webbrowser.rst | 213 + .../Python-3.6.8/Doc/library/windows.rst | 15 + .../Python-3.6.8/Doc/library/winreg.rst | 756 + .../Python-3.6.8/Doc/library/winsound.rst | 161 + .../Python-3.6.8/Doc/library/wsgiref.rst | 781 + .../Python-3.6.8/Doc/library/xdrlib.rst | 278 + .../Doc/library/xml.dom.minidom.rst | 256 + .../Doc/library/xml.dom.pulldom.rst | 145 + .../Python-3.6.8/Doc/library/xml.dom.rst | 1033 + .../Doc/library/xml.etree.elementtree.rst | 1198 + .../Python/Python-3.6.8/Doc/library/xml.rst | 139 + .../Doc/library/xml.sax.handler.rst | 415 + .../Doc/library/xml.sax.reader.rst | 393 + .../Python-3.6.8/Doc/library/xml.sax.rst | 173 + .../Doc/library/xml.sax.utils.rst | 91 + .../Doc/library/xmlrpc.client.rst | 606 + .../Python-3.6.8/Doc/library/xmlrpc.rst | 12 + .../Doc/library/xmlrpc.server.rst | 402 + .../Python-3.6.8/Doc/library/zipapp.rst | 427 + .../Python-3.6.8/Doc/library/zipfile.rst | 707 + .../Python-3.6.8/Doc/library/zipimport.rst | 167 + .../Python/Python-3.6.8/Doc/library/zlib.rst | 330 + .../Python/Python-3.6.8/Doc/license.rst | 957 + .../Python/Python-3.6.8/Doc/make.bat | 178 + .../Doc/reference/compound_stmts.rst | 842 + .../Python-3.6.8/Doc/reference/datamodel.rst | 2657 + .../Doc/reference/executionmodel.rst | 266 + .../Doc/reference/expressions.rst | 1843 + .../Python-3.6.8/Doc/reference/grammar.rst | 7 + .../Python-3.6.8/Doc/reference/import.rst | 1007 + .../Python-3.6.8/Doc/reference/index.rst | 29 + .../Doc/reference/introduction.rst | 132 + .../Doc/reference/lexical_analysis.rst | 930 + .../Doc/reference/simple_stmts.rst | 1004 + .../Doc/reference/toplevel_components.rst | 107 + .../Doc/tools/extensions/c_annotations.py | 121 + .../Doc/tools/extensions/escape4chm.py | 57 + .../Doc/tools/extensions/patchlevel.py | 71 + .../Doc/tools/extensions/pyspecific.py | 402 + .../Doc/tools/extensions/suspicious.py | 274 + .../tools/pydoctheme/static/pydoctheme.css | 194 + .../Doc/tools/pydoctheme/theme.conf | 23 + .../Python/Python-3.6.8/Doc/tools/rstlint.py | 228 + .../Doc/tools/static/copybutton.js | 62 + .../Python-3.6.8/Doc/tools/static/py.png | Bin 0 -> 695 bytes .../Python-3.6.8/Doc/tools/static/sidebar.js | 193 + .../Doc/tools/static/switchers.js | 153 + .../Python-3.6.8/Doc/tools/susp-ignored.csv | 332 + .../Doc/tools/templates/customsourcelink.html | 13 + .../Doc/tools/templates/download.html | 65 + .../Doc/tools/templates/dummy.html | 7 + .../Doc/tools/templates/indexcontent.html | 66 + .../Doc/tools/templates/indexsidebar.html | 20 + .../Doc/tools/templates/layout.html | 118 + .../Doc/tools/templates/opensearch.xml | 4 + .../Python-3.6.8/Doc/tutorial/appendix.rst | 124 + .../Python-3.6.8/Doc/tutorial/appetite.rst | 87 + .../Python-3.6.8/Doc/tutorial/classes.rst | 922 + .../Python-3.6.8/Doc/tutorial/controlflow.rst | 762 + .../Doc/tutorial/datastructures.rst | 716 + .../Python-3.6.8/Doc/tutorial/errors.rst | 414 + .../Doc/tutorial/floatingpoint.rst | 300 + .../Python-3.6.8/Doc/tutorial/index.rst | 60 + .../Python-3.6.8/Doc/tutorial/inputoutput.rst | 451 + .../Python-3.6.8/Doc/tutorial/interactive.rst | 54 + .../Python-3.6.8/Doc/tutorial/interpreter.rst | 164 + .../Doc/tutorial/introduction.rst | 537 + .../Python-3.6.8/Doc/tutorial/modules.rst | 572 + .../Python-3.6.8/Doc/tutorial/stdlib.rst | 340 + .../Python-3.6.8/Doc/tutorial/stdlib2.rst | 405 + .../Python/Python-3.6.8/Doc/tutorial/venv.rst | 210 + .../Python-3.6.8/Doc/tutorial/whatnow.rst | 70 + .../Python/Python-3.6.8/Doc/using/cmdline.rst | 745 + .../Python/Python-3.6.8/Doc/using/index.rst | 19 + .../Python/Python-3.6.8/Doc/using/mac.rst | 183 + .../Python/Python-3.6.8/Doc/using/unix.rst | 147 + .../Python-3.6.8/Doc/using/venv-create.inc | 122 + .../Python-3.6.8/Doc/using/win_installer.png | Bin 0 -> 48994 bytes .../Python/Python-3.6.8/Doc/using/windows.rst | 1016 + .../Python/Python-3.6.8/Doc/whatsnew/2.0.rst | 1205 + .../Python/Python-3.6.8/Doc/whatsnew/2.1.rst | 794 + .../Python/Python-3.6.8/Doc/whatsnew/2.2.rst | 1269 + .../Python/Python-3.6.8/Doc/whatsnew/2.3.rst | 2086 + .../Python/Python-3.6.8/Doc/whatsnew/2.4.rst | 1565 + .../Python/Python-3.6.8/Doc/whatsnew/2.5.rst | 2289 + .../Python/Python-3.6.8/Doc/whatsnew/2.6.rst | 3315 + .../Python/Python-3.6.8/Doc/whatsnew/2.7.rst | 2799 + .../Python/Python-3.6.8/Doc/whatsnew/3.0.rst | 929 + .../Python/Python-3.6.8/Doc/whatsnew/3.1.rst | 552 + .../Python/Python-3.6.8/Doc/whatsnew/3.2.rst | 2734 + .../Python/Python-3.6.8/Doc/whatsnew/3.3.rst | 2517 + .../Python/Python-3.6.8/Doc/whatsnew/3.4.rst | 2545 + .../Python/Python-3.6.8/Doc/whatsnew/3.5.rst | 2574 + .../Python/Python-3.6.8/Doc/whatsnew/3.6.rst | 2440 + .../Python-3.6.8/Doc/whatsnew/changelog.rst | 7 + .../Python-3.6.8/Doc/whatsnew/index.rst | 38 + .../Python/Python-3.6.8/Grammar/Grammar | 149 + .../Python/Python-3.6.8/Include/Python-ast.h | 637 + .../Python/Python-3.6.8/Include/Python.h | 148 + .../Python/Python-3.6.8/Include/abstract.h | 1377 + .../Python/Python-3.6.8/Include/accu.h | 37 + .../Python/Python-3.6.8/Include/asdl.h | 46 + .../Python/Python-3.6.8/Include/ast.h | 22 + .../Python/Python-3.6.8/Include/bitset.h | 32 + .../Python/Python-3.6.8/Include/bltinmodule.h | 14 + .../Python/Python-3.6.8/Include/boolobject.h | 34 + .../Python-3.6.8/Include/bytearrayobject.h | 62 + .../Python-3.6.8/Include/bytes_methods.h | 67 + .../Python/Python-3.6.8/Include/bytesobject.h | 224 + .../Python/Python-3.6.8/Include/cellobject.h | 29 + .../Python/Python-3.6.8/Include/ceval.h | 238 + .../Python/Python-3.6.8/Include/classobject.h | 58 + .../Python/Python-3.6.8/Include/code.h | 157 + .../Python/Python-3.6.8/Include/codecs.h | 240 + .../Python/Python-3.6.8/Include/compile.h | 73 + .../Python-3.6.8/Include/complexobject.h | 69 + .../Python/Python-3.6.8/Include/datetime.h | 260 + .../Python/Python-3.6.8/Include/descrobject.h | 107 + .../Python/Python-3.6.8/Include/dictobject.h | 177 + .../Python/Python-3.6.8/Include/dtoa.h | 19 + .../Include/dynamic_annotations.h | 499 + .../Python/Python-3.6.8/Include/enumobject.h | 17 + .../Python/Python-3.6.8/Include/errcode.h | 38 + .../Python/Python-3.6.8/Include/eval.h | 27 + .../Python/Python-3.6.8/Include/fileobject.h | 50 + .../Python/Python-3.6.8/Include/fileutils.h | 159 + .../Python/Python-3.6.8/Include/floatobject.h | 130 + .../Python/Python-3.6.8/Include/frameobject.h | 95 + .../Python/Python-3.6.8/Include/funcobject.h | 103 + .../Python/Python-3.6.8/Include/genobject.h | 104 + .../Python/Python-3.6.8/Include/graminit.h | 88 + .../Python/Python-3.6.8/Include/grammar.h | 94 + .../Python/Python-3.6.8/Include/import.h | 140 + .../Python/Python-3.6.8/Include/intrcheck.h | 24 + .../Python/Python-3.6.8/Include/iterobject.h | 25 + .../Python/Python-3.6.8/Include/listobject.h | 81 + .../Python/Python-3.6.8/Include/longintrepr.h | 99 + .../Python/Python-3.6.8/Include/longobject.h | 215 + .../Python/Python-3.6.8/Include/marshal.h | 28 + .../Python-3.6.8/Include/memoryobject.h | 72 + .../Python/Python-3.6.8/Include/metagrammar.h | 18 + .../Python-3.6.8/Include/methodobject.h | 110 + .../Python/Python-3.6.8/Include/modsupport.h | 183 + .../Python-3.6.8/Include/moduleobject.h | 89 + .../Python-3.6.8/Include/namespaceobject.h | 19 + .../Python/Python-3.6.8/Include/node.h | 44 + .../Python/Python-3.6.8/Include/object.h | 1078 + .../Python/Python-3.6.8/Include/objimpl.h | 370 + .../Python/Python-3.6.8/Include/odictobject.h | 43 + .../Python/Python-3.6.8/Include/opcode.h | 146 + .../Python/Python-3.6.8/Include/osdefs.h | 47 + .../Python/Python-3.6.8/Include/osmodule.h | 17 + .../Python/Python-3.6.8/Include/parsetok.h | 108 + .../Python/Python-3.6.8/Include/patchlevel.h | 35 + .../Python/Python-3.6.8/Include/pgen.h | 18 + .../Python/Python-3.6.8/Include/pgenheaders.h | 43 + .../Python/Python-3.6.8/Include/py_curses.h | 178 + .../Python/Python-3.6.8/Include/pyarena.h | 64 + .../Python/Python-3.6.8/Include/pyatomic.h | 250 + .../Python/Python-3.6.8/Include/pycapsule.h | 59 + .../Python/Python-3.6.8/Include/pyctype.h | 33 + .../Python/Python-3.6.8/Include/pydebug.h | 40 + .../Python/Python-3.6.8/Include/pydtrace.d | 19 + .../Python/Python-3.6.8/Include/pydtrace.h | 53 + .../Python/Python-3.6.8/Include/pyerrors.h | 503 + .../Python/Python-3.6.8/Include/pyexpat.h | 55 + .../Python/Python-3.6.8/Include/pyfpe.h | 176 + .../Python/Python-3.6.8/Include/pygetopt.h | 21 + .../Python/Python-3.6.8/Include/pyhash.h | 145 + .../Python/Python-3.6.8/Include/pylifecycle.h | 131 + .../Python/Python-3.6.8/Include/pymacconfig.h | 102 + .../Python/Python-3.6.8/Include/pymacro.h | 98 + .../Python/Python-3.6.8/Include/pymath.h | 230 + .../Python/Python-3.6.8/Include/pymem.h | 235 + .../Python/Python-3.6.8/Include/pyport.h | 767 + .../Python/Python-3.6.8/Include/pystate.h | 324 + .../Python/Python-3.6.8/Include/pystrcmp.h | 23 + .../Python/Python-3.6.8/Include/pystrhex.h | 19 + .../Python/Python-3.6.8/Include/pystrtod.h | 45 + .../Python/Python-3.6.8/Include/pythonrun.h | 197 + .../Python/Python-3.6.8/Include/pythread.h | 90 + .../Python/Python-3.6.8/Include/pytime.h | 211 + .../Python/Python-3.6.8/Include/rangeobject.h | 27 + .../Python/Python-3.6.8/Include/setobject.h | 108 + .../Python/Python-3.6.8/Include/sliceobject.h | 65 + .../Python-3.6.8/Include/structmember.h | 74 + .../Python/Python-3.6.8/Include/structseq.h | 49 + .../Python/Python-3.6.8/Include/symtable.h | 119 + .../Python/Python-3.6.8/Include/sysmodule.h | 43 + .../Python/Python-3.6.8/Include/token.h | 90 + .../Python/Python-3.6.8/Include/traceback.h | 119 + .../Python/Python-3.6.8/Include/tupleobject.h | 73 + .../Python/Python-3.6.8/Include/typeslots.h | 85 + .../Python/Python-3.6.8/Include/ucnhash.h | 36 + .../Python-3.6.8/Include/unicodeobject.h | 2342 + .../Python/Python-3.6.8/Include/warnings.h | 63 + .../Python-3.6.8/Include/weakrefobject.h | 86 + .../Applications/Python/Python-3.6.8/LICENSE | 254 + .../Python/Python-3.6.8/Lib/__future__.py | 140 + .../Python/Python-3.6.8/Lib/__phello__.foo.py | 1 + .../Python/Python-3.6.8/Lib/_bootlocale.py | 34 + .../Python-3.6.8/Lib/_collections_abc.py | 1011 + .../Python/Python-3.6.8/Lib/_compat_pickle.py | 251 + .../Python/Python-3.6.8/Lib/_compression.py | 152 + .../Python/Python-3.6.8/Lib/_dummy_thread.py | 163 + .../Python/Python-3.6.8/Lib/_markupbase.py | 395 + .../Python/Python-3.6.8/Lib/_osx_support.py | 502 + .../Python/Python-3.6.8/Lib/_pydecimal.py | 6449 ++ .../Python/Python-3.6.8/Lib/_pyio.py | 2532 + .../Python/Python-3.6.8/Lib/_sitebuiltins.py | 103 + .../Python/Python-3.6.8/Lib/_strptime.py | 576 + .../Python-3.6.8/Lib/_threading_local.py | 242 + .../Python/Python-3.6.8/Lib/_weakrefset.py | 196 + .../Python/Python-3.6.8/Lib/abc.py | 250 + .../Python/Python-3.6.8/Lib/aifc.py | 944 + .../Python/Python-3.6.8/Lib/antigravity.py | 17 + .../Python/Python-3.6.8/Lib/argparse.py | 2393 + .../Python/Python-3.6.8/Lib/ast.py | 322 + .../Python/Python-3.6.8/Lib/asynchat.py | 307 + .../Python-3.6.8/Lib/asyncio/__init__.py | 50 + .../Python-3.6.8/Lib/asyncio/base_events.py | 1494 + .../Python-3.6.8/Lib/asyncio/base_futures.py | 71 + .../Lib/asyncio/base_subprocess.py | 293 + .../Python-3.6.8/Lib/asyncio/base_tasks.py | 76 + .../Python/Python-3.6.8/Lib/asyncio/compat.py | 18 + .../Python-3.6.8/Lib/asyncio/constants.py | 12 + .../Python-3.6.8/Lib/asyncio/coroutines.py | 353 + .../Python/Python-3.6.8/Lib/asyncio/events.py | 715 + .../Python-3.6.8/Lib/asyncio/futures.py | 442 + .../Python/Python-3.6.8/Lib/asyncio/locks.py | 501 + .../Python/Python-3.6.8/Lib/asyncio/log.py | 7 + .../Lib/asyncio/proactor_events.py | 556 + .../Python-3.6.8/Lib/asyncio/protocols.py | 134 + .../Python/Python-3.6.8/Lib/asyncio/queues.py | 259 + .../Lib/asyncio/selector_events.py | 1132 + .../Python-3.6.8/Lib/asyncio/sslproto.py | 701 + .../Python-3.6.8/Lib/asyncio/streams.py | 701 + .../Python-3.6.8/Lib/asyncio/subprocess.py | 226 + .../Python/Python-3.6.8/Lib/asyncio/tasks.py | 726 + .../Python-3.6.8/Lib/asyncio/test_utils.py | 537 + .../Python-3.6.8/Lib/asyncio/transports.py | 306 + .../Python-3.6.8/Lib/asyncio/unix_events.py | 1083 + .../Lib/asyncio/windows_events.py | 779 + .../Python-3.6.8/Lib/asyncio/windows_utils.py | 224 + .../Python/Python-3.6.8/Lib/asyncore.py | 645 + .../Python/Python-3.6.8/Lib/base64.py | 595 + .../Python/Python-3.6.8/Lib/bdb.py | 676 + .../Python/Python-3.6.8/Lib/binhex.py | 479 + .../Python/Python-3.6.8/Lib/bisect.py | 92 + .../Python/Python-3.6.8/Lib/bz2.py | 361 + .../Python/Python-3.6.8/Lib/cProfile.py | 161 + .../Python/Python-3.6.8/Lib/calendar.py | 713 + .../Python/Python-3.6.8/Lib/cgi.py | 1094 + .../Python/Python-3.6.8/Lib/cgitb.py | 319 + .../Python/Python-3.6.8/Lib/chunk.py | 169 + .../Python/Python-3.6.8/Lib/cmd.py | 401 + .../Python/Python-3.6.8/Lib/code.py | 314 + .../Python/Python-3.6.8/Lib/codecs.py | 1113 + .../Python/Python-3.6.8/Lib/codeop.py | 168 + .../Python-3.6.8/Lib/collections/__init__.py | 1244 + .../Python-3.6.8/Lib/collections/abc.py | 2 + .../Python/Python-3.6.8/Lib/colorsys.py | 164 + .../Python/Python-3.6.8/Lib/compileall.py | 299 + .../Python-3.6.8/Lib/concurrent/__init__.py | 1 + .../Lib/concurrent/futures/__init__.py | 18 + .../Lib/concurrent/futures/_base.py | 612 + .../Lib/concurrent/futures/process.py | 515 + .../Lib/concurrent/futures/thread.py | 153 + .../Python/Python-3.6.8/Lib/configparser.py | 1342 + .../Python/Python-3.6.8/Lib/contextlib.py | 384 + .../Python/Python-3.6.8/Lib/copy.py | 313 + .../Python/Python-3.6.8/Lib/copyreg.py | 206 + .../Python/Python-3.6.8/Lib/crypt.py | 61 + .../Python/Python-3.6.8/Lib/csv.py | 449 + .../Python-3.6.8/Lib/ctypes/__init__.py | 538 + .../Python/Python-3.6.8/Lib/ctypes/_endian.py | 61 + .../Lib/ctypes/macholib/README.ctypes | 7 + .../Lib/ctypes/macholib/__init__.py | 9 + .../Python-3.6.8/Lib/ctypes/macholib/dyld.py | 159 + .../Python-3.6.8/Lib/ctypes/macholib/dylib.py | 63 + .../Lib/ctypes/macholib/fetch_macholib | 2 + .../Lib/ctypes/macholib/fetch_macholib.bat | 1 + .../Lib/ctypes/macholib/framework.py | 65 + .../Python-3.6.8/Lib/ctypes/test/__init__.py | 14 + .../Python-3.6.8/Lib/ctypes/test/__main__.py | 4 + .../Python-3.6.8/Lib/ctypes/test/test_anon.py | 73 + .../Lib/ctypes/test/test_array_in_pointer.py | 64 + .../Lib/ctypes/test/test_arrays.py | 192 + .../Lib/ctypes/test/test_as_parameter.py | 230 + .../Lib/ctypes/test/test_bitfields.py | 290 + .../Lib/ctypes/test/test_buffers.py | 64 + .../Lib/ctypes/test/test_bytes.py | 66 + .../Lib/ctypes/test/test_byteswap.py | 315 + .../Lib/ctypes/test/test_callbacks.py | 293 + .../Python-3.6.8/Lib/ctypes/test/test_cast.py | 99 + .../Lib/ctypes/test/test_cfuncs.py | 212 + .../Lib/ctypes/test/test_checkretval.py | 36 + .../Lib/ctypes/test/test_delattr.py | 21 + .../Lib/ctypes/test/test_errno.py | 79 + .../Python-3.6.8/Lib/ctypes/test/test_find.py | 116 + .../Lib/ctypes/test/test_frombuffer.py | 141 + .../Lib/ctypes/test/test_funcptr.py | 132 + .../Lib/ctypes/test/test_functions.py | 402 + .../Lib/ctypes/test/test_incomplete.py | 42 + .../Python-3.6.8/Lib/ctypes/test/test_init.py | 40 + .../Lib/ctypes/test/test_internals.py | 100 + .../Lib/ctypes/test/test_keeprefs.py | 153 + .../Python-3.6.8/Lib/ctypes/test/test_libc.py | 33 + .../Lib/ctypes/test/test_loading.py | 116 + .../Lib/ctypes/test/test_macholib.py | 63 + .../Lib/ctypes/test/test_memfunctions.py | 79 + .../Lib/ctypes/test/test_numbers.py | 290 + .../Lib/ctypes/test/test_objects.py | 67 + .../Lib/ctypes/test/test_parameters.py | 207 + .../Lib/ctypes/test/test_pep3118.py | 233 + .../Lib/ctypes/test/test_pickling.py | 81 + .../Lib/ctypes/test/test_pointers.py | 223 + .../Lib/ctypes/test/test_prototypes.py | 222 + .../Lib/ctypes/test/test_python_api.py | 89 + .../Lib/ctypes/test/test_random_things.py | 74 + .../Lib/ctypes/test/test_refcounts.py | 101 + .../Python-3.6.8/Lib/ctypes/test/test_repr.py | 29 + .../Lib/ctypes/test/test_returnfuncptrs.py | 66 + .../Lib/ctypes/test/test_simplesubclasses.py | 55 + .../Lib/ctypes/test/test_sizes.py | 33 + .../Lib/ctypes/test/test_slicing.py | 167 + .../Lib/ctypes/test/test_stringptr.py | 77 + .../Lib/ctypes/test/test_strings.py | 225 + .../Lib/ctypes/test/test_struct_fields.py | 74 + .../Lib/ctypes/test/test_structures.py | 513 + .../ctypes/test/test_unaligned_structures.py | 45 + .../Lib/ctypes/test/test_unicode.py | 56 + .../Lib/ctypes/test/test_values.py | 100 + .../Lib/ctypes/test/test_varsize_struct.py | 50 + .../Lib/ctypes/test/test_win32.py | 165 + .../Lib/ctypes/test/test_wintypes.py | 41 + .../Python/Python-3.6.8/Lib/ctypes/util.py | 337 + .../Python-3.6.8/Lib/ctypes/wintypes.py | 202 + .../Python-3.6.8/Lib/curses/__init__.py | 101 + .../Python/Python-3.6.8/Lib/curses/ascii.py | 99 + .../Python/Python-3.6.8/Lib/curses/has_key.py | 192 + .../Python/Python-3.6.8/Lib/curses/panel.py | 6 + .../Python/Python-3.6.8/Lib/curses/textpad.py | 201 + .../Python/Python-3.6.8/Lib/datetime.py | 2322 + .../Python/Python-3.6.8/Lib/dbm/__init__.py | 188 + .../Python/Python-3.6.8/Lib/dbm/dumb.py | 324 + .../Python/Python-3.6.8/Lib/dbm/gnu.py | 3 + .../Python/Python-3.6.8/Lib/dbm/ndbm.py | 3 + .../Python/Python-3.6.8/Lib/decimal.py | 11 + .../Python/Python-3.6.8/Lib/difflib.py | 2097 + .../Python/Python-3.6.8/Lib/dis.py | 490 + .../Python/Python-3.6.8/Lib/distutils/README | 13 + .../Python-3.6.8/Lib/distutils/__init__.py | 13 + .../Lib/distutils/_msvccompiler.py | 574 + .../Lib/distutils/archive_util.py | 256 + .../Lib/distutils/bcppcompiler.py | 393 + .../Python-3.6.8/Lib/distutils/ccompiler.py | 1115 + .../Python/Python-3.6.8/Lib/distutils/cmd.py | 434 + .../Lib/distutils/command/__init__.py | 31 + .../Lib/distutils/command/bdist.py | 143 + .../Lib/distutils/command/bdist_dumb.py | 123 + .../Lib/distutils/command/bdist_msi.py | 741 + .../Lib/distutils/command/bdist_rpm.py | 582 + .../Lib/distutils/command/bdist_wininst.py | 364 + .../Lib/distutils/command/build.py | 157 + .../Lib/distutils/command/build_clib.py | 209 + .../Lib/distutils/command/build_ext.py | 755 + .../Lib/distutils/command/build_py.py | 416 + .../Lib/distutils/command/build_scripts.py | 160 + .../Lib/distutils/command/check.py | 145 + .../Lib/distutils/command/clean.py | 76 + .../Lib/distutils/command/command_template | 33 + .../Lib/distutils/command/config.py | 347 + .../Lib/distutils/command/install.py | 656 + .../Lib/distutils/command/install_data.py | 79 + .../Lib/distutils/command/install_egg_info.py | 77 + .../Lib/distutils/command/install_headers.py | 47 + .../Lib/distutils/command/install_lib.py | 217 + .../Lib/distutils/command/install_scripts.py | 60 + .../Lib/distutils/command/register.py | 304 + .../Lib/distutils/command/sdist.py | 456 + .../Lib/distutils/command/upload.py | 200 + .../distutils/command/wininst-10.0-amd64.exe | Bin 0 -> 222208 bytes .../Lib/distutils/command/wininst-10.0.exe | Bin 0 -> 190976 bytes .../distutils/command/wininst-14.0-amd64.exe | Bin 0 -> 587776 bytes .../Lib/distutils/command/wininst-14.0.exe | Bin 0 -> 458240 bytes .../Lib/distutils/command/wininst-6.0.exe | Bin 0 -> 61440 bytes .../Lib/distutils/command/wininst-7.1.exe | Bin 0 -> 65536 bytes .../Lib/distutils/command/wininst-8.0.exe | Bin 0 -> 61440 bytes .../distutils/command/wininst-9.0-amd64.exe | Bin 0 -> 224256 bytes .../Lib/distutils/command/wininst-9.0.exe | Bin 0 -> 196096 bytes .../Python-3.6.8/Lib/distutils/config.py | 131 + .../Python/Python-3.6.8/Lib/distutils/core.py | 234 + .../Lib/distutils/cygwinccompiler.py | 405 + .../Python-3.6.8/Lib/distutils/debug.py | 5 + .../Python-3.6.8/Lib/distutils/dep_util.py | 92 + .../Python-3.6.8/Lib/distutils/dir_util.py | 210 + .../Python/Python-3.6.8/Lib/distutils/dist.py | 1236 + .../Python-3.6.8/Lib/distutils/errors.py | 97 + .../Python-3.6.8/Lib/distutils/extension.py | 240 + .../Lib/distutils/fancy_getopt.py | 457 + .../Python-3.6.8/Lib/distutils/file_util.py | 238 + .../Python-3.6.8/Lib/distutils/filelist.py | 327 + .../Python/Python-3.6.8/Lib/distutils/log.py | 77 + .../Lib/distutils/msvc9compiler.py | 791 + .../Lib/distutils/msvccompiler.py | 643 + .../Python-3.6.8/Lib/distutils/spawn.py | 192 + .../Python-3.6.8/Lib/distutils/sysconfig.py | 532 + .../Lib/distutils/tests/Setup.sample | 67 + .../Lib/distutils/tests/__init__.py | 36 + .../Lib/distutils/tests/support.py | 210 + .../Lib/distutils/tests/test_archive_util.py | 394 + .../Lib/distutils/tests/test_bdist.py | 53 + .../Lib/distutils/tests/test_bdist_dumb.py | 97 + .../Lib/distutils/tests/test_bdist_msi.py | 25 + .../Lib/distutils/tests/test_bdist_rpm.py | 135 + .../Lib/distutils/tests/test_bdist_wininst.py | 33 + .../Lib/distutils/tests/test_build.py | 56 + .../Lib/distutils/tests/test_build_clib.py | 135 + .../Lib/distutils/tests/test_build_ext.py | 521 + .../Lib/distutils/tests/test_build_py.py | 179 + .../Lib/distutils/tests/test_build_scripts.py | 112 + .../Lib/distutils/tests/test_check.py | 149 + .../Lib/distutils/tests/test_clean.py | 49 + .../Lib/distutils/tests/test_cmd.py | 126 + .../Lib/distutils/tests/test_config.py | 140 + .../Lib/distutils/tests/test_config_cmd.py | 92 + .../Lib/distutils/tests/test_core.py | 140 + .../distutils/tests/test_cygwinccompiler.py | 154 + .../Lib/distutils/tests/test_dep_util.py | 80 + .../Lib/distutils/tests/test_dir_util.py | 139 + .../Lib/distutils/tests/test_dist.py | 456 + .../Lib/distutils/tests/test_extension.py | 69 + .../Lib/distutils/tests/test_file_util.py | 114 + .../Lib/distutils/tests/test_filelist.py | 340 + .../Lib/distutils/tests/test_install.py | 248 + .../Lib/distutils/tests/test_install_data.py | 75 + .../distutils/tests/test_install_headers.py | 39 + .../Lib/distutils/tests/test_install_lib.py | 115 + .../distutils/tests/test_install_scripts.py | 82 + .../Lib/distutils/tests/test_log.py | 46 + .../Lib/distutils/tests/test_msvc9compiler.py | 184 + .../Lib/distutils/tests/test_msvccompiler.py | 132 + .../Lib/distutils/tests/test_register.py | 323 + .../Lib/distutils/tests/test_sdist.py | 492 + .../Lib/distutils/tests/test_spawn.py | 103 + .../Lib/distutils/tests/test_sysconfig.py | 198 + .../Lib/distutils/tests/test_text_file.py | 107 + .../Lib/distutils/tests/test_unixccompiler.py | 149 + .../Lib/distutils/tests/test_upload.py | 207 + .../Lib/distutils/tests/test_util.py | 300 + .../Lib/distutils/tests/test_version.py | 71 + .../distutils/tests/test_versionpredicate.py | 13 + .../Python-3.6.8/Lib/distutils/text_file.py | 286 + .../Lib/distutils/unixccompiler.py | 322 + .../Python/Python-3.6.8/Lib/distutils/util.py | 557 + .../Python-3.6.8/Lib/distutils/version.py | 343 + .../Lib/distutils/versionpredicate.py | 166 + .../Python/Python-3.6.8/Lib/doctest.py | 2787 + .../Python-3.6.8/Lib/dummy_threading.py | 78 + .../Python/Python-3.6.8/Lib/email/__init__.py | 62 + .../Python-3.6.8/Lib/email/_encoded_words.py | 233 + .../Lib/email/_header_value_parser.py | 2817 + .../Python-3.6.8/Lib/email/_parseaddr.py | 540 + .../Python-3.6.8/Lib/email/_policybase.py | 374 + .../Python-3.6.8/Lib/email/architecture.rst | 216 + .../Python-3.6.8/Lib/email/base64mime.py | 119 + .../Python/Python-3.6.8/Lib/email/charset.py | 406 + .../Python-3.6.8/Lib/email/contentmanager.py | 250 + .../Python/Python-3.6.8/Lib/email/encoders.py | 69 + .../Python/Python-3.6.8/Lib/email/errors.py | 110 + .../Python-3.6.8/Lib/email/feedparser.py | 536 + .../Python-3.6.8/Lib/email/generator.py | 508 + .../Python/Python-3.6.8/Lib/email/header.py | 578 + .../Python-3.6.8/Lib/email/headerregistry.py | 589 + .../Python-3.6.8/Lib/email/iterators.py | 71 + .../Python/Python-3.6.8/Lib/email/message.py | 1164 + .../Python-3.6.8/Lib/email/mime/__init__.py | 0 .../Lib/email/mime/application.py | 37 + .../Python-3.6.8/Lib/email/mime/audio.py | 74 + .../Python-3.6.8/Lib/email/mime/base.py | 30 + .../Python-3.6.8/Lib/email/mime/image.py | 47 + .../Python-3.6.8/Lib/email/mime/message.py | 34 + .../Python-3.6.8/Lib/email/mime/multipart.py | 48 + .../Lib/email/mime/nonmultipart.py | 22 + .../Python-3.6.8/Lib/email/mime/text.py | 42 + .../Python/Python-3.6.8/Lib/email/parser.py | 132 + .../Python/Python-3.6.8/Lib/email/policy.py | 223 + .../Python-3.6.8/Lib/email/quoprimime.py | 299 + .../Python/Python-3.6.8/Lib/email/utils.py | 388 + .../Python-3.6.8/Lib/encodings/__init__.py | 169 + .../Python-3.6.8/Lib/encodings/aliases.py | 550 + .../Python-3.6.8/Lib/encodings/ascii.py | 50 + .../Lib/encodings/base64_codec.py | 55 + .../Python/Python-3.6.8/Lib/encodings/big5.py | 39 + .../Python-3.6.8/Lib/encodings/big5hkscs.py | 39 + .../Python-3.6.8/Lib/encodings/bz2_codec.py | 78 + .../Python-3.6.8/Lib/encodings/charmap.py | 69 + .../Python-3.6.8/Lib/encodings/cp037.py | 307 + .../Python-3.6.8/Lib/encodings/cp1006.py | 307 + .../Python-3.6.8/Lib/encodings/cp1026.py | 307 + .../Python-3.6.8/Lib/encodings/cp1125.py | 698 + .../Python-3.6.8/Lib/encodings/cp1140.py | 307 + .../Python-3.6.8/Lib/encodings/cp1250.py | 307 + .../Python-3.6.8/Lib/encodings/cp1251.py | 307 + .../Python-3.6.8/Lib/encodings/cp1252.py | 307 + .../Python-3.6.8/Lib/encodings/cp1253.py | 307 + .../Python-3.6.8/Lib/encodings/cp1254.py | 307 + .../Python-3.6.8/Lib/encodings/cp1255.py | 307 + .../Python-3.6.8/Lib/encodings/cp1256.py | 307 + .../Python-3.6.8/Lib/encodings/cp1257.py | 307 + .../Python-3.6.8/Lib/encodings/cp1258.py | 307 + .../Python-3.6.8/Lib/encodings/cp273.py | 307 + .../Python-3.6.8/Lib/encodings/cp424.py | 307 + .../Python-3.6.8/Lib/encodings/cp437.py | 698 + .../Python-3.6.8/Lib/encodings/cp500.py | 307 + .../Python-3.6.8/Lib/encodings/cp65001.py | 43 + .../Python-3.6.8/Lib/encodings/cp720.py | 309 + .../Python-3.6.8/Lib/encodings/cp737.py | 698 + .../Python-3.6.8/Lib/encodings/cp775.py | 697 + .../Python-3.6.8/Lib/encodings/cp850.py | 698 + .../Python-3.6.8/Lib/encodings/cp852.py | 698 + .../Python-3.6.8/Lib/encodings/cp855.py | 698 + .../Python-3.6.8/Lib/encodings/cp856.py | 307 + .../Python-3.6.8/Lib/encodings/cp857.py | 694 + .../Python-3.6.8/Lib/encodings/cp858.py | 698 + .../Python-3.6.8/Lib/encodings/cp860.py | 698 + .../Python-3.6.8/Lib/encodings/cp861.py | 698 + .../Python-3.6.8/Lib/encodings/cp862.py | 698 + .../Python-3.6.8/Lib/encodings/cp863.py | 698 + .../Python-3.6.8/Lib/encodings/cp864.py | 690 + .../Python-3.6.8/Lib/encodings/cp865.py | 698 + .../Python-3.6.8/Lib/encodings/cp866.py | 698 + .../Python-3.6.8/Lib/encodings/cp869.py | 689 + .../Python-3.6.8/Lib/encodings/cp874.py | 307 + .../Python-3.6.8/Lib/encodings/cp875.py | 307 + .../Python-3.6.8/Lib/encodings/cp932.py | 39 + .../Python-3.6.8/Lib/encodings/cp949.py | 39 + .../Python-3.6.8/Lib/encodings/cp950.py | 39 + .../Lib/encodings/euc_jis_2004.py | 39 + .../Lib/encodings/euc_jisx0213.py | 39 + .../Python-3.6.8/Lib/encodings/euc_jp.py | 39 + .../Python-3.6.8/Lib/encodings/euc_kr.py | 39 + .../Python-3.6.8/Lib/encodings/gb18030.py | 39 + .../Python-3.6.8/Lib/encodings/gb2312.py | 39 + .../Python/Python-3.6.8/Lib/encodings/gbk.py | 39 + .../Python-3.6.8/Lib/encodings/hex_codec.py | 55 + .../Python-3.6.8/Lib/encodings/hp_roman8.py | 314 + .../Python/Python-3.6.8/Lib/encodings/hz.py | 39 + .../Python/Python-3.6.8/Lib/encodings/idna.py | 309 + .../Python-3.6.8/Lib/encodings/iso2022_jp.py | 39 + .../Lib/encodings/iso2022_jp_1.py | 39 + .../Lib/encodings/iso2022_jp_2.py | 39 + .../Lib/encodings/iso2022_jp_2004.py | 39 + .../Lib/encodings/iso2022_jp_3.py | 39 + .../Lib/encodings/iso2022_jp_ext.py | 39 + .../Python-3.6.8/Lib/encodings/iso2022_kr.py | 39 + .../Python-3.6.8/Lib/encodings/iso8859_1.py | 307 + .../Python-3.6.8/Lib/encodings/iso8859_10.py | 307 + .../Python-3.6.8/Lib/encodings/iso8859_11.py | 307 + .../Python-3.6.8/Lib/encodings/iso8859_13.py | 307 + .../Python-3.6.8/Lib/encodings/iso8859_14.py | 307 + .../Python-3.6.8/Lib/encodings/iso8859_15.py | 307 + .../Python-3.6.8/Lib/encodings/iso8859_16.py | 307 + .../Python-3.6.8/Lib/encodings/iso8859_2.py | 307 + .../Python-3.6.8/Lib/encodings/iso8859_3.py | 307 + .../Python-3.6.8/Lib/encodings/iso8859_4.py | 307 + .../Python-3.6.8/Lib/encodings/iso8859_5.py | 307 + .../Python-3.6.8/Lib/encodings/iso8859_6.py | 307 + .../Python-3.6.8/Lib/encodings/iso8859_7.py | 307 + .../Python-3.6.8/Lib/encodings/iso8859_8.py | 307 + .../Python-3.6.8/Lib/encodings/iso8859_9.py | 307 + .../Python-3.6.8/Lib/encodings/johab.py | 39 + .../Python-3.6.8/Lib/encodings/koi8_r.py | 307 + .../Python-3.6.8/Lib/encodings/koi8_t.py | 308 + .../Python-3.6.8/Lib/encodings/koi8_u.py | 307 + .../Python-3.6.8/Lib/encodings/kz1048.py | 307 + .../Python-3.6.8/Lib/encodings/latin_1.py | 50 + .../Python-3.6.8/Lib/encodings/mac_arabic.py | 698 + .../Lib/encodings/mac_centeuro.py | 307 + .../Lib/encodings/mac_croatian.py | 307 + .../Lib/encodings/mac_cyrillic.py | 307 + .../Python-3.6.8/Lib/encodings/mac_farsi.py | 307 + .../Python-3.6.8/Lib/encodings/mac_greek.py | 307 + .../Python-3.6.8/Lib/encodings/mac_iceland.py | 307 + .../Python-3.6.8/Lib/encodings/mac_latin2.py | 312 + .../Python-3.6.8/Lib/encodings/mac_roman.py | 307 + .../Lib/encodings/mac_romanian.py | 307 + .../Python-3.6.8/Lib/encodings/mac_turkish.py | 307 + .../Python/Python-3.6.8/Lib/encodings/mbcs.py | 47 + .../Python/Python-3.6.8/Lib/encodings/oem.py | 41 + .../Python-3.6.8/Lib/encodings/palmos.py | 308 + .../Python-3.6.8/Lib/encodings/ptcp154.py | 312 + .../Python-3.6.8/Lib/encodings/punycode.py | 237 + .../Lib/encodings/quopri_codec.py | 56 + .../Lib/encodings/raw_unicode_escape.py | 45 + .../Python-3.6.8/Lib/encodings/rot_13.py | 113 + .../Python-3.6.8/Lib/encodings/shift_jis.py | 39 + .../Lib/encodings/shift_jis_2004.py | 39 + .../Lib/encodings/shift_jisx0213.py | 39 + .../Python-3.6.8/Lib/encodings/tis_620.py | 307 + .../Python-3.6.8/Lib/encodings/undefined.py | 49 + .../Lib/encodings/unicode_escape.py | 45 + .../Lib/encodings/unicode_internal.py | 45 + .../Python-3.6.8/Lib/encodings/utf_16.py | 155 + .../Python-3.6.8/Lib/encodings/utf_16_be.py | 42 + .../Python-3.6.8/Lib/encodings/utf_16_le.py | 42 + .../Python-3.6.8/Lib/encodings/utf_32.py | 150 + .../Python-3.6.8/Lib/encodings/utf_32_be.py | 37 + .../Python-3.6.8/Lib/encodings/utf_32_le.py | 37 + .../Python-3.6.8/Lib/encodings/utf_7.py | 38 + .../Python-3.6.8/Lib/encodings/utf_8.py | 42 + .../Python-3.6.8/Lib/encodings/utf_8_sig.py | 130 + .../Python-3.6.8/Lib/encodings/uu_codec.py | 99 + .../Python-3.6.8/Lib/encodings/zlib_codec.py | 77 + .../Python-3.6.8/Lib/ensurepip/__init__.py | 205 + .../Python-3.6.8/Lib/ensurepip/__main__.py | 5 + .../_bundled/pip-18.1-py2.py3-none-any.whl | Bin 0 -> 1323545 bytes .../setuptools-40.6.2-py2.py3-none-any.whl | Bin 0 -> 573107 bytes .../Python-3.6.8/Lib/ensurepip/_uninstall.py | 31 + .../Python/Python-3.6.8/Lib/enum.py | 877 + .../Python/Python-3.6.8/Lib/filecmp.py | 305 + .../Python/Python-3.6.8/Lib/fileinput.py | 425 + .../Python/Python-3.6.8/Lib/fnmatch.py | 109 + .../Python/Python-3.6.8/Lib/formatter.py | 452 + .../Python/Python-3.6.8/Lib/fractions.py | 643 + .../Python/Python-3.6.8/Lib/ftplib.py | 989 + .../Python/Python-3.6.8/Lib/functools.py | 816 + .../Python/Python-3.6.8/Lib/genericpath.py | 151 + .../Python/Python-3.6.8/Lib/getopt.py | 215 + .../Python/Python-3.6.8/Lib/getpass.py | 185 + .../Python/Python-3.6.8/Lib/gettext.py | 637 + .../Python/Python-3.6.8/Lib/glob.py | 171 + .../Python/Python-3.6.8/Lib/gzip.py | 574 + .../Python/Python-3.6.8/Lib/hashlib.py | 252 + .../Python/Python-3.6.8/Lib/heapq.py | 607 + .../Python/Python-3.6.8/Lib/hmac.py | 144 + .../Python/Python-3.6.8/Lib/html/__init__.py | 132 + .../Python/Python-3.6.8/Lib/html/entities.py | 2509 + .../Python/Python-3.6.8/Lib/html/parser.py | 470 + .../Python/Python-3.6.8/Lib/http/__init__.py | 134 + .../Python/Python-3.6.8/Lib/http/client.py | 1478 + .../Python/Python-3.6.8/Lib/http/cookiejar.py | 2098 + .../Python/Python-3.6.8/Lib/http/cookies.py | 637 + .../Python/Python-3.6.8/Lib/http/server.py | 1211 + .../Python-3.6.8/Lib/idlelib/CREDITS.txt | 37 + .../Python/Python-3.6.8/Lib/idlelib/ChangeLog | 1591 + .../Python-3.6.8/Lib/idlelib/HISTORY.txt | 296 + .../Python-3.6.8/Lib/idlelib/Icons/folder.gif | Bin 0 -> 120 bytes .../Python-3.6.8/Lib/idlelib/Icons/idle.icns | Bin 0 -> 57435 bytes .../Python-3.6.8/Lib/idlelib/Icons/idle.ico | Bin 0 -> 19790 bytes .../Lib/idlelib/Icons/idle_16.gif | Bin 0 -> 1034 bytes .../Lib/idlelib/Icons/idle_16.png | Bin 0 -> 1264 bytes .../Lib/idlelib/Icons/idle_32.gif | Bin 0 -> 1435 bytes .../Lib/idlelib/Icons/idle_32.png | Bin 0 -> 2542 bytes .../Lib/idlelib/Icons/idle_48.gif | Bin 0 -> 1388 bytes .../Lib/idlelib/Icons/idle_48.png | Bin 0 -> 4710 bytes .../Lib/idlelib/Icons/minusnode.gif | Bin 0 -> 96 bytes .../Lib/idlelib/Icons/openfolder.gif | Bin 0 -> 125 bytes .../Lib/idlelib/Icons/plusnode.gif | Bin 0 -> 79 bytes .../Python-3.6.8/Lib/idlelib/Icons/python.gif | Bin 0 -> 585 bytes .../Python-3.6.8/Lib/idlelib/Icons/tk.gif | Bin 0 -> 85 bytes .../Python/Python-3.6.8/Lib/idlelib/NEWS.txt | 958 + .../Python-3.6.8/Lib/idlelib/NEWS2x.txt | 660 + .../Python-3.6.8/Lib/idlelib/README.txt | 251 + .../Python/Python-3.6.8/Lib/idlelib/TODO.txt | 210 + .../Python-3.6.8/Lib/idlelib/__init__.py | 10 + .../Python-3.6.8/Lib/idlelib/__main__.py | 8 + .../Python-3.6.8/Lib/idlelib/_pyclbr.py | 402 + .../Python-3.6.8/Lib/idlelib/autocomplete.py | 231 + .../Lib/idlelib/autocomplete_w.py | 467 + .../Python-3.6.8/Lib/idlelib/autoexpand.py | 96 + .../Python-3.6.8/Lib/idlelib/browser.py | 248 + .../Python-3.6.8/Lib/idlelib/calltip.py | 178 + .../Python-3.6.8/Lib/idlelib/calltip_w.py | 200 + .../Python-3.6.8/Lib/idlelib/codecontext.py | 240 + .../Python-3.6.8/Lib/idlelib/colorizer.py | 296 + .../Lib/idlelib/config-extensions.def | 62 + .../Lib/idlelib/config-highlight.def | 99 + .../Python-3.6.8/Lib/idlelib/config-keys.def | 304 + .../Python-3.6.8/Lib/idlelib/config-main.def | 91 + .../Python/Python-3.6.8/Lib/idlelib/config.py | 930 + .../Python-3.6.8/Lib/idlelib/config_key.py | 300 + .../Python-3.6.8/Lib/idlelib/configdialog.py | 2308 + .../Python-3.6.8/Lib/idlelib/debugger.py | 550 + .../Python-3.6.8/Lib/idlelib/debugger_r.py | 393 + .../Python-3.6.8/Lib/idlelib/debugobj.py | 142 + .../Python-3.6.8/Lib/idlelib/debugobj_r.py | 41 + .../Python-3.6.8/Lib/idlelib/delegator.py | 33 + .../Python-3.6.8/Lib/idlelib/dynoption.py | 58 + .../Python/Python-3.6.8/Lib/idlelib/editor.py | 1725 + .../Python-3.6.8/Lib/idlelib/extend.txt | 83 + .../Python-3.6.8/Lib/idlelib/filelist.py | 131 + .../Python/Python-3.6.8/Lib/idlelib/grep.py | 200 + .../Python/Python-3.6.8/Lib/idlelib/help.html | 910 + .../Python/Python-3.6.8/Lib/idlelib/help.py | 285 + .../Python-3.6.8/Lib/idlelib/help_about.py | 207 + .../Python-3.6.8/Lib/idlelib/history.py | 106 + .../Python-3.6.8/Lib/idlelib/hyperparser.py | 312 + .../Python/Python-3.6.8/Lib/idlelib/idle.bat | 4 + .../Python/Python-3.6.8/Lib/idlelib/idle.py | 14 + .../Python/Python-3.6.8/Lib/idlelib/idle.pyw | 17 + .../Lib/idlelib/idle_test/README.txt | 238 + .../Lib/idlelib/idle_test/__init__.py | 17 + .../Lib/idlelib/idle_test/htest.py | 415 + .../Lib/idlelib/idle_test/mock_idle.py | 60 + .../Lib/idlelib/idle_test/mock_tk.py | 303 + .../Lib/idlelib/idle_test/template.py | 30 + .../idlelib/idle_test/test_autocomplete.py | 144 + .../idlelib/idle_test/test_autocomplete_w.py | 32 + .../Lib/idlelib/idle_test/test_autoexpand.py | 155 + .../Lib/idlelib/idle_test/test_browser.py | 248 + .../Lib/idlelib/idle_test/test_calltip.py | 216 + .../Lib/idlelib/idle_test/test_calltip_w.py | 29 + .../Lib/idlelib/idle_test/test_codecontext.py | 403 + .../Lib/idlelib/idle_test/test_colorizer.py | 53 + .../Lib/idlelib/idle_test/test_config.py | 822 + .../Lib/idlelib/idle_test/test_config_key.py | 99 + .../idlelib/idle_test/test_configdialog.py | 1418 + .../Lib/idlelib/idle_test/test_debugger.py | 29 + .../Lib/idlelib/idle_test/test_debugger_r.py | 29 + .../Lib/idlelib/idle_test/test_debugobj.py | 57 + .../Lib/idlelib/idle_test/test_debugobj_r.py | 22 + .../Lib/idlelib/idle_test/test_delegator.py | 44 + .../Lib/idlelib/idle_test/test_editmenu.py | 74 + .../Lib/idlelib/idle_test/test_editor.py | 46 + .../Lib/idlelib/idle_test/test_filelist.py | 33 + .../Lib/idlelib/idle_test/test_grep.py | 86 + .../Lib/idlelib/idle_test/test_help.py | 34 + .../Lib/idlelib/idle_test/test_help_about.py | 180 + .../Lib/idlelib/idle_test/test_history.py | 172 + .../Lib/idlelib/idle_test/test_hyperparser.py | 276 + .../Lib/idlelib/idle_test/test_iomenu.py | 37 + .../Lib/idlelib/idle_test/test_macosx.py | 104 + .../Lib/idlelib/idle_test/test_mainmenu.py | 21 + .../Lib/idlelib/idle_test/test_multicall.py | 40 + .../Lib/idlelib/idle_test/test_outwin.py | 171 + .../Lib/idlelib/idle_test/test_paragraph.py | 379 + .../Lib/idlelib/idle_test/test_parenmatch.py | 112 + .../Lib/idlelib/idle_test/test_pathbrowser.py | 86 + .../Lib/idlelib/idle_test/test_percolator.py | 118 + .../Lib/idlelib/idle_test/test_pyparse.py | 466 + .../Lib/idlelib/idle_test/test_pyshell.py | 42 + .../Lib/idlelib/idle_test/test_query.py | 352 + .../Lib/idlelib/idle_test/test_redirector.py | 122 + .../Lib/idlelib/idle_test/test_replace.py | 294 + .../Lib/idlelib/idle_test/test_rpc.py | 29 + .../Lib/idlelib/idle_test/test_rstrip.py | 53 + .../Lib/idlelib/idle_test/test_run.py | 264 + .../Lib/idlelib/idle_test/test_runscript.py | 33 + .../idlelib/idle_test/test_scrolledlist.py | 27 + .../Lib/idlelib/idle_test/test_search.py | 80 + .../Lib/idlelib/idle_test/test_searchbase.py | 156 + .../idlelib/idle_test/test_searchengine.py | 330 + .../Lib/idlelib/idle_test/test_squeezer.py | 509 + .../Lib/idlelib/idle_test/test_stackviewer.py | 47 + .../Lib/idlelib/idle_test/test_statusbar.py | 41 + .../Lib/idlelib/idle_test/test_text.py | 236 + .../Lib/idlelib/idle_test/test_textview.py | 181 + .../Lib/idlelib/idle_test/test_tooltip.py | 146 + .../Lib/idlelib/idle_test/test_tree.py | 33 + .../Lib/idlelib/idle_test/test_undo.py | 135 + .../Lib/idlelib/idle_test/test_warning.py | 73 + .../Lib/idlelib/idle_test/test_window.py | 45 + .../Lib/idlelib/idle_test/test_zoomheight.py | 39 + .../Python/Python-3.6.8/Lib/idlelib/iomenu.py | 574 + .../Python/Python-3.6.8/Lib/idlelib/macosx.py | 287 + .../Python-3.6.8/Lib/idlelib/mainmenu.py | 119 + .../Python-3.6.8/Lib/idlelib/multicall.py | 448 + .../Python/Python-3.6.8/Lib/idlelib/outwin.py | 188 + .../Python-3.6.8/Lib/idlelib/paragraph.py | 194 + .../Python-3.6.8/Lib/idlelib/parenmatch.py | 183 + .../Python-3.6.8/Lib/idlelib/pathbrowser.py | 111 + .../Python-3.6.8/Lib/idlelib/percolator.py | 103 + .../Python-3.6.8/Lib/idlelib/pyparse.py | 598 + .../Python-3.6.8/Lib/idlelib/pyshell.py | 1577 + .../Python/Python-3.6.8/Lib/idlelib/query.py | 312 + .../Python-3.6.8/Lib/idlelib/redirector.py | 174 + .../Python-3.6.8/Lib/idlelib/replace.py | 242 + .../Python/Python-3.6.8/Lib/idlelib/rpc.py | 636 + .../Python/Python-3.6.8/Lib/idlelib/rstrip.py | 29 + .../Python/Python-3.6.8/Lib/idlelib/run.py | 525 + .../Python-3.6.8/Lib/idlelib/runscript.py | 200 + .../Python-3.6.8/Lib/idlelib/scrolledlist.py | 149 + .../Python/Python-3.6.8/Lib/idlelib/search.py | 101 + .../Python-3.6.8/Lib/idlelib/searchbase.py | 201 + .../Python-3.6.8/Lib/idlelib/searchengine.py | 237 + .../Python-3.6.8/Lib/idlelib/squeezer.py | 355 + .../Python-3.6.8/Lib/idlelib/stackviewer.py | 155 + .../Python-3.6.8/Lib/idlelib/statusbar.py | 49 + .../Python-3.6.8/Lib/idlelib/textview.py | 175 + .../Python-3.6.8/Lib/idlelib/tooltip.py | 186 + .../Python/Python-3.6.8/Lib/idlelib/tree.py | 469 + .../Python/Python-3.6.8/Lib/idlelib/undo.py | 366 + .../Python/Python-3.6.8/Lib/idlelib/window.py | 97 + .../Python-3.6.8/Lib/idlelib/zoomheight.py | 55 + .../Python-3.6.8/Lib/idlelib/zzdummy.py | 42 + .../Python/Python-3.6.8/Lib/imaplib.py | 1614 + .../Python/Python-3.6.8/Lib/imghdr.py | 168 + .../Python/Python-3.6.8/Lib/imp.py | 346 + .../Python-3.6.8/Lib/importlib/__init__.py | 173 + .../Python-3.6.8/Lib/importlib/_bootstrap.py | 1161 + .../Lib/importlib/_bootstrap_external.py | 1443 + .../Python/Python-3.6.8/Lib/importlib/abc.py | 329 + .../Python-3.6.8/Lib/importlib/machinery.py | 21 + .../Python/Python-3.6.8/Lib/importlib/util.py | 288 + .../Python/Python-3.6.8/Lib/inspect.py | 3127 + .../Python/Python-3.6.8/Lib/io.py | 99 + .../Python/Python-3.6.8/Lib/ipaddress.py | 2266 + .../Python/Python-3.6.8/Lib/json/__init__.py | 367 + .../Python/Python-3.6.8/Lib/json/decoder.py | 358 + .../Python/Python-3.6.8/Lib/json/encoder.py | 441 + .../Python/Python-3.6.8/Lib/json/scanner.py | 73 + .../Python/Python-3.6.8/Lib/json/tool.py | 50 + .../Python/Python-3.6.8/Lib/keyword.py | 94 + .../Python-3.6.8/Lib/lib2to3/Grammar.txt | 154 + .../Lib/lib2to3/PatternGrammar.txt | 28 + .../Python-3.6.8/Lib/lib2to3/__init__.py | 1 + .../Python-3.6.8/Lib/lib2to3/__main__.py | 4 + .../Python-3.6.8/Lib/lib2to3/btm_matcher.py | 168 + .../Python-3.6.8/Lib/lib2to3/btm_utils.py | 281 + .../Python-3.6.8/Lib/lib2to3/fixer_base.py | 186 + .../Python-3.6.8/Lib/lib2to3/fixer_util.py | 453 + .../Lib/lib2to3/fixes/__init__.py | 1 + .../Lib/lib2to3/fixes/fix_apply.py | 70 + .../Lib/lib2to3/fixes/fix_asserts.py | 34 + .../Lib/lib2to3/fixes/fix_basestring.py | 14 + .../Lib/lib2to3/fixes/fix_buffer.py | 22 + .../Lib/lib2to3/fixes/fix_dict.py | 106 + .../Lib/lib2to3/fixes/fix_except.py | 93 + .../Lib/lib2to3/fixes/fix_exec.py | 39 + .../Lib/lib2to3/fixes/fix_execfile.py | 53 + .../Lib/lib2to3/fixes/fix_exitfunc.py | 72 + .../Lib/lib2to3/fixes/fix_filter.py | 90 + .../Lib/lib2to3/fixes/fix_funcattrs.py | 21 + .../Lib/lib2to3/fixes/fix_future.py | 22 + .../Lib/lib2to3/fixes/fix_getcwdu.py | 19 + .../Lib/lib2to3/fixes/fix_has_key.py | 109 + .../Lib/lib2to3/fixes/fix_idioms.py | 152 + .../Lib/lib2to3/fixes/fix_import.py | 99 + .../Lib/lib2to3/fixes/fix_imports.py | 145 + .../Lib/lib2to3/fixes/fix_imports2.py | 16 + .../Lib/lib2to3/fixes/fix_input.py | 26 + .../Lib/lib2to3/fixes/fix_intern.py | 41 + .../Lib/lib2to3/fixes/fix_isinstance.py | 52 + .../Lib/lib2to3/fixes/fix_itertools.py | 43 + .../lib2to3/fixes/fix_itertools_imports.py | 57 + .../Lib/lib2to3/fixes/fix_long.py | 19 + .../Python-3.6.8/Lib/lib2to3/fixes/fix_map.py | 110 + .../Lib/lib2to3/fixes/fix_metaclass.py | 228 + .../Lib/lib2to3/fixes/fix_methodattrs.py | 24 + .../Python-3.6.8/Lib/lib2to3/fixes/fix_ne.py | 23 + .../Lib/lib2to3/fixes/fix_next.py | 103 + .../Lib/lib2to3/fixes/fix_nonzero.py | 21 + .../Lib/lib2to3/fixes/fix_numliterals.py | 28 + .../Lib/lib2to3/fixes/fix_operator.py | 98 + .../Lib/lib2to3/fixes/fix_paren.py | 44 + .../Lib/lib2to3/fixes/fix_print.py | 87 + .../Lib/lib2to3/fixes/fix_raise.py | 90 + .../Lib/lib2to3/fixes/fix_raw_input.py | 17 + .../Lib/lib2to3/fixes/fix_reduce.py | 35 + .../Lib/lib2to3/fixes/fix_reload.py | 38 + .../Lib/lib2to3/fixes/fix_renames.py | 70 + .../Lib/lib2to3/fixes/fix_repr.py | 23 + .../Lib/lib2to3/fixes/fix_set_literal.py | 53 + .../Lib/lib2to3/fixes/fix_standarderror.py | 18 + .../Lib/lib2to3/fixes/fix_sys_exc.py | 30 + .../Lib/lib2to3/fixes/fix_throw.py | 56 + .../Lib/lib2to3/fixes/fix_tuple_params.py | 175 + .../Lib/lib2to3/fixes/fix_types.py | 61 + .../Lib/lib2to3/fixes/fix_unicode.py | 42 + .../Lib/lib2to3/fixes/fix_urllib.py | 196 + .../Lib/lib2to3/fixes/fix_ws_comma.py | 39 + .../Lib/lib2to3/fixes/fix_xrange.py | 73 + .../Lib/lib2to3/fixes/fix_xreadlines.py | 25 + .../Python-3.6.8/Lib/lib2to3/fixes/fix_zip.py | 46 + .../Python/Python-3.6.8/Lib/lib2to3/main.py | 268 + .../Python-3.6.8/Lib/lib2to3/patcomp.py | 204 + .../Lib/lib2to3/pgen2/__init__.py | 4 + .../Python-3.6.8/Lib/lib2to3/pgen2/conv.py | 257 + .../Python-3.6.8/Lib/lib2to3/pgen2/driver.py | 181 + .../Python-3.6.8/Lib/lib2to3/pgen2/grammar.py | 211 + .../Lib/lib2to3/pgen2/literals.py | 60 + .../Python-3.6.8/Lib/lib2to3/pgen2/parse.py | 201 + .../Python-3.6.8/Lib/lib2to3/pgen2/pgen.py | 386 + .../Python-3.6.8/Lib/lib2to3/pgen2/token.py | 85 + .../Lib/lib2to3/pgen2/tokenize.py | 590 + .../Python/Python-3.6.8/Lib/lib2to3/pygram.py | 40 + .../Python/Python-3.6.8/Lib/lib2to3/pytree.py | 854 + .../Python-3.6.8/Lib/lib2to3/refactor.py | 744 + .../Lib/lib2to3/tests/__init__.py | 9 + .../Lib/lib2to3/tests/__main__.py | 4 + .../Lib/lib2to3/tests/data/README | 6 + .../Lib/lib2to3/tests/data/bom.py | 2 + .../Lib/lib2to3/tests/data/crlf.py | 3 + .../lib2to3/tests/data/different_encoding.py | 6 + .../Lib/lib2to3/tests/data/false_encoding.py | 2 + .../lib2to3/tests/data/fixers/bad_order.py | 5 + .../tests/data/fixers/myfixes/__init__.py | 0 .../tests/data/fixers/myfixes/fix_explicit.py | 6 + .../tests/data/fixers/myfixes/fix_first.py | 6 + .../tests/data/fixers/myfixes/fix_last.py | 7 + .../tests/data/fixers/myfixes/fix_parrot.py | 13 + .../tests/data/fixers/myfixes/fix_preorder.py | 6 + .../lib2to3/tests/data/fixers/no_fixer_cls.py | 1 + .../tests/data/fixers/parrot_example.py | 2 + .../lib2to3/tests/data/infinite_recursion.py | 2669 + .../lib2to3/tests/data/py2_test_grammar.py | 974 + .../lib2to3/tests/data/py3_test_grammar.py | 945 + .../Lib/lib2to3/tests/pytree_idempotency.py | 94 + .../Python-3.6.8/Lib/lib2to3/tests/support.py | 58 + .../Lib/lib2to3/tests/test_all_fixers.py | 27 + .../Lib/lib2to3/tests/test_fixers.py | 4640 + .../Lib/lib2to3/tests/test_main.py | 139 + .../Lib/lib2to3/tests/test_parser.py | 620 + .../Lib/lib2to3/tests/test_pytree.py | 472 + .../Lib/lib2to3/tests/test_refactor.py | 316 + .../Lib/lib2to3/tests/test_util.py | 591 + .../Python/Python-3.6.8/Lib/linecache.py | 177 + .../Python/Python-3.6.8/Lib/locale.py | 1731 + .../Python-3.6.8/Lib/logging/__init__.py | 2021 + .../Python/Python-3.6.8/Lib/logging/config.py | 940 + .../Python-3.6.8/Lib/logging/handlers.py | 1505 + .../Python/Python-3.6.8/Lib/lzma.py | 347 + .../Python/Python-3.6.8/Lib/macpath.py | 212 + .../Python/Python-3.6.8/Lib/macurl2path.py | 77 + .../Python/Python-3.6.8/Lib/mailbox.py | 2146 + .../Python/Python-3.6.8/Lib/mailcap.py | 275 + .../Python/Python-3.6.8/Lib/mimetypes.py | 599 + .../Python/Python-3.6.8/Lib/modulefinder.py | 633 + .../Python-3.6.8/Lib/msilib/__init__.py | 483 + .../Python/Python-3.6.8/Lib/msilib/schema.py | 1007 + .../Python-3.6.8/Lib/msilib/sequence.py | 126 + .../Python/Python-3.6.8/Lib/msilib/text.py | 129 + .../Lib/multiprocessing/__init__.py | 38 + .../Lib/multiprocessing/connection.py | 953 + .../Lib/multiprocessing/context.py | 357 + .../Lib/multiprocessing/dummy/__init__.py | 119 + .../Lib/multiprocessing/dummy/connection.py | 73 + .../Lib/multiprocessing/forkserver.py | 266 + .../Python-3.6.8/Lib/multiprocessing/heap.py | 254 + .../Lib/multiprocessing/managers.py | 1163 + .../Python-3.6.8/Lib/multiprocessing/pool.py | 803 + .../Lib/multiprocessing/popen_fork.py | 79 + .../Lib/multiprocessing/popen_forkserver.py | 68 + .../Lib/multiprocessing/popen_spawn_posix.py | 68 + .../Lib/multiprocessing/popen_spawn_win32.py | 98 + .../Lib/multiprocessing/process.py | 335 + .../Lib/multiprocessing/queues.py | 347 + .../Lib/multiprocessing/reduction.py | 274 + .../Lib/multiprocessing/resource_sharer.py | 158 + .../Lib/multiprocessing/semaphore_tracker.py | 157 + .../Lib/multiprocessing/sharedctypes.py | 239 + .../Python-3.6.8/Lib/multiprocessing/spawn.py | 286 + .../Lib/multiprocessing/synchronize.py | 405 + .../Python-3.6.8/Lib/multiprocessing/util.py | 420 + .../Python/Python-3.6.8/Lib/netrc.py | 142 + .../Python/Python-3.6.8/Lib/nntplib.py | 1147 + .../Python/Python-3.6.8/Lib/ntpath.py | 691 + .../Python/Python-3.6.8/Lib/nturl2path.py | 68 + .../Python/Python-3.6.8/Lib/numbers.py | 389 + .../Python/Python-3.6.8/Lib/opcode.py | 215 + .../Python/Python-3.6.8/Lib/operator.py | 464 + .../Python/Python-3.6.8/Lib/optparse.py | 1681 + .../Python/Python-3.6.8/Lib/os.py | 1069 + .../Python/Python-3.6.8/Lib/pathlib.py | 1464 + .../Python/Python-3.6.8/Lib/pdb.py | 1694 + .../Python/Python-3.6.8/Lib/pickle.py | 1605 + .../Python/Python-3.6.8/Lib/pickletools.py | 2836 + .../Python/Python-3.6.8/Lib/pipes.py | 247 + .../Python/Python-3.6.8/Lib/pkgutil.py | 634 + .../Python/Python-3.6.8/Lib/platform.py | 1433 + .../Python/Python-3.6.8/Lib/plistlib.py | 1043 + .../Python/Python-3.6.8/Lib/poplib.py | 478 + .../Python/Python-3.6.8/Lib/posixpath.py | 529 + .../Python/Python-3.6.8/Lib/pprint.py | 597 + .../Python/Python-3.6.8/Lib/profile.py | 589 + .../Python/Python-3.6.8/Lib/pstats.py | 697 + .../Python/Python-3.6.8/Lib/pty.py | 170 + .../Python/Python-3.6.8/Lib/py_compile.py | 186 + .../Python/Python-3.6.8/Lib/pyclbr.py | 352 + .../Python/Python-3.6.8/Lib/pydoc.py | 2673 + .../Python-3.6.8/Lib/pydoc_data/__init__.py | 0 .../Python-3.6.8/Lib/pydoc_data/_pydoc.css | 6 + .../Python-3.6.8/Lib/pydoc_data/topics.py | 13062 +++ .../Python/Python-3.6.8/Lib/queue.py | 246 + .../Python/Python-3.6.8/Lib/quopri.py | 242 + .../Python/Python-3.6.8/Lib/random.py | 772 + .../Python/Python-3.6.8/Lib/re.py | 381 + .../Python/Python-3.6.8/Lib/reprlib.py | 164 + .../Python/Python-3.6.8/Lib/rlcompleter.py | 205 + .../Python/Python-3.6.8/Lib/runpy.py | 294 + .../Python/Python-3.6.8/Lib/sched.py | 170 + .../Python/Python-3.6.8/Lib/secrets.py | 73 + .../Python/Python-3.6.8/Lib/selectors.py | 611 + .../Python/Python-3.6.8/Lib/shelve.py | 243 + .../Python/Python-3.6.8/Lib/shlex.py | 335 + .../Python/Python-3.6.8/Lib/shutil.py | 1159 + .../Python/Python-3.6.8/Lib/signal.py | 79 + .../Python-3.6.8/Lib/site-packages/README.txt | 2 + .../Python/Python-3.6.8/Lib/site.py | 607 + .../Python/Python-3.6.8/Lib/smtpd.py | 965 + .../Python/Python-3.6.8/Lib/smtplib.py | 1116 + .../Python/Python-3.6.8/Lib/sndhdr.py | 257 + .../Python/Python-3.6.8/Lib/socket.py | 750 + .../Python/Python-3.6.8/Lib/socketserver.py | 821 + .../Python-3.6.8/Lib/sqlite3/__init__.py | 23 + .../Python/Python-3.6.8/Lib/sqlite3/dbapi2.py | 89 + .../Python/Python-3.6.8/Lib/sqlite3/dump.py | 70 + .../Python-3.6.8/Lib/sqlite3/test/__init__.py | 0 .../Python-3.6.8/Lib/sqlite3/test/dbapi.py | 938 + .../Python-3.6.8/Lib/sqlite3/test/dump.py | 81 + .../Python-3.6.8/Lib/sqlite3/test/factory.py | 293 + .../Python-3.6.8/Lib/sqlite3/test/hooks.py | 264 + .../Lib/sqlite3/test/regression.py | 455 + .../Lib/sqlite3/test/transactions.py | 214 + .../Python-3.6.8/Lib/sqlite3/test/types.py | 421 + .../Lib/sqlite3/test/userfunctions.py | 473 + .../Python/Python-3.6.8/Lib/sre_compile.py | 580 + .../Python/Python-3.6.8/Lib/sre_constants.py | 233 + .../Python/Python-3.6.8/Lib/sre_parse.py | 973 + .../Python/Python-3.6.8/Lib/ssl.py | 1237 + .../Python/Python-3.6.8/Lib/stat.py | 178 + .../Python/Python-3.6.8/Lib/statistics.py | 670 + .../Python/Python-3.6.8/Lib/string.py | 309 + .../Python/Python-3.6.8/Lib/stringprep.py | 272 + .../Python/Python-3.6.8/Lib/struct.py | 15 + .../Python/Python-3.6.8/Lib/subprocess.py | 1610 + .../Python/Python-3.6.8/Lib/sunau.py | 525 + .../Python/Python-3.6.8/Lib/symbol.py | 115 + .../Python/Python-3.6.8/Lib/symtable.py | 238 + .../Python/Python-3.6.8/Lib/sysconfig.py | 721 + .../Python/Python-3.6.8/Lib/tabnanny.py | 332 + .../Python/Python-3.6.8/Lib/tarfile.py | 2550 + .../Python/Python-3.6.8/Lib/telnetlib.py | 675 + .../Python/Python-3.6.8/Lib/tempfile.py | 813 + .../Lib/test/Sine-1000Hz-300ms.aif | Bin 0 -> 61696 bytes .../Python/Python-3.6.8/Lib/test/__init__.py | 1 + .../Python/Python-3.6.8/Lib/test/__main__.py | 2 + .../Lib/test/_test_multiprocessing.py | 4522 + .../Python/Python-3.6.8/Lib/test/allsans.pem | 81 + .../Python-3.6.8/Lib/test/ann_module.py | 53 + .../Python-3.6.8/Lib/test/ann_module2.py | 36 + .../Python-3.6.8/Lib/test/ann_module3.py | 18 + .../Lib/test/audiodata/pluck-alaw.aifc | Bin 0 -> 6910 bytes .../Lib/test/audiodata/pluck-pcm16.aiff | Bin 0 -> 13506 bytes .../Lib/test/audiodata/pluck-pcm16.au | Bin 0 -> 13252 bytes .../Lib/test/audiodata/pluck-pcm16.wav | Bin 0 -> 13370 bytes .../Lib/test/audiodata/pluck-pcm24.aiff | Bin 0 -> 20120 bytes .../Lib/test/audiodata/pluck-pcm24.au | Bin 0 -> 19866 bytes .../Lib/test/audiodata/pluck-pcm24.wav | Bin 0 -> 19984 bytes .../Lib/test/audiodata/pluck-pcm32.aiff | Bin 0 -> 26734 bytes .../Lib/test/audiodata/pluck-pcm32.au | Bin 0 -> 26480 bytes .../Lib/test/audiodata/pluck-pcm32.wav | Bin 0 -> 26598 bytes .../Lib/test/audiodata/pluck-pcm8.aiff | Bin 0 -> 6892 bytes .../Lib/test/audiodata/pluck-pcm8.au | Bin 0 -> 6638 bytes .../Lib/test/audiodata/pluck-pcm8.wav | Bin 0 -> 6756 bytes .../Lib/test/audiodata/pluck-ulaw.aifc | Bin 0 -> 6910 bytes .../Lib/test/audiodata/pluck-ulaw.au | Bin 0 -> 6638 bytes .../Python/Python-3.6.8/Lib/test/audiotest.au | Bin 0 -> 28144 bytes .../Python-3.6.8/Lib/test/audiotests.py | 329 + .../Python/Python-3.6.8/Lib/test/autotest.py | 5 + .../Python-3.6.8/Lib/test/bad_coding.py | 1 + .../Python-3.6.8/Lib/test/bad_coding2.py | 2 + .../Python/Python-3.6.8/Lib/test/badcert.pem | 36 + .../Python/Python-3.6.8/Lib/test/badkey.pem | 40 + .../Python-3.6.8/Lib/test/badsyntax_3131.py | 2 + .../Lib/test/badsyntax_future10.py | 3 + .../Lib/test/badsyntax_future3.py | 10 + .../Lib/test/badsyntax_future4.py | 10 + .../Lib/test/badsyntax_future5.py | 12 + .../Lib/test/badsyntax_future6.py | 10 + .../Lib/test/badsyntax_future7.py | 11 + .../Lib/test/badsyntax_future8.py | 10 + .../Lib/test/badsyntax_future9.py | 10 + .../Lib/test/badsyntax_pep3120.py | 1 + .../Python/Python-3.6.8/Lib/test/bisect.py | 167 + .../Python-3.6.8/Lib/test/bytecode_helper.py | 41 + .../Python-3.6.8/Lib/test/capath/4e1295a3.0 | 14 + .../Python-3.6.8/Lib/test/capath/5ed36f99.0 | 41 + .../Python-3.6.8/Lib/test/capath/6e88d7b8.0 | 14 + .../Python-3.6.8/Lib/test/capath/99d0fa06.0 | 41 + .../Python-3.6.8/Lib/test/capath/b1930218.0 | 26 + .../Python-3.6.8/Lib/test/capath/ceff1710.0 | 26 + .../Python/Python-3.6.8/Lib/test/cfgparser.1 | 3 + .../Python/Python-3.6.8/Lib/test/cfgparser.2 | 537 + .../Python/Python-3.6.8/Lib/test/cfgparser.3 | 69 + .../Lib/test/cjkencodings/big5-utf8.txt | 9 + .../Lib/test/cjkencodings/big5.txt | 9 + .../Lib/test/cjkencodings/big5hkscs-utf8.txt | 2 + .../Lib/test/cjkencodings/big5hkscs.txt | 2 + .../Lib/test/cjkencodings/cp949-utf8.txt | 9 + .../Lib/test/cjkencodings/cp949.txt | 9 + .../test/cjkencodings/euc_jisx0213-utf8.txt | 8 + .../Lib/test/cjkencodings/euc_jisx0213.txt | 8 + .../Lib/test/cjkencodings/euc_jp-utf8.txt | 7 + .../Lib/test/cjkencodings/euc_jp.txt | 7 + .../Lib/test/cjkencodings/euc_kr-utf8.txt | 7 + .../Lib/test/cjkencodings/euc_kr.txt | 7 + .../Lib/test/cjkencodings/gb18030-utf8.txt | 15 + .../Lib/test/cjkencodings/gb18030.txt | 15 + .../Lib/test/cjkencodings/gb2312-utf8.txt | 6 + .../Lib/test/cjkencodings/gb2312.txt | 6 + .../Lib/test/cjkencodings/gbk-utf8.txt | 14 + .../Lib/test/cjkencodings/gbk.txt | 14 + .../Lib/test/cjkencodings/hz-utf8.txt | 2 + .../Python-3.6.8/Lib/test/cjkencodings/hz.txt | 2 + .../Lib/test/cjkencodings/iso2022_jp-utf8.txt | 7 + .../Lib/test/cjkencodings/iso2022_jp.txt | 7 + .../Lib/test/cjkencodings/iso2022_kr-utf8.txt | 7 + .../Lib/test/cjkencodings/iso2022_kr.txt | 7 + .../Lib/test/cjkencodings/johab-utf8.txt | 9 + .../Lib/test/cjkencodings/johab.txt | 9 + .../Lib/test/cjkencodings/shift_jis-utf8.txt | 7 + .../Lib/test/cjkencodings/shift_jis.txt | 7 + .../test/cjkencodings/shift_jisx0213-utf8.txt | 8 + .../Lib/test/cjkencodings/shift_jisx0213.txt | 8 + .../Python-3.6.8/Lib/test/cmath_testcases.txt | 2511 + .../Python-3.6.8/Lib/test/coding20731.py | 4 + .../Python-3.6.8/Lib/test/crashers/README | 20 + .../Lib/test/crashers/bogus_code_obj.py | 19 + .../Lib/test/crashers/gc_inspection.py | 32 + .../Lib/test/crashers/infinite_loop_re.py | 16 + .../test/crashers/mutation_inside_cyclegc.py | 31 + .../Lib/test/crashers/recursive_call.py | 15 + .../test/crashers/trace_at_recursion_limit.py | 27 + .../Lib/test/crashers/underlying_dict.py | 20 + .../Python-3.6.8/Lib/test/curses_tests.py | 46 + .../Python-3.6.8/Lib/test/datetimetester.py | 5087 ++ .../Lib/test/decimaltestdata/abs.decTest | 161 + .../Lib/test/decimaltestdata/add.decTest | 2716 + .../Lib/test/decimaltestdata/and.decTest | 338 + .../Lib/test/decimaltestdata/base.decTest | 1411 + .../Lib/test/decimaltestdata/clamp.decTest | 211 + .../Lib/test/decimaltestdata/class.decTest | 131 + .../Lib/test/decimaltestdata/compare.decTest | 758 + .../test/decimaltestdata/comparetotal.decTest | 798 + .../decimaltestdata/comparetotmag.decTest | 790 + .../Lib/test/decimaltestdata/copy.decTest | 86 + .../Lib/test/decimaltestdata/copyabs.decTest | 86 + .../test/decimaltestdata/copynegate.decTest | 86 + .../Lib/test/decimaltestdata/copysign.decTest | 177 + .../Lib/test/decimaltestdata/ddAbs.decTest | 126 + .../Lib/test/decimaltestdata/ddAdd.decTest | 1328 + .../Lib/test/decimaltestdata/ddAnd.decTest | 347 + .../Lib/test/decimaltestdata/ddBase.decTest | 1104 + .../test/decimaltestdata/ddCanonical.decTest | 357 + .../Lib/test/decimaltestdata/ddClass.decTest | 76 + .../test/decimaltestdata/ddCompare.decTest | 744 + .../test/decimaltestdata/ddCompareSig.decTest | 647 + .../decimaltestdata/ddCompareTotal.decTest | 706 + .../decimaltestdata/ddCompareTotalMag.decTest | 706 + .../Lib/test/decimaltestdata/ddCopy.decTest | 88 + .../test/decimaltestdata/ddCopyAbs.decTest | 88 + .../test/decimaltestdata/ddCopyNegate.decTest | 88 + .../test/decimaltestdata/ddCopySign.decTest | 175 + .../Lib/test/decimaltestdata/ddDivide.decTest | 863 + .../test/decimaltestdata/ddDivideInt.decTest | 449 + .../Lib/test/decimaltestdata/ddEncode.decTest | 495 + .../Lib/test/decimaltestdata/ddFMA.decTest | 1698 + .../Lib/test/decimaltestdata/ddInvert.decTest | 202 + .../Lib/test/decimaltestdata/ddLogB.decTest | 159 + .../Lib/test/decimaltestdata/ddMax.decTest | 322 + .../Lib/test/decimaltestdata/ddMaxMag.decTest | 304 + .../Lib/test/decimaltestdata/ddMin.decTest | 309 + .../Lib/test/decimaltestdata/ddMinMag.decTest | 293 + .../Lib/test/decimaltestdata/ddMinus.decTest | 88 + .../test/decimaltestdata/ddMultiply.decTest | 553 + .../test/decimaltestdata/ddNextMinus.decTest | 126 + .../test/decimaltestdata/ddNextPlus.decTest | 124 + .../test/decimaltestdata/ddNextToward.decTest | 374 + .../Lib/test/decimaltestdata/ddOr.decTest | 292 + .../Lib/test/decimaltestdata/ddPlus.decTest | 88 + .../test/decimaltestdata/ddQuantize.decTest | 833 + .../Lib/test/decimaltestdata/ddReduce.decTest | 182 + .../test/decimaltestdata/ddRemainder.decTest | 600 + .../decimaltestdata/ddRemainderNear.decTest | 629 + .../Lib/test/decimaltestdata/ddRotate.decTest | 262 + .../decimaltestdata/ddSameQuantum.decTest | 389 + .../Lib/test/decimaltestdata/ddScaleB.decTest | 243 + .../Lib/test/decimaltestdata/ddShift.decTest | 262 + .../test/decimaltestdata/ddSubtract.decTest | 629 + .../test/decimaltestdata/ddToIntegral.decTest | 257 + .../Lib/test/decimaltestdata/ddXor.decTest | 337 + .../test/decimaltestdata/decDouble.decTest | 65 + .../Lib/test/decimaltestdata/decQuad.decTest | 65 + .../test/decimaltestdata/decSingle.decTest | 25 + .../Lib/test/decimaltestdata/divide.decTest | 854 + .../test/decimaltestdata/divideint.decTest | 486 + .../Lib/test/decimaltestdata/dqAbs.decTest | 126 + .../Lib/test/decimaltestdata/dqAdd.decTest | 1215 + .../Lib/test/decimaltestdata/dqAnd.decTest | 420 + .../Lib/test/decimaltestdata/dqBase.decTest | 1081 + .../test/decimaltestdata/dqCanonical.decTest | 372 + .../Lib/test/decimaltestdata/dqClass.decTest | 77 + .../test/decimaltestdata/dqCompare.decTest | 753 + .../test/decimaltestdata/dqCompareSig.decTest | 647 + .../decimaltestdata/dqCompareTotal.decTest | 706 + .../decimaltestdata/dqCompareTotalMag.decTest | 706 + .../Lib/test/decimaltestdata/dqCopy.decTest | 88 + .../test/decimaltestdata/dqCopyAbs.decTest | 88 + .../test/decimaltestdata/dqCopyNegate.decTest | 88 + .../test/decimaltestdata/dqCopySign.decTest | 175 + .../Lib/test/decimaltestdata/dqDivide.decTest | 808 + .../test/decimaltestdata/dqDivideInt.decTest | 453 + .../Lib/test/decimaltestdata/dqEncode.decTest | 477 + .../Lib/test/decimaltestdata/dqFMA.decTest | 1786 + .../Lib/test/decimaltestdata/dqInvert.decTest | 245 + .../Lib/test/decimaltestdata/dqLogB.decTest | 160 + .../Lib/test/decimaltestdata/dqMax.decTest | 322 + .../Lib/test/decimaltestdata/dqMaxMag.decTest | 304 + .../Lib/test/decimaltestdata/dqMin.decTest | 309 + .../Lib/test/decimaltestdata/dqMinMag.decTest | 293 + .../Lib/test/decimaltestdata/dqMinus.decTest | 88 + .../test/decimaltestdata/dqMultiply.decTest | 589 + .../test/decimaltestdata/dqNextMinus.decTest | 126 + .../test/decimaltestdata/dqNextPlus.decTest | 124 + .../test/decimaltestdata/dqNextToward.decTest | 375 + .../Lib/test/decimaltestdata/dqOr.decTest | 401 + .../Lib/test/decimaltestdata/dqPlus.decTest | 88 + .../test/decimaltestdata/dqQuantize.decTest | 836 + .../Lib/test/decimaltestdata/dqReduce.decTest | 183 + .../test/decimaltestdata/dqRemainder.decTest | 597 + .../decimaltestdata/dqRemainderNear.decTest | 631 + .../Lib/test/decimaltestdata/dqRotate.decTest | 298 + .../decimaltestdata/dqSameQuantum.decTest | 389 + .../Lib/test/decimaltestdata/dqScaleB.decTest | 260 + .../Lib/test/decimaltestdata/dqShift.decTest | 298 + .../test/decimaltestdata/dqSubtract.decTest | 635 + .../test/decimaltestdata/dqToIntegral.decTest | 257 + .../Lib/test/decimaltestdata/dqXor.decTest | 410 + .../Lib/test/decimaltestdata/dsBase.decTest | 1062 + .../Lib/test/decimaltestdata/dsEncode.decTest | 372 + .../Lib/test/decimaltestdata/exp.decTest | 674 + .../Lib/test/decimaltestdata/extra.decTest | 2830 + .../Lib/test/decimaltestdata/fma.decTest | 3426 + .../Lib/test/decimaltestdata/inexact.decTest | 215 + .../Lib/test/decimaltestdata/invert.decTest | 176 + .../Lib/test/decimaltestdata/ln.decTest | 611 + .../Lib/test/decimaltestdata/log10.decTest | 551 + .../Lib/test/decimaltestdata/logb.decTest | 188 + .../Lib/test/decimaltestdata/max.decTest | 424 + .../Lib/test/decimaltestdata/maxmag.decTest | 404 + .../Lib/test/decimaltestdata/min.decTest | 407 + .../Lib/test/decimaltestdata/minmag.decTest | 390 + .../Lib/test/decimaltestdata/minus.decTest | 182 + .../Lib/test/decimaltestdata/multiply.decTest | 731 + .../test/decimaltestdata/nextminus.decTest | 148 + .../Lib/test/decimaltestdata/nextplus.decTest | 150 + .../test/decimaltestdata/nexttoward.decTest | 426 + .../Lib/test/decimaltestdata/or.decTest | 334 + .../Lib/test/decimaltestdata/plus.decTest | 195 + .../Lib/test/decimaltestdata/power.decTest | 1624 + .../test/decimaltestdata/powersqrt.decTest | 2970 + .../Lib/test/decimaltestdata/quantize.decTest | 948 + .../decimaltestdata/randomBound32.decTest | 2443 + .../Lib/test/decimaltestdata/randoms.decTest | 4030 + .../Lib/test/decimaltestdata/reduce.decTest | 234 + .../test/decimaltestdata/remainder.decTest | 640 + .../decimaltestdata/remainderNear.decTest | 572 + .../Lib/test/decimaltestdata/rescale.decTest | 764 + .../Lib/test/decimaltestdata/rotate.decTest | 247 + .../Lib/test/decimaltestdata/rounding.decTest | 1303 + .../test/decimaltestdata/samequantum.decTest | 389 + .../Lib/test/decimaltestdata/scaleb.decTest | 209 + .../Lib/test/decimaltestdata/shift.decTest | 250 + .../test/decimaltestdata/squareroot.decTest | 3834 + .../Lib/test/decimaltestdata/subtract.decTest | 873 + .../Lib/test/decimaltestdata/testall.decTest | 87 + .../test/decimaltestdata/tointegral.decTest | 241 + .../test/decimaltestdata/tointegralx.decTest | 255 + .../Lib/test/decimaltestdata/xor.decTest | 335 + .../Python-3.6.8/Lib/test/dis_module.py | 5 + .../Python-3.6.8/Lib/test/doctest_aliases.py | 13 + .../Python-3.6.8/Lib/test/double_const.py | 30 + .../Lib/test/dtracedata/assert_usable.d | 5 + .../Lib/test/dtracedata/assert_usable.stp | 5 + .../Lib/test/dtracedata/call_stack.d | 31 + .../Lib/test/dtracedata/call_stack.d.expected | 18 + .../Lib/test/dtracedata/call_stack.py | 30 + .../Lib/test/dtracedata/call_stack.stp | 41 + .../test/dtracedata/call_stack.stp.expected | 14 + .../Python-3.6.8/Lib/test/dtracedata/gc.d | 18 + .../Lib/test/dtracedata/gc.d.expected | 8 + .../Python-3.6.8/Lib/test/dtracedata/gc.py | 13 + .../Python-3.6.8/Lib/test/dtracedata/gc.stp | 26 + .../Lib/test/dtracedata/gc.stp.expected | 8 + .../Lib/test/dtracedata/instance.py | 24 + .../Python-3.6.8/Lib/test/dtracedata/line.d | 7 + .../Lib/test/dtracedata/line.d.expected | 20 + .../Python-3.6.8/Lib/test/dtracedata/line.py | 17 + .../Lib/test/eintrdata/eintr_tester.py | 529 + .../Python/Python-3.6.8/Lib/test/empty.vbs | 1 + .../Lib/test/encoded_modules/__init__.py | 23 + .../test/encoded_modules/module_iso_8859_1.py | 5 + .../Lib/test/encoded_modules/module_koi8_r.py | 3 + .../Lib/test/exception_hierarchy.txt | 64 + .../Python/Python-3.6.8/Lib/test/ffdh3072.pem | 41 + .../Python/Python-3.6.8/Lib/test/final_a.py | 19 + .../Python/Python-3.6.8/Lib/test/final_b.py | 19 + .../Python-3.6.8/Lib/test/floating_points.txt | 1028 + .../Python/Python-3.6.8/Lib/test/fork_wait.py | 91 + .../Lib/test/formatfloat_testcases.txt | 355 + .../Python-3.6.8/Lib/test/future_test1.py | 11 + .../Python-3.6.8/Lib/test/future_test2.py | 10 + .../Python-3.6.8/Lib/test/gdb_sample.py | 12 + .../Python/Python-3.6.8/Lib/test/ieee754.txt | 185 + .../Lib/test/imghdrdata/python.bmp | Bin 0 -> 1162 bytes .../Lib/test/imghdrdata/python.exr | Bin 0 -> 2635 bytes .../Lib/test/imghdrdata/python.gif | Bin 0 -> 610 bytes .../Lib/test/imghdrdata/python.jpg | Bin 0 -> 543 bytes .../Lib/test/imghdrdata/python.pbm | 3 + .../Lib/test/imghdrdata/python.pgm | Bin 0 -> 269 bytes .../Lib/test/imghdrdata/python.png | Bin 0 -> 1020 bytes .../Lib/test/imghdrdata/python.ppm | Bin 0 -> 781 bytes .../Lib/test/imghdrdata/python.ras | Bin 0 -> 1056 bytes .../Lib/test/imghdrdata/python.sgi | Bin 0 -> 1967 bytes .../Lib/test/imghdrdata/python.tiff | Bin 0 -> 1326 bytes .../Lib/test/imghdrdata/python.webp | Bin 0 -> 432 bytes .../Lib/test/imghdrdata/python.xbm | 6 + .../Python/Python-3.6.8/Lib/test/imp_dummy.py | 3 + .../Python-3.6.8/Lib/test/inspect_fodder.py | 82 + .../Python-3.6.8/Lib/test/inspect_fodder2.py | 139 + .../Python-3.6.8/Lib/test/keycert.passwd.pem | 68 + .../Python/Python-3.6.8/Lib/test/keycert.pem | 66 + .../Python/Python-3.6.8/Lib/test/keycert2.pem | 66 + .../Python/Python-3.6.8/Lib/test/keycert3.pem | 164 + .../Python/Python-3.6.8/Lib/test/keycert4.pem | 164 + .../Python-3.6.8/Lib/test/leakers/README.txt | 32 + .../Python-3.6.8/Lib/test/leakers/__init__.py | 0 .../Lib/test/leakers/test_ctypes.py | 15 + .../Lib/test/leakers/test_selftype.py | 13 + .../Lib/test/libregrtest/__init__.py | 5 + .../Lib/test/libregrtest/cmdline.py | 391 + .../Python-3.6.8/Lib/test/libregrtest/main.py | 638 + .../Lib/test/libregrtest/refleak.py | 264 + .../Lib/test/libregrtest/runtest.py | 263 + .../Lib/test/libregrtest/runtest_mp.py | 247 + .../Lib/test/libregrtest/save_env.py | 290 + .../Lib/test/libregrtest/setup.py | 140 + .../Lib/test/libregrtest/utils.py | 56 + .../Python-3.6.8/Lib/test/list_tests.py | 619 + .../Python-3.6.8/Lib/test/lock_tests.py | 949 + .../Python/Python-3.6.8/Lib/test/mailcap.txt | 39 + .../Python-3.6.8/Lib/test/make_ssl_certs.py | 282 + .../Python-3.6.8/Lib/test/mapping_tests.py | 666 + .../Python-3.6.8/Lib/test/math_testcases.txt | 633 + .../Python-3.6.8/Lib/test/memory_watchdog.py | 28 + .../Python/Python-3.6.8/Lib/test/mime.types | 1445 + .../Python-3.6.8/Lib/test/mock_socket.py | 159 + .../Lib/test/mod_generics_cache.py | 53 + .../Python-3.6.8/Lib/test/mp_fork_bomb.py | 18 + .../Python-3.6.8/Lib/test/mp_preload.py | 18 + .../Lib/test/multibytecodec_support.py | 384 + .../Python/Python-3.6.8/Lib/test/nokia.pem | 31 + .../Python-3.6.8/Lib/test/nullbytecert.pem | 90 + .../Python/Python-3.6.8/Lib/test/nullcert.pem | 0 .../Python-3.6.8/Lib/test/outstanding_bugs.py | 18 + .../Python-3.6.8/Lib/test/pickletester.py | 2923 + .../Python/Python-3.6.8/Lib/test/profilee.py | 115 + .../Python/Python-3.6.8/Lib/test/pstats.pck | Bin 0 -> 66607 bytes .../Python/Python-3.6.8/Lib/test/pycacert.pem | 99 + .../Python/Python-3.6.8/Lib/test/pycakey.pem | 40 + .../Python-3.6.8/Lib/test/pyclbr_input.py | 33 + .../Python/Python-3.6.8/Lib/test/pydoc_mod.py | 37 + .../Python-3.6.8/Lib/test/pydocfodder.py | 216 + .../Python/Python-3.6.8/Lib/test/pystone.py | 277 + .../Python-3.6.8/Lib/test/pythoninfo.py | 642 + .../Python-3.6.8/Lib/test/randv2_32.pck | Bin 0 -> 7517 bytes .../Python-3.6.8/Lib/test/randv2_64.pck | Bin 0 -> 7365 bytes .../Python/Python-3.6.8/Lib/test/randv3.pck | Bin 0 -> 8004 bytes .../Python/Python-3.6.8/Lib/test/re_tests.py | 670 + .../Python/Python-3.6.8/Lib/test/regrtest.py | 50 + .../Python/Python-3.6.8/Lib/test/relimport.py | 1 + .../Python/Python-3.6.8/Lib/test/reperf.py | 23 + .../Python-3.6.8/Lib/test/revocation.crl | 14 + .../Python-3.6.8/Lib/test/sample_doctest.py | 76 + .../Lib/test/sample_doctest_no_docstrings.py | 12 + .../Lib/test/sample_doctest_no_doctests.py | 15 + .../Lib/test/selfsigned_pythontestdotnet.pem | 16 + .../Python/Python-3.6.8/Lib/test/seq_tests.py | 414 + .../Python-3.6.8/Lib/test/sgml_input.html | 212 + .../Lib/test/signalinterproctester.py | 83 + .../Python-3.6.8/Lib/test/sndhdrdata/README | 5 + .../Lib/test/sndhdrdata/sndhdr.8svx | Bin 0 -> 110 bytes .../Lib/test/sndhdrdata/sndhdr.aifc | Bin 0 -> 106 bytes .../Lib/test/sndhdrdata/sndhdr.aiff | Bin 0 -> 108 bytes .../Lib/test/sndhdrdata/sndhdr.au | Bin 0 -> 64 bytes .../Lib/test/sndhdrdata/sndhdr.hcom | Bin 0 -> 256 bytes .../Lib/test/sndhdrdata/sndhdr.sndt | Bin 0 -> 129 bytes .../Lib/test/sndhdrdata/sndhdr.voc | Bin 0 -> 63 bytes .../Lib/test/sndhdrdata/sndhdr.wav | Bin 0 -> 64 bytes .../Python/Python-3.6.8/Lib/test/sortperf.py | 169 + .../Python/Python-3.6.8/Lib/test/ssl_cert.pem | 26 + .../Python-3.6.8/Lib/test/ssl_key.passwd.pem | 42 + .../Python/Python-3.6.8/Lib/test/ssl_key.pem | 40 + .../Python-3.6.8/Lib/test/ssl_servers.py | 209 + .../Python/Python-3.6.8/Lib/test/ssltests.py | 37 + .../Python-3.6.8/Lib/test/string_tests.py | 1383 + .../Lib/test/subprocessdata/fd_status.py | 34 + .../Lib/test/subprocessdata/input_reader.py | 7 + .../Lib/test/subprocessdata/qcat.py | 7 + .../Lib/test/subprocessdata/qgrep.py | 10 + .../test/subprocessdata/sigchild_ignore.py | 15 + .../Python-3.6.8/Lib/test/support/__init__.py | 2870 + .../Lib/test/support/script_helper.py | 266 + .../Lib/test/support/testresult.py | 204 + .../Python-3.6.8/Lib/test/test___all__.py | 109 + .../Python-3.6.8/Lib/test/test___future__.py | 61 + .../Python-3.6.8/Lib/test/test__locale.py | 193 + .../Python-3.6.8/Lib/test/test__opcode.py | 20 + .../Lib/test/test__osx_support.py | 276 + .../Python/Python-3.6.8/Lib/test/test_abc.py | 420 + .../Lib/test/test_abstract_numbers.py | 44 + .../Python/Python-3.6.8/Lib/test/test_aifc.py | 407 + .../Python-3.6.8/Lib/test/test_argparse.py | 5040 ++ .../Python-3.6.8/Lib/test/test_array.py | 1388 + .../Python-3.6.8/Lib/test/test_asdl_parser.py | 122 + .../Python/Python-3.6.8/Lib/test/test_ast.py | 1170 + .../Python-3.6.8/Lib/test/test_asyncgen.py | 1100 + .../Python-3.6.8/Lib/test/test_asynchat.py | 308 + .../Lib/test/test_asyncio/__init__.py | 10 + .../Lib/test/test_asyncio/__main__.py | 4 + .../Lib/test/test_asyncio/echo.py | 8 + .../Lib/test/test_asyncio/echo2.py | 6 + .../Lib/test/test_asyncio/echo3.py | 11 + .../Lib/test/test_asyncio/test_base_events.py | 1867 + .../Lib/test/test_asyncio/test_events.py | 2830 + .../Lib/test/test_asyncio/test_futures.py | 692 + .../Lib/test/test_asyncio/test_locks.py | 1016 + .../Lib/test/test_asyncio/test_pep492.py | 232 + .../test/test_asyncio/test_proactor_events.py | 605 + .../Lib/test/test_asyncio/test_queues.py | 643 + .../test/test_asyncio/test_selector_events.py | 1861 + .../Lib/test/test_asyncio/test_sslproto.py | 151 + .../Lib/test/test_asyncio/test_streams.py | 868 + .../Lib/test/test_asyncio/test_subprocess.py | 533 + .../Lib/test/test_asyncio/test_tasks.py | 2679 + .../Lib/test/test_asyncio/test_transports.py | 91 + .../Lib/test/test_asyncio/test_unix_events.py | 1638 + .../test/test_asyncio/test_windows_events.py | 164 + .../test/test_asyncio/test_windows_utils.py | 182 + .../Python-3.6.8/Lib/test/test_asyncore.py | 847 + .../Python-3.6.8/Lib/test/test_atexit.py | 208 + .../Python-3.6.8/Lib/test/test_audioop.py | 565 + .../Python-3.6.8/Lib/test/test_augassign.py | 326 + .../Python-3.6.8/Lib/test/test_base64.py | 690 + .../Lib/test/test_baseexception.py | 183 + .../Python/Python-3.6.8/Lib/test/test_bdb.py | 1154 + .../Lib/test/test_bigaddrspace.py | 101 + .../Python-3.6.8/Lib/test/test_bigmem.py | 1256 + .../Python-3.6.8/Lib/test/test_binascii.py | 373 + .../Python-3.6.8/Lib/test/test_binhex.py | 55 + .../Python-3.6.8/Lib/test/test_binop.py | 441 + .../Python-3.6.8/Lib/test/test_bisect.py | 328 + .../Python/Python-3.6.8/Lib/test/test_bool.py | 368 + .../Python-3.6.8/Lib/test/test_buffer.py | 4396 + .../Python-3.6.8/Lib/test/test_bufio.py | 73 + .../Python-3.6.8/Lib/test/test_builtin.py | 1860 + .../Python-3.6.8/Lib/test/test_bytes.py | 1830 + .../Python/Python-3.6.8/Lib/test/test_bz2.py | 1013 + .../Python-3.6.8/Lib/test/test_calendar.py | 848 + .../Python/Python-3.6.8/Lib/test/test_call.py | 320 + .../Python/Python-3.6.8/Lib/test/test_capi.py | 596 + .../Python/Python-3.6.8/Lib/test/test_cgi.py | 593 + .../Python-3.6.8/Lib/test/test_cgitb.py | 68 + .../Lib/test/test_charmapcodec.py | 53 + .../Python-3.6.8/Lib/test/test_class.py | 600 + .../Python-3.6.8/Lib/test/test_cmath.py | 643 + .../Python/Python-3.6.8/Lib/test/test_cmd.py | 243 + .../Python-3.6.8/Lib/test/test_cmd_line.py | 510 + .../Lib/test/test_cmd_line_script.py | 648 + .../Python/Python-3.6.8/Lib/test/test_code.py | 367 + .../Python-3.6.8/Lib/test/test_code_module.py | 154 + .../Lib/test/test_codeccallbacks.py | 1125 + .../Lib/test/test_codecencodings_cn.py | 96 + .../Lib/test/test_codecencodings_hk.py | 22 + .../Lib/test/test_codecencodings_iso2022.py | 41 + .../Lib/test/test_codecencodings_jp.py | 126 + .../Lib/test/test_codecencodings_kr.py | 69 + .../Lib/test/test_codecencodings_tw.py | 22 + .../Lib/test/test_codecmaps_cn.py | 26 + .../Lib/test/test_codecmaps_hk.py | 15 + .../Lib/test/test_codecmaps_jp.py | 60 + .../Lib/test/test_codecmaps_kr.py | 37 + .../Lib/test/test_codecmaps_tw.py | 27 + .../Python-3.6.8/Lib/test/test_codecs.py | 3290 + .../Python-3.6.8/Lib/test/test_codeop.py | 299 + .../Python-3.6.8/Lib/test/test_collections.py | 1926 + .../Python-3.6.8/Lib/test/test_colorsys.py | 100 + .../Python-3.6.8/Lib/test/test_compare.py | 124 + .../Python-3.6.8/Lib/test/test_compile.py | 734 + .../Python-3.6.8/Lib/test/test_compileall.py | 547 + .../Python-3.6.8/Lib/test/test_complex.py | 691 + .../Lib/test/test_concurrent_futures.py | 836 + .../Lib/test/test_configparser.py | 2096 + .../Python-3.6.8/Lib/test/test_contains.py | 114 + .../Python-3.6.8/Lib/test/test_contextlib.py | 990 + .../Python/Python-3.6.8/Lib/test/test_copy.py | 888 + .../Python-3.6.8/Lib/test/test_copyreg.py | 126 + .../Python-3.6.8/Lib/test/test_coroutines.py | 2226 + .../Python-3.6.8/Lib/test/test_cprofile.py | 107 + .../Python-3.6.8/Lib/test/test_crashers.py | 37 + .../Python-3.6.8/Lib/test/test_crypt.py | 45 + .../Python/Python-3.6.8/Lib/test/test_csv.py | 1204 + .../Python-3.6.8/Lib/test/test_ctypes.py | 9 + .../Python-3.6.8/Lib/test/test_curses.py | 549 + .../Python-3.6.8/Lib/test/test_datetime.py | 57 + .../Python/Python-3.6.8/Lib/test/test_dbm.py | 212 + .../Python-3.6.8/Lib/test/test_dbm_dumb.py | 310 + .../Python-3.6.8/Lib/test/test_dbm_gnu.py | 139 + .../Python-3.6.8/Lib/test/test_dbm_ndbm.py | 111 + .../Python-3.6.8/Lib/test/test_decimal.py | 5707 ++ .../Python-3.6.8/Lib/test/test_decorators.py | 304 + .../Python-3.6.8/Lib/test/test_defaultdict.py | 187 + .../Python-3.6.8/Lib/test/test_deque.py | 1074 + .../Python-3.6.8/Lib/test/test_descr.py | 5470 ++ .../Python-3.6.8/Lib/test/test_descrtut.py | 486 + .../Python-3.6.8/Lib/test/test_devpoll.py | 145 + .../Python/Python-3.6.8/Lib/test/test_dict.py | 1254 + .../Lib/test/test_dict_version.py | 186 + .../Python-3.6.8/Lib/test/test_dictcomps.py | 86 + .../Python-3.6.8/Lib/test/test_dictviews.py | 287 + .../Python-3.6.8/Lib/test/test_difflib.py | 506 + .../Lib/test/test_difflib_expect.html | 526 + .../Python/Python-3.6.8/Lib/test/test_dis.py | 960 + .../Python-3.6.8/Lib/test/test_distutils.py | 18 + .../Python-3.6.8/Lib/test/test_doctest.py | 2962 + .../Python-3.6.8/Lib/test/test_doctest.txt | 17 + .../Python-3.6.8/Lib/test/test_doctest2.py | 123 + .../Python-3.6.8/Lib/test/test_doctest2.txt | 14 + .../Python-3.6.8/Lib/test/test_doctest3.txt | 5 + .../Python-3.6.8/Lib/test/test_doctest4.txt | 11 + .../Python-3.6.8/Lib/test/test_docxmlrpc.py | 198 + .../Python-3.6.8/Lib/test/test_dtrace.py | 178 + .../Lib/test/test_dummy_thread.py | 256 + .../Lib/test/test_dummy_threading.py | 60 + .../Python-3.6.8/Lib/test/test_dynamic.py | 138 + .../Lib/test/test_dynamicclassattribute.py | 300 + .../Python-3.6.8/Lib/test/test_eintr.py | 37 + .../Lib/test/test_email/__init__.py | 166 + .../Lib/test/test_email/__main__.py | 4 + .../Lib/test/test_email/data/PyBanner048.gif | Bin 0 -> 954 bytes .../Lib/test/test_email/data/audiotest.au | Bin 0 -> 28144 bytes .../Lib/test/test_email/data/msg_01.txt | 19 + .../Lib/test/test_email/data/msg_02.txt | 136 + .../Lib/test/test_email/data/msg_03.txt | 16 + .../Lib/test/test_email/data/msg_04.txt | 37 + .../Lib/test/test_email/data/msg_05.txt | 28 + .../Lib/test/test_email/data/msg_06.txt | 33 + .../Lib/test/test_email/data/msg_07.txt | 83 + .../Lib/test/test_email/data/msg_08.txt | 24 + .../Lib/test/test_email/data/msg_09.txt | 24 + .../Lib/test/test_email/data/msg_10.txt | 39 + .../Lib/test/test_email/data/msg_11.txt | 7 + .../Lib/test/test_email/data/msg_12.txt | 36 + .../Lib/test/test_email/data/msg_12a.txt | 38 + .../Lib/test/test_email/data/msg_13.txt | 94 + .../Lib/test/test_email/data/msg_14.txt | 23 + .../Lib/test/test_email/data/msg_15.txt | 52 + .../Lib/test/test_email/data/msg_16.txt | 123 + .../Lib/test/test_email/data/msg_17.txt | 12 + .../Lib/test/test_email/data/msg_18.txt | 6 + .../Lib/test/test_email/data/msg_19.txt | 43 + .../Lib/test/test_email/data/msg_20.txt | 22 + .../Lib/test/test_email/data/msg_21.txt | 20 + .../Lib/test/test_email/data/msg_22.txt | 46 + .../Lib/test/test_email/data/msg_23.txt | 8 + .../Lib/test/test_email/data/msg_24.txt | 10 + .../Lib/test/test_email/data/msg_25.txt | 117 + .../Lib/test/test_email/data/msg_26.txt | 46 + .../Lib/test/test_email/data/msg_27.txt | 15 + .../Lib/test/test_email/data/msg_28.txt | 25 + .../Lib/test/test_email/data/msg_29.txt | 22 + .../Lib/test/test_email/data/msg_30.txt | 23 + .../Lib/test/test_email/data/msg_31.txt | 15 + .../Lib/test/test_email/data/msg_32.txt | 14 + .../Lib/test/test_email/data/msg_33.txt | 29 + .../Lib/test/test_email/data/msg_34.txt | 19 + .../Lib/test/test_email/data/msg_35.txt | 4 + .../Lib/test/test_email/data/msg_36.txt | 40 + .../Lib/test/test_email/data/msg_37.txt | 22 + .../Lib/test/test_email/data/msg_38.txt | 101 + .../Lib/test/test_email/data/msg_39.txt | 83 + .../Lib/test/test_email/data/msg_40.txt | 10 + .../Lib/test/test_email/data/msg_41.txt | 8 + .../Lib/test/test_email/data/msg_42.txt | 20 + .../Lib/test/test_email/data/msg_43.txt | 217 + .../Lib/test/test_email/data/msg_44.txt | 33 + .../Lib/test/test_email/data/msg_45.txt | 33 + .../Lib/test/test_email/data/msg_46.txt | 23 + .../test/test_email/test__encoded_words.py | 198 + .../test_email/test__header_value_parser.py | 2774 + .../Lib/test/test_email/test_asian_codecs.py | 81 + .../test/test_email/test_contentmanager.py | 796 + .../test/test_email/test_defect_handling.py | 337 + .../Lib/test/test_email/test_email.py | 5402 ++ .../Lib/test/test_email/test_generator.py | 296 + .../test/test_email/test_headerregistry.py | 1653 + .../Lib/test/test_email/test_inversion.py | 70 + .../Lib/test/test_email/test_message.py | 803 + .../Lib/test/test_email/test_parser.py | 110 + .../Lib/test/test_email/test_pickleable.py | 76 + .../Lib/test/test_email/test_policy.py | 346 + .../Lib/test/test_email/test_utils.py | 165 + .../Lib/test/test_email/torture_test.py | 133 + .../Python-3.6.8/Lib/test/test_ensurepip.py | 310 + .../Python/Python-3.6.8/Lib/test/test_enum.py | 2635 + .../Python-3.6.8/Lib/test/test_enumerate.py | 269 + .../Python/Python-3.6.8/Lib/test/test_eof.py | 28 + .../Python-3.6.8/Lib/test/test_epoll.py | 264 + .../Python-3.6.8/Lib/test/test_errno.py | 35 + .../Lib/test/test_exception_hierarchy.py | 204 + .../Lib/test/test_exception_variations.py | 176 + .../Python-3.6.8/Lib/test/test_exceptions.py | 1288 + .../Python-3.6.8/Lib/test/test_extcall.py | 465 + .../Lib/test/test_faulthandler.py | 817 + .../Python-3.6.8/Lib/test/test_fcntl.py | 152 + .../Python/Python-3.6.8/Lib/test/test_file.py | 322 + .../Python-3.6.8/Lib/test/test_file_eintr.py | 252 + .../Python-3.6.8/Lib/test/test_filecmp.py | 217 + .../Python-3.6.8/Lib/test/test_fileinput.py | 977 + .../Python-3.6.8/Lib/test/test_fileio.py | 595 + .../Lib/test/test_finalization.py | 519 + .../Python-3.6.8/Lib/test/test_float.py | 1425 + .../Python-3.6.8/Lib/test/test_flufl.py | 33 + .../Python-3.6.8/Lib/test/test_fnmatch.py | 128 + .../Python-3.6.8/Lib/test/test_fork1.py | 112 + .../Python-3.6.8/Lib/test/test_format.py | 494 + .../Python-3.6.8/Lib/test/test_fractions.py | 635 + .../Python-3.6.8/Lib/test/test_frame.py | 165 + .../Python-3.6.8/Lib/test/test_fstring.py | 1038 + .../Python-3.6.8/Lib/test/test_ftplib.py | 1096 + .../Python-3.6.8/Lib/test/test_funcattrs.py | 377 + .../Python-3.6.8/Lib/test/test_functools.py | 2090 + .../Python-3.6.8/Lib/test/test_future.py | 108 + .../Python-3.6.8/Lib/test/test_future3.py | 26 + .../Python-3.6.8/Lib/test/test_future4.py | 6 + .../Python-3.6.8/Lib/test/test_future5.py | 21 + .../Python/Python-3.6.8/Lib/test/test_gc.py | 1046 + .../Python/Python-3.6.8/Lib/test/test_gdb.py | 981 + .../Lib/test/test_generator_stop.py | 34 + .../Python-3.6.8/Lib/test/test_generators.py | 2238 + .../Python-3.6.8/Lib/test/test_genericpath.py | 554 + .../Python-3.6.8/Lib/test/test_genexps.py | 285 + .../Python-3.6.8/Lib/test/test_getargs2.py | 1136 + .../Python-3.6.8/Lib/test/test_getopt.py | 184 + .../Python-3.6.8/Lib/test/test_getpass.py | 163 + .../Python-3.6.8/Lib/test/test_gettext.py | 770 + .../Python/Python-3.6.8/Lib/test/test_glob.py | 317 + .../Python-3.6.8/Lib/test/test_global.py | 61 + .../Python-3.6.8/Lib/test/test_grammar.py | 1490 + .../Python/Python-3.6.8/Lib/test/test_grp.py | 108 + .../Python/Python-3.6.8/Lib/test/test_gzip.py | 759 + .../Python/Python-3.6.8/Lib/test/test_hash.py | 346 + .../Python-3.6.8/Lib/test/test_hashlib.py | 983 + .../Python-3.6.8/Lib/test/test_heapq.py | 427 + .../Python/Python-3.6.8/Lib/test/test_hmac.py | 496 + .../Python/Python-3.6.8/Lib/test/test_html.py | 103 + .../Python-3.6.8/Lib/test/test_htmlparser.py | 778 + .../Lib/test/test_http_cookiejar.py | 1770 + .../Lib/test/test_http_cookies.py | 482 + .../Python-3.6.8/Lib/test/test_httplib.py | 1918 + .../Python-3.6.8/Lib/test/test_httpservers.py | 1060 + .../Python/Python-3.6.8/Lib/test/test_idle.py | 27 + .../Python-3.6.8/Lib/test/test_imaplib.py | 1012 + .../Python-3.6.8/Lib/test/test_imghdr.py | 140 + .../Python/Python-3.6.8/Lib/test/test_imp.py | 416 + .../Lib/test/test_import/__init__.py | 1202 + .../Lib/test/test_import/__main__.py | 3 + .../data/circular_imports/basic.py | 2 + .../data/circular_imports/basic2.py | 1 + .../data/circular_imports/indirect.py | 1 + .../data/circular_imports/rebinding.py | 3 + .../data/circular_imports/rebinding2.py | 3 + .../data/circular_imports/subpackage.py | 2 + .../circular_imports/subpkg/subpackage2.py | 2 + .../data/circular_imports/subpkg/util.py | 2 + .../test_import/data/circular_imports/util.py | 2 + .../test/test_import/data/package/__init__.py | 2 + .../test_import/data/package/submodule.py | 0 .../test_import/data/package2/submodule1.py | 3 + .../test_import/data/package2/submodule2.py | 0 .../Lib/test/test_importlib/__init__.py | 5 + .../Lib/test/test_importlib/__main__.py | 4 + .../Lib/test/test_importlib/abc.py | 94 + .../test/test_importlib/builtin/__init__.py | 5 + .../test/test_importlib/builtin/__main__.py | 4 + .../test_importlib/builtin/test_finder.py | 90 + .../test_importlib/builtin/test_loader.py | 108 + .../test/test_importlib/extension/__init__.py | 5 + .../test/test_importlib/extension/__main__.py | 4 + .../extension/test_case_sensitivity.py | 46 + .../test_importlib/extension/test_finder.py | 44 + .../test_importlib/extension/test_loader.py | 300 + .../extension/test_path_hook.py | 31 + .../test/test_importlib/frozen/__init__.py | 5 + .../test/test_importlib/frozen/__main__.py | 4 + .../test/test_importlib/frozen/test_finder.py | 84 + .../test/test_importlib/frozen/test_loader.py | 225 + .../test/test_importlib/import_/__init__.py | 5 + .../test/test_importlib/import_/__main__.py | 4 + .../test_importlib/import_/test___loader__.py | 75 + .../import_/test___package__.py | 163 + .../test/test_importlib/import_/test_api.py | 119 + .../test_importlib/import_/test_caching.py | 93 + .../test_importlib/import_/test_fromlist.py | 175 + .../test_importlib/import_/test_meta_path.py | 125 + .../test_importlib/import_/test_packages.py | 110 + .../test/test_importlib/import_/test_path.py | 257 + .../import_/test_relative_imports.py | 232 + .../namespace_pkgs/both_portions/foo/one.py | 1 + .../namespace_pkgs/both_portions/foo/two.py | 1 + .../namespace_pkgs/missing_directory.zip | Bin 0 -> 515 bytes .../module_and_namespace_package/a_test.py | 1 + .../module_and_namespace_package/a_test/empty | 0 .../namespace_pkgs/nested_portion1.zip | Bin 0 -> 556 bytes .../not_a_namespace_pkg/foo/__init__.py | 0 .../not_a_namespace_pkg/foo/one.py | 1 + .../namespace_pkgs/portion1/foo/one.py | 1 + .../namespace_pkgs/portion2/foo/two.py | 1 + .../project1/parent/child/one.py | 1 + .../project2/parent/child/two.py | 1 + .../project3/parent/child/three.py | 1 + .../namespace_pkgs/top_level_portion1.zip | Bin 0 -> 332 bytes .../test/test_importlib/source/__init__.py | 5 + .../test/test_importlib/source/__main__.py | 4 + .../source/test_case_sensitivity.py | 85 + .../test_importlib/source/test_file_loader.py | 602 + .../test/test_importlib/source/test_finder.py | 236 + .../test_importlib/source/test_path_hook.py | 41 + .../source/test_source_encoding.py | 175 + .../Lib/test/test_importlib/test_abc.py | 953 + .../Lib/test/test_importlib/test_api.py | 449 + .../Lib/test/test_importlib/test_lazy.py | 145 + .../Lib/test/test_importlib/test_locks.py | 175 + .../test_importlib/test_namespace_pkgs.py | 321 + .../Lib/test/test_importlib/test_spec.py | 819 + .../Lib/test/test_importlib/test_util.py | 805 + .../Lib/test/test_importlib/test_windows.py | 109 + .../Lib/test/test_importlib/util.py | 388 + .../Python-3.6.8/Lib/test/test_index.py | 275 + .../Python-3.6.8/Lib/test/test_inspect.py | 3764 + .../Python/Python-3.6.8/Lib/test/test_int.py | 518 + .../Python-3.6.8/Lib/test/test_int_literal.py | 143 + .../Python/Python-3.6.8/Lib/test/test_io.py | 4161 + .../Python-3.6.8/Lib/test/test_ioctl.py | 91 + .../Python-3.6.8/Lib/test/test_ipaddress.py | 1995 + .../Python-3.6.8/Lib/test/test_isinstance.py | 280 + .../Python/Python-3.6.8/Lib/test/test_iter.py | 1016 + .../Python-3.6.8/Lib/test/test_iterlen.py | 228 + .../Python-3.6.8/Lib/test/test_itertools.py | 2448 + .../Lib/test/test_json/__init__.py | 56 + .../Lib/test/test_json/__main__.py | 4 + .../Lib/test/test_json/test_decode.py | 99 + .../Lib/test/test_json/test_default.py | 12 + .../Lib/test/test_json/test_dump.py | 68 + .../test_json/test_encode_basestring_ascii.py | 48 + .../Lib/test/test_json/test_enum.py | 120 + .../Lib/test/test_json/test_fail.py | 216 + .../Lib/test/test_json/test_float.py | 33 + .../Lib/test/test_json/test_indent.py | 67 + .../Lib/test/test_json/test_pass1.py | 75 + .../Lib/test/test_json/test_pass2.py | 18 + .../Lib/test/test_json/test_pass3.py | 24 + .../Lib/test/test_json/test_recursion.py | 100 + .../Lib/test/test_json/test_scanstring.py | 141 + .../Lib/test/test_json/test_separators.py | 50 + .../Lib/test/test_json/test_speedups.py | 71 + .../Lib/test/test_json/test_tool.py | 107 + .../Lib/test/test_json/test_unicode.py | 98 + .../Python-3.6.8/Lib/test/test_keyword.py | 138 + .../Lib/test/test_keywordonlyarg.py | 189 + .../Python-3.6.8/Lib/test/test_kqueue.py | 263 + .../Python-3.6.8/Lib/test/test_largefile.py | 189 + .../Python-3.6.8/Lib/test/test_lib2to3.py | 5 + .../Python-3.6.8/Lib/test/test_linecache.py | 242 + .../Python/Python-3.6.8/Lib/test/test_list.py | 155 + .../Python-3.6.8/Lib/test/test_listcomps.py | 148 + .../Python-3.6.8/Lib/test/test_locale.py | 587 + .../Python-3.6.8/Lib/test/test_logging.py | 4522 + .../Python/Python-3.6.8/Lib/test/test_long.py | 1329 + .../Python-3.6.8/Lib/test/test_longexp.py | 10 + .../Python/Python-3.6.8/Lib/test/test_lzma.py | 1775 + .../Python-3.6.8/Lib/test/test_macpath.py | 149 + .../Python-3.6.8/Lib/test/test_macurl2path.py | 31 + .../Python-3.6.8/Lib/test/test_mailbox.py | 2288 + .../Python-3.6.8/Lib/test/test_mailcap.py | 239 + .../Python-3.6.8/Lib/test/test_marshal.py | 568 + .../Python/Python-3.6.8/Lib/test/test_math.py | 1422 + .../Python-3.6.8/Lib/test/test_memoryio.py | 843 + .../Python-3.6.8/Lib/test/test_memoryview.py | 537 + .../Python-3.6.8/Lib/test/test_metaclass.py | 265 + .../Python-3.6.8/Lib/test/test_mimetypes.py | 111 + .../Python-3.6.8/Lib/test/test_minidom.py | 1625 + .../Python/Python-3.6.8/Lib/test/test_mmap.py | 810 + .../Python-3.6.8/Lib/test/test_module.py | 244 + .../Lib/test/test_modulefinder.py | 337 + .../Python-3.6.8/Lib/test/test_msilib.py | 99 + .../Lib/test/test_multibytecodec.py | 270 + .../Lib/test/test_multiprocessing_fork.py | 19 + .../test/test_multiprocessing_forkserver.py | 16 + .../test_multiprocessing_main_handling.py | 294 + .../Lib/test/test_multiprocessing_spawn.py | 12 + .../Python-3.6.8/Lib/test/test_netrc.py | 133 + .../Python/Python-3.6.8/Lib/test/test_nis.py | 39 + .../Python-3.6.8/Lib/test/test_nntplib.py | 1581 + .../Lib/test/test_normalization.py | 108 + .../Python-3.6.8/Lib/test/test_ntpath.py | 536 + .../Lib/test/test_numeric_tower.py | 202 + .../Python-3.6.8/Lib/test/test_opcodes.py | 138 + .../Python-3.6.8/Lib/test/test_openpty.py | 21 + .../Python-3.6.8/Lib/test/test_operator.py | 609 + .../Python-3.6.8/Lib/test/test_optparse.py | 1664 + .../Lib/test/test_ordered_dict.py | 818 + .../Python/Python-3.6.8/Lib/test/test_os.py | 3635 + .../Python-3.6.8/Lib/test/test_ossaudiodev.py | 202 + .../Python-3.6.8/Lib/test/test_osx_env.py | 34 + .../Python-3.6.8/Lib/test/test_parser.py | 920 + .../Python-3.6.8/Lib/test/test_pathlib.py | 2252 + .../Python/Python-3.6.8/Lib/test/test_pdb.py | 1326 + .../Python-3.6.8/Lib/test/test_peepholer.py | 332 + .../Python-3.6.8/Lib/test/test_pickle.py | 514 + .../Python-3.6.8/Lib/test/test_pickletools.py | 99 + .../Python-3.6.8/Lib/test/test_pipes.py | 203 + .../Python/Python-3.6.8/Lib/test/test_pkg.py | 296 + .../Python-3.6.8/Lib/test/test_pkgimport.py | 80 + .../Python-3.6.8/Lib/test/test_pkgutil.py | 491 + .../Python-3.6.8/Lib/test/test_platform.py | 418 + .../Python-3.6.8/Lib/test/test_plistlib.py | 663 + .../Python/Python-3.6.8/Lib/test/test_poll.py | 238 + .../Python-3.6.8/Lib/test/test_popen.py | 65 + .../Python-3.6.8/Lib/test/test_poplib.py | 531 + .../Python-3.6.8/Lib/test/test_posix.py | 1361 + .../Python-3.6.8/Lib/test/test_posixpath.py | 685 + .../Python/Python-3.6.8/Lib/test/test_pow.py | 123 + .../Python-3.6.8/Lib/test/test_pprint.py | 1012 + .../Python-3.6.8/Lib/test/test_print.py | 219 + .../Python-3.6.8/Lib/test/test_profile.py | 192 + .../Python-3.6.8/Lib/test/test_property.py | 283 + .../Python-3.6.8/Lib/test/test_pstats.py | 38 + .../Python/Python-3.6.8/Lib/test/test_pty.py | 313 + .../Python-3.6.8/Lib/test/test_pulldom.py | 349 + .../Python/Python-3.6.8/Lib/test/test_pwd.py | 125 + .../Python-3.6.8/Lib/test/test_py_compile.py | 127 + .../Python-3.6.8/Lib/test/test_pyclbr.py | 176 + .../Python-3.6.8/Lib/test/test_pydoc.py | 1206 + .../Python-3.6.8/Lib/test/test_pyexpat.py | 733 + .../Python-3.6.8/Lib/test/test_queue.py | 362 + .../Python-3.6.8/Lib/test/test_quopri.py | 210 + .../Python-3.6.8/Lib/test/test_raise.py | 419 + .../Python-3.6.8/Lib/test/test_random.py | 950 + .../Python-3.6.8/Lib/test/test_range.py | 693 + .../Python/Python-3.6.8/Lib/test/test_re.py | 2087 + .../Python-3.6.8/Lib/test/test_readline.py | 317 + .../Python-3.6.8/Lib/test/test_regrtest.py | 1089 + .../Python/Python-3.6.8/Lib/test/test_repl.py | 62 + .../Python-3.6.8/Lib/test/test_reprlib.py | 405 + .../Python-3.6.8/Lib/test/test_resource.py | 177 + .../Python-3.6.8/Lib/test/test_richcmp.py | 355 + .../Python-3.6.8/Lib/test/test_rlcompleter.py | 141 + .../Python-3.6.8/Lib/test/test_robotparser.py | 362 + .../Python-3.6.8/Lib/test/test_runpy.py | 749 + .../Python/Python-3.6.8/Lib/test/test_sax.py | 1329 + .../Python-3.6.8/Lib/test/test_sched.py | 204 + .../Python-3.6.8/Lib/test/test_scope.py | 761 + .../Lib/test/test_script_helper.py | 125 + .../Python-3.6.8/Lib/test/test_secrets.py | 124 + .../Python-3.6.8/Lib/test/test_select.py | 82 + .../Python-3.6.8/Lib/test/test_selectors.py | 537 + .../Python/Python-3.6.8/Lib/test/test_set.py | 1903 + .../Python-3.6.8/Lib/test/test_setcomps.py | 151 + .../Python-3.6.8/Lib/test/test_shelve.py | 228 + .../Python-3.6.8/Lib/test/test_shlex.py | 318 + .../Python-3.6.8/Lib/test/test_shutil.py | 1934 + .../Python-3.6.8/Lib/test/test_signal.py | 1092 + .../Python/Python-3.6.8/Lib/test/test_site.py | 641 + .../Python-3.6.8/Lib/test/test_slice.py | 255 + .../Python-3.6.8/Lib/test/test_smtpd.py | 1013 + .../Python-3.6.8/Lib/test/test_smtplib.py | 1330 + .../Python-3.6.8/Lib/test/test_smtpnet.py | 83 + .../Python-3.6.8/Lib/test/test_sndhdr.py | 37 + .../Python-3.6.8/Lib/test/test_socket.py | 5693 ++ .../Lib/test/test_socketserver.py | 503 + .../Python/Python-3.6.8/Lib/test/test_sort.py | 265 + .../Lib/test/test_source_encoding.py | 225 + .../Python/Python-3.6.8/Lib/test/test_spwd.py | 73 + .../Python-3.6.8/Lib/test/test_sqlite.py | 24 + .../Python/Python-3.6.8/Lib/test/test_ssl.py | 3905 + .../Python-3.6.8/Lib/test/test_startfile.py | 34 + .../Python/Python-3.6.8/Lib/test/test_stat.py | 234 + .../Python-3.6.8/Lib/test/test_statistics.py | 1992 + .../Python-3.6.8/Lib/test/test_strftime.py | 206 + .../Python-3.6.8/Lib/test/test_string.py | 439 + .../Lib/test/test_string_literals.py | 249 + .../Python-3.6.8/Lib/test/test_stringprep.py | 92 + .../Python-3.6.8/Lib/test/test_strptime.py | 673 + .../Python-3.6.8/Lib/test/test_strtod.py | 433 + .../Python-3.6.8/Lib/test/test_struct.py | 756 + .../Lib/test/test_structmembers.py | 144 + .../Python-3.6.8/Lib/test/test_structseq.py | 126 + .../Lib/test/test_subclassinit.py | 284 + .../Python-3.6.8/Lib/test/test_subprocess.py | 3080 + .../Python-3.6.8/Lib/test/test_sunau.py | 121 + .../Python-3.6.8/Lib/test/test_sundry.py | 56 + .../Python-3.6.8/Lib/test/test_super.py | 347 + .../Python-3.6.8/Lib/test/test_support.py | 558 + .../Python-3.6.8/Lib/test/test_symbol.py | 54 + .../Python-3.6.8/Lib/test/test_symtable.py | 193 + .../Python-3.6.8/Lib/test/test_syntax.py | 618 + .../Python/Python-3.6.8/Lib/test/test_sys.py | 1270 + .../Lib/test/test_sys_setprofile.py | 376 + .../Lib/test/test_sys_settrace.py | 1297 + .../Python-3.6.8/Lib/test/test_sysconfig.py | 458 + .../Python-3.6.8/Lib/test/test_syslog.py | 40 + .../Python-3.6.8/Lib/test/test_tarfile.py | 2643 + .../Python/Python-3.6.8/Lib/test/test_tcl.py | 752 + .../Python-3.6.8/Lib/test/test_telnetlib.py | 401 + .../Python-3.6.8/Lib/test/test_tempfile.py | 1458 + .../Python-3.6.8/Lib/test/test_textwrap.py | 981 + .../Python-3.6.8/Lib/test/test_thread.py | 270 + .../Lib/test/test_threaded_import.py | 254 + .../Lib/test/test_threadedtempfile.py | 62 + .../Python-3.6.8/Lib/test/test_threading.py | 1173 + .../Lib/test/test_threading_local.py | 220 + .../Lib/test/test_threadsignals.py | 247 + .../Python/Python-3.6.8/Lib/test/test_time.py | 999 + .../Python-3.6.8/Lib/test/test_timeit.py | 381 + .../Python-3.6.8/Lib/test/test_timeout.py | 303 + .../Python/Python-3.6.8/Lib/test/test_tix.py | 32 + .../Python/Python-3.6.8/Lib/test/test_tk.py | 15 + .../Python-3.6.8/Lib/test/test_tokenize.py | 1618 + .../Lib/test/test_tools/__init__.py | 24 + .../Lib/test/test_tools/__main__.py | 4 + .../Lib/test/test_tools/test_fixcid.py | 92 + .../Lib/test/test_tools/test_gprof2html.py | 35 + .../Lib/test/test_tools/test_i18n.py | 243 + .../Lib/test/test_tools/test_md5sum.py | 76 + .../Lib/test/test_tools/test_pdeps.py | 32 + .../Lib/test/test_tools/test_pindent.py | 339 + .../Lib/test/test_tools/test_reindent.py | 35 + .../Lib/test/test_tools/test_sundry.py | 63 + .../Lib/test/test_tools/test_unparse.py | 313 + .../Python-3.6.8/Lib/test/test_trace.py | 442 + .../Python-3.6.8/Lib/test/test_traceback.py | 1168 + .../Python-3.6.8/Lib/test/test_tracemalloc.py | 994 + .../Python-3.6.8/Lib/test/test_ttk_guionly.py | 34 + .../Lib/test/test_ttk_textonly.py | 13 + .../Python-3.6.8/Lib/test/test_tuple.py | 221 + .../Python-3.6.8/Lib/test/test_turtle.py | 436 + .../Python-3.6.8/Lib/test/test_typechecks.py | 71 + .../Python-3.6.8/Lib/test/test_types.py | 1550 + .../Python-3.6.8/Lib/test/test_typing.py | 2647 + .../Python/Python-3.6.8/Lib/test/test_ucn.py | 237 + .../Python-3.6.8/Lib/test/test_unary.py | 53 + .../Python-3.6.8/Lib/test/test_unicode.py | 2894 + .../Lib/test/test_unicode_file.py | 140 + .../Lib/test/test_unicode_file_functions.py | 195 + .../Lib/test/test_unicode_identifiers.py | 31 + .../Python-3.6.8/Lib/test/test_unicodedata.py | 329 + .../Python-3.6.8/Lib/test/test_unittest.py | 16 + .../Lib/test/test_univnewlines.py | 123 + .../Python-3.6.8/Lib/test/test_unpack.py | 151 + .../Python-3.6.8/Lib/test/test_unpack_ex.py | 365 + .../Python-3.6.8/Lib/test/test_urllib.py | 1572 + .../Python-3.6.8/Lib/test/test_urllib2.py | 1930 + .../Lib/test/test_urllib2_localnet.py | 679 + .../Python-3.6.8/Lib/test/test_urllib2net.py | 342 + .../Lib/test/test_urllib_response.py | 59 + .../Python-3.6.8/Lib/test/test_urllibnet.py | 218 + .../Python-3.6.8/Lib/test/test_urlparse.py | 1138 + .../Python-3.6.8/Lib/test/test_userdict.py | 220 + .../Python-3.6.8/Lib/test/test_userlist.py | 63 + .../Python-3.6.8/Lib/test/test_userstring.py | 44 + .../Python-3.6.8/Lib/test/test_utf8source.py | 43 + .../Python/Python-3.6.8/Lib/test/test_uu.py | 208 + .../Python/Python-3.6.8/Lib/test/test_uuid.py | 537 + .../Python/Python-3.6.8/Lib/test/test_venv.py | 447 + .../Python-3.6.8/Lib/test/test_wait3.py | 38 + .../Python-3.6.8/Lib/test/test_wait4.py | 39 + .../Lib/test/test_warnings/__init__.py | 1220 + .../Lib/test/test_warnings/__main__.py | 3 + .../test/test_warnings/data/import_warning.py | 3 + .../Lib/test/test_warnings/data/stacklevel.py | 9 + .../Python/Python-3.6.8/Lib/test/test_wave.py | 113 + .../Python-3.6.8/Lib/test/test_weakref.py | 1952 + .../Python-3.6.8/Lib/test/test_weakset.py | 439 + .../Python-3.6.8/Lib/test/test_webbrowser.py | 217 + .../Lib/test/test_winconsoleio.py | 195 + .../Python-3.6.8/Lib/test/test_winreg.py | 498 + .../Python-3.6.8/Lib/test/test_winsound.py | 150 + .../Python/Python-3.6.8/Lib/test/test_with.py | 746 + .../Python-3.6.8/Lib/test/test_wsgiref.py | 785 + .../Python-3.6.8/Lib/test/test_xdrlib.py | 77 + .../Lib/test/test_xml_dom_minicompat.py | 138 + .../Python-3.6.8/Lib/test/test_xml_etree.py | 3196 + .../Python-3.6.8/Lib/test/test_xml_etree_c.py | 204 + .../Python-3.6.8/Lib/test/test_xmlrpc.py | 1411 + .../Python-3.6.8/Lib/test/test_xmlrpc_net.py | 32 + .../Python-3.6.8/Lib/test/test_yield_from.py | 1052 + .../Python-3.6.8/Lib/test/test_zipapp.py | 349 + .../Python-3.6.8/Lib/test/test_zipfile.py | 2255 + .../Python-3.6.8/Lib/test/test_zipfile64.py | 155 + .../Python-3.6.8/Lib/test/test_zipimport.py | 759 + .../Lib/test/test_zipimport_support.py | 244 + .../Python/Python-3.6.8/Lib/test/test_zlib.py | 915 + .../Python/Python-3.6.8/Lib/test/testcodec.py | 48 + .../Python/Python-3.6.8/Lib/test/testtar.tar | Bin 0 -> 435200 bytes .../Python-3.6.8/Lib/test/tf_inherit_check.py | 27 + .../Lib/test/threaded_import_hangers.py | 45 + .../Python-3.6.8/Lib/test/time_hashlib.py | 88 + ...-latin1-coding-cookie-and-utf8-bom-sig.txt | 13 + ...no-coding-cookie-and-utf8-bom-sig-only.txt | 11 + ...utf8-coding-cookie-and-no-utf8-bom-sig.txt | 13 + ...ts-utf8-coding-cookie-and-utf8-bom-sig.txt | 12 + .../Python-3.6.8/Lib/test/tokenize_tests.txt | 189 + .../Lib/test/tracedmodules/__init__.py | 4 + .../Lib/test/tracedmodules/testmod.py | 9 + .../Lib/test/win_console_handler.py | 49 + .../test/xmltestdata/expat224_utf8_bug.xml | 2 + .../Lib/test/xmltestdata/simple-ns.xml | 7 + .../Lib/test/xmltestdata/simple.xml | 6 + .../Lib/test/xmltestdata/test.xml | 115 + .../Lib/test/xmltestdata/test.xml.out | 115 + .../Python/Python-3.6.8/Lib/test/xmltests.py | 21 + .../Lib/test/zip_cp437_header.zip | Bin 0 -> 270 bytes .../Python/Python-3.6.8/Lib/test/zipdir.zip | Bin 0 -> 374 bytes .../Python/Python-3.6.8/Lib/textwrap.py | 488 + .../Python/Python-3.6.8/Lib/this.py | 28 + .../Python/Python-3.6.8/Lib/threading.py | 1357 + .../Python/Python-3.6.8/Lib/timeit.py | 362 + .../Python-3.6.8/Lib/tkinter/__init__.py | 4008 + .../Python-3.6.8/Lib/tkinter/__main__.py | 7 + .../Python-3.6.8/Lib/tkinter/colorchooser.py | 72 + .../Python-3.6.8/Lib/tkinter/commondialog.py | 55 + .../Python-3.6.8/Lib/tkinter/constants.py | 110 + .../Python/Python-3.6.8/Lib/tkinter/dialog.py | 46 + .../Python/Python-3.6.8/Lib/tkinter/dnd.py | 321 + .../Python-3.6.8/Lib/tkinter/filedialog.py | 479 + .../Python/Python-3.6.8/Lib/tkinter/font.py | 232 + .../Python-3.6.8/Lib/tkinter/messagebox.py | 134 + .../Python-3.6.8/Lib/tkinter/scrolledtext.py | 54 + .../Python-3.6.8/Lib/tkinter/simpledialog.py | 423 + .../Python-3.6.8/Lib/tkinter/test/README | 14 + .../Python-3.6.8/Lib/tkinter/test/__init__.py | 0 .../Lib/tkinter/test/runtktests.py | 69 + .../Python-3.6.8/Lib/tkinter/test/support.py | 117 + .../Lib/tkinter/test/test_tkinter/__init__.py | 0 .../tkinter/test/test_tkinter/test_font.py | 96 + .../test_tkinter/test_geometry_managers.py | 906 + .../tkinter/test/test_tkinter/test_images.py | 327 + .../tkinter/test/test_tkinter/test_loadtk.py | 46 + .../tkinter/test/test_tkinter/test_misc.py | 163 + .../tkinter/test/test_tkinter/test_text.py | 47 + .../test/test_tkinter/test_variables.py | 310 + .../tkinter/test/test_tkinter/test_widgets.py | 1233 + .../Lib/tkinter/test/test_ttk/__init__.py | 0 .../tkinter/test/test_ttk/test_extensions.py | 323 + .../tkinter/test/test_ttk/test_functions.py | 461 + .../Lib/tkinter/test/test_ttk/test_style.py | 92 + .../Lib/tkinter/test/test_ttk/test_widgets.py | 1716 + .../Lib/tkinter/test/widget_tests.py | 548 + .../Python/Python-3.6.8/Lib/tkinter/tix.py | 1946 + .../Python/Python-3.6.8/Lib/tkinter/ttk.py | 1655 + .../Python/Python-3.6.8/Lib/token.py | 143 + .../Python/Python-3.6.8/Lib/tokenize.py | 803 + .../Python/Python-3.6.8/Lib/trace.py | 735 + .../Python/Python-3.6.8/Lib/traceback.py | 612 + .../Python/Python-3.6.8/Lib/tracemalloc.py | 524 + .../Python/Python-3.6.8/Lib/tty.py | 36 + .../Python/Python-3.6.8/Lib/turtle.py | 4139 + .../Python-3.6.8/Lib/turtledemo/__init__.py | 14 + .../Python-3.6.8/Lib/turtledemo/__main__.py | 386 + .../Python-3.6.8/Lib/turtledemo/bytedesign.py | 161 + .../Python-3.6.8/Lib/turtledemo/chaos.py | 59 + .../Python-3.6.8/Lib/turtledemo/clock.py | 132 + .../Python-3.6.8/Lib/turtledemo/colormixer.py | 58 + .../Python-3.6.8/Lib/turtledemo/forest.py | 108 + .../Lib/turtledemo/fractalcurves.py | 138 + .../Lib/turtledemo/lindenmayer.py | 119 + .../Lib/turtledemo/minimal_hanoi.py | 79 + .../Python/Python-3.6.8/Lib/turtledemo/nim.py | 226 + .../Python-3.6.8/Lib/turtledemo/paint.py | 54 + .../Python-3.6.8/Lib/turtledemo/peace.py | 61 + .../Python-3.6.8/Lib/turtledemo/penrose.py | 178 + .../Lib/turtledemo/planet_and_moon.py | 111 + .../Python-3.6.8/Lib/turtledemo/rosette.py | 65 + .../Lib/turtledemo/round_dance.py | 86 + .../Lib/turtledemo/sorting_animate.py | 204 + .../Python-3.6.8/Lib/turtledemo/tree.py | 62 + .../Python-3.6.8/Lib/turtledemo/turtle.cfg | 10 + .../Lib/turtledemo/two_canvases.py | 54 + .../Python-3.6.8/Lib/turtledemo/yinyang.py | 49 + .../Python/Python-3.6.8/Lib/types.py | 266 + .../Python/Python-3.6.8/Lib/typing.py | 2412 + .../Python-3.6.8/Lib/unittest/__init__.py | 78 + .../Python-3.6.8/Lib/unittest/__main__.py | 18 + .../Python/Python-3.6.8/Lib/unittest/case.py | 1429 + .../Python-3.6.8/Lib/unittest/loader.py | 508 + .../Python/Python-3.6.8/Lib/unittest/main.py | 260 + .../Python/Python-3.6.8/Lib/unittest/mock.py | 2415 + .../Python-3.6.8/Lib/unittest/result.py | 216 + .../Python-3.6.8/Lib/unittest/runner.py | 221 + .../Python-3.6.8/Lib/unittest/signals.py | 71 + .../Python/Python-3.6.8/Lib/unittest/suite.py | 321 + .../Lib/unittest/test/__init__.py | 22 + .../Lib/unittest/test/__main__.py | 18 + .../Lib/unittest/test/_test_warnings.py | 73 + .../Python-3.6.8/Lib/unittest/test/dummy.py | 1 + .../Python-3.6.8/Lib/unittest/test/support.py | 138 + .../Lib/unittest/test/test_assertions.py | 411 + .../Lib/unittest/test/test_break.py | 288 + .../Lib/unittest/test/test_case.py | 1847 + .../Lib/unittest/test/test_discovery.py | 873 + .../unittest/test/test_functiontestcase.py | 148 + .../Lib/unittest/test/test_loader.py | 1529 + .../Lib/unittest/test/test_program.py | 414 + .../Lib/unittest/test/test_result.py | 695 + .../Lib/unittest/test/test_runner.py | 353 + .../Lib/unittest/test/test_setups.py | 507 + .../Lib/unittest/test/test_skipping.py | 260 + .../Lib/unittest/test/test_suite.py | 447 + .../Lib/unittest/test/testmock/__init__.py | 17 + .../Lib/unittest/test/testmock/__main__.py | 18 + .../Lib/unittest/test/testmock/support.py | 21 + .../unittest/test/testmock/testcallable.py | 151 + .../Lib/unittest/test/testmock/testhelpers.py | 962 + .../test/testmock/testmagicmethods.py | 468 + .../Lib/unittest/test/testmock/testmock.py | 1766 + .../Lib/unittest/test/testmock/testpatch.py | 1858 + .../unittest/test/testmock/testsentinel.py | 28 + .../Lib/unittest/test/testmock/testwith.py | 301 + .../Python/Python-3.6.8/Lib/unittest/util.py | 177 + .../Python-3.6.8/Lib/urllib/__init__.py | 0 .../Python/Python-3.6.8/Lib/urllib/error.py | 77 + .../Python/Python-3.6.8/Lib/urllib/parse.py | 1039 + .../Python/Python-3.6.8/Lib/urllib/request.py | 2739 + .../Python-3.6.8/Lib/urllib/response.py | 80 + .../Python-3.6.8/Lib/urllib/robotparser.py | 258 + .../Python/Python-3.6.8/Lib/uu.py | 199 + .../Python/Python-3.6.8/Lib/uuid.py | 636 + .../Python/Python-3.6.8/Lib/venv/__init__.py | 425 + .../Python/Python-3.6.8/Lib/venv/__main__.py | 10 + .../Lib/venv/scripts/common/activate | 76 + .../Lib/venv/scripts/nt/Activate.ps1 | 51 + .../Lib/venv/scripts/nt/activate.bat | 45 + .../Lib/venv/scripts/nt/deactivate.bat | 21 + .../Lib/venv/scripts/posix/activate.csh | 37 + .../Lib/venv/scripts/posix/activate.fish | 75 + .../Python/Python-3.6.8/Lib/warnings.py | 526 + .../Python/Python-3.6.8/Lib/wave.py | 505 + .../Python/Python-3.6.8/Lib/weakref.py | 632 + .../Python/Python-3.6.8/Lib/webbrowser.py | 663 + .../Python-3.6.8/Lib/wsgiref/__init__.py | 23 + .../Python-3.6.8/Lib/wsgiref/handlers.py | 557 + .../Python-3.6.8/Lib/wsgiref/headers.py | 184 + .../Python-3.6.8/Lib/wsgiref/simple_server.py | 164 + .../Python/Python-3.6.8/Lib/wsgiref/util.py | 165 + .../Python-3.6.8/Lib/wsgiref/validate.py | 443 + .../Python/Python-3.6.8/Lib/xdrlib.py | 241 + .../Python/Python-3.6.8/Lib/xml/__init__.py | 20 + .../Python-3.6.8/Lib/xml/dom/NodeFilter.py | 27 + .../Python-3.6.8/Lib/xml/dom/__init__.py | 140 + .../Python/Python-3.6.8/Lib/xml/dom/domreg.py | 99 + .../Python-3.6.8/Lib/xml/dom/expatbuilder.py | 965 + .../Python-3.6.8/Lib/xml/dom/minicompat.py | 109 + .../Python-3.6.8/Lib/xml/dom/minidom.py | 1981 + .../Python-3.6.8/Lib/xml/dom/pulldom.py | 342 + .../Python-3.6.8/Lib/xml/dom/xmlbuilder.py | 410 + .../Lib/xml/etree/ElementInclude.py | 143 + .../Python-3.6.8/Lib/xml/etree/ElementPath.py | 314 + .../Python-3.6.8/Lib/xml/etree/ElementTree.py | 1656 + .../Python-3.6.8/Lib/xml/etree/__init__.py | 33 + .../Lib/xml/etree/cElementTree.py | 3 + .../Python-3.6.8/Lib/xml/parsers/__init__.py | 8 + .../Python-3.6.8/Lib/xml/parsers/expat.py | 8 + .../Python-3.6.8/Lib/xml/sax/__init__.py | 107 + .../Python-3.6.8/Lib/xml/sax/_exceptions.py | 131 + .../Python-3.6.8/Lib/xml/sax/expatreader.py | 446 + .../Python-3.6.8/Lib/xml/sax/handler.py | 342 + .../Python-3.6.8/Lib/xml/sax/saxutils.py | 368 + .../Python-3.6.8/Lib/xml/sax/xmlreader.py | 380 + .../Python-3.6.8/Lib/xmlrpc/__init__.py | 1 + .../Python/Python-3.6.8/Lib/xmlrpc/client.py | 1518 + .../Python/Python-3.6.8/Lib/xmlrpc/server.py | 1002 + .../Python/Python-3.6.8/Lib/zipapp.py | 201 + .../Python/Python-3.6.8/Lib/zipfile.py | 2060 + .../Python-3.6.8/Mac/BuildScript/README.txt | 222 + .../Mac/BuildScript/build-installer.py | 1666 + .../Mac/BuildScript/resources/Conclusion.rtf | 20 + .../Mac/BuildScript/resources/License.rtf | 142 + .../Mac/BuildScript/resources/ReadMe.rtf | 107 + .../Mac/BuildScript/resources/Welcome.rtf | 37 + .../Mac/BuildScript/resources/background.jpg | Bin 0 -> 45421 bytes .../resources/install_certificates.command | 48 + .../scripts/postflight.documentation | 24 + .../BuildScript/scripts/postflight.ensurepip | 74 + .../BuildScript/scripts/postflight.framework | 32 + .../scripts/postflight.patch-profile | 99 + .../Python-3.6.8/Mac/BuildScript/seticon.m | 26 + .../Python/Python-3.6.8/Mac/Extras.install.py | 54 + .../Mac/IDLE/IDLE.app/Contents/Info.plist | 59 + .../Mac/IDLE/IDLE.app/Contents/MacOS/IDLE | 23 + .../Mac/IDLE/IDLE.app/Contents/PkgInfo | 1 + .../IDLE.app/Contents/Resources/IDLE.icns | Bin 0 -> 53456 bytes .../Contents/Resources/PythonCompiled.icns | Bin 0 -> 60777 bytes .../Contents/Resources/PythonSource.icns | Bin 0 -> 54522 bytes .../IDLE.app/Contents/Resources/idlemain.py | 73 + .../Python-3.6.8/Mac/Icons/Disk Image.icns | Bin 0 -> 50703 bytes .../Python/Python-3.6.8/Mac/Icons/IDLE.icns | Bin 0 -> 53456 bytes .../Python-3.6.8/Mac/Icons/Python Folder.icns | Bin 0 -> 133608 bytes .../Mac/Icons/PythonCompiled.icns | Bin 0 -> 60777 bytes .../Mac/Icons/PythonLauncher.icns | Bin 0 -> 42658 bytes .../Python-3.6.8/Mac/Icons/PythonSource.icns | Bin 0 -> 54522 bytes .../Python/Python-3.6.8/Mac/Icons/ReadMe.txt | 3 + .../Python/Python-3.6.8/Mac/Makefile.in | 258 + .../PythonLauncher/English.lproj/Credits.rtf | 30 + .../English.lproj/MainMenu.nib/classes.nib | 12 + .../English.lproj/MainMenu.nib/info.nib | 21 + .../English.lproj/MainMenu.nib/objects.nib | Bin 0 -> 5016 bytes .../English.lproj/MyDocument.nib/classes.nib | 26 + .../English.lproj/MyDocument.nib/info.nib | 16 + .../English.lproj/MyDocument.nib/objects.nib | Bin 0 -> 4845 bytes .../PreferenceWindow.nib/classes.nib | 26 + .../PreferenceWindow.nib/info.nib | 16 + .../PreferenceWindow.nib/objects.nib | Bin 0 -> 5882 bytes .../Mac/PythonLauncher/FileSettings.h | 59 + .../Mac/PythonLauncher/FileSettings.m | 307 + .../Mac/PythonLauncher/Info.plist.in | 65 + .../Mac/PythonLauncher/Makefile.in | 76 + .../Mac/PythonLauncher/MyAppDelegate.h | 15 + .../Mac/PythonLauncher/MyAppDelegate.m | 96 + .../Mac/PythonLauncher/MyDocument.h | 41 + .../Mac/PythonLauncher/MyDocument.m | 171 + .../PreferencesWindowController.h | 38 + .../PreferencesWindowController.m | 118 + .../Mac/PythonLauncher/doscript.h | 12 + .../Mac/PythonLauncher/doscript.m | 59 + .../Mac/PythonLauncher/factorySettings.plist | 87 + .../Python-3.6.8/Mac/PythonLauncher/main.m | 17 + .../Python/Python-3.6.8/Mac/README | 358 + .../Mac/Resources/app/Info.plist.in | 62 + .../Python-3.6.8/Mac/Resources/app/PkgInfo | 1 + .../Resources/app/Resources/PythonApplet.icns | Bin 0 -> 63136 bytes .../app/Resources/PythonInterpreter.icns | Bin 0 -> 42658 bytes .../Mac/Resources/framework/Info.plist.in | 28 + .../Mac/Resources/iconsrc/IDE.psd | Bin 0 -> 83876 bytes .../Mac/Resources/iconsrc/PackageManager.psd | Bin 0 -> 71056 bytes .../Mac/Resources/iconsrc/PythonApplet.psd | Bin 0 -> 41543 bytes .../Mac/Resources/iconsrc/PythonCompiled.psd | Bin 0 -> 76118 bytes .../Mac/Resources/iconsrc/PythonIcon.psd | Bin 0 -> 67236 bytes .../Mac/Resources/iconsrc/PythonSource.psd | Bin 0 -> 62075 bytes .../Mac/Resources/iconsrc/PythonWSource.psd | Bin 0 -> 64185 bytes .../Mac/Tools/plistlib_generate_testdata.py | 103 + .../Python/Python-3.6.8/Mac/Tools/pythonw.c | 226 + .../Python/Python-3.6.8/Makefile.pre.in | 1740 + .../Python/Python-3.6.8/Misc/ACKS | 1774 + .../Python/Python-3.6.8/Misc/HISTORY | 34821 ++++++++ .../Python/Python-3.6.8/Misc/NEWS.d/3.5.0.rst | 8 + .../Python-3.6.8/Misc/NEWS.d/3.5.0a1.rst | 5877 ++ .../Python-3.6.8/Misc/NEWS.d/3.5.0a2.rst | 406 + .../Python-3.6.8/Misc/NEWS.d/3.5.0a3.rst | 518 + .../Python-3.6.8/Misc/NEWS.d/3.5.0a4.rst | 665 + .../Python-3.6.8/Misc/NEWS.d/3.5.0b1.rst | 848 + .../Python-3.6.8/Misc/NEWS.d/3.5.0b2.rst | 104 + .../Python-3.6.8/Misc/NEWS.d/3.5.0b3.rst | 273 + .../Python-3.6.8/Misc/NEWS.d/3.5.0b4.rst | 255 + .../Python-3.6.8/Misc/NEWS.d/3.5.0rc1.rst | 241 + .../Python-3.6.8/Misc/NEWS.d/3.5.0rc2.rst | 56 + .../Python-3.6.8/Misc/NEWS.d/3.5.0rc3.rst | 76 + .../Python-3.6.8/Misc/NEWS.d/3.5.0rc4.rst | 17 + .../Python/Python-3.6.8/Misc/NEWS.d/3.5.1.rst | 17 + .../Python-3.6.8/Misc/NEWS.d/3.5.1rc1.rst | 1451 + .../Python/Python-3.6.8/Misc/NEWS.d/3.5.2.rst | 25 + .../Python-3.6.8/Misc/NEWS.d/3.5.2rc1.rst | 2204 + .../Python/Python-3.6.8/Misc/NEWS.d/3.5.3.rst | 7 + .../Python-3.6.8/Misc/NEWS.d/3.5.3rc1.rst | 2164 + .../Python/Python-3.6.8/Misc/NEWS.d/3.6.0.rst | 7 + .../Python-3.6.8/Misc/NEWS.d/3.6.0a1.rst | 3941 + .../Python-3.6.8/Misc/NEWS.d/3.6.0a2.rst | 792 + .../Python-3.6.8/Misc/NEWS.d/3.6.0a3.rst | 537 + .../Python-3.6.8/Misc/NEWS.d/3.6.0a4.rst | 685 + .../Python-3.6.8/Misc/NEWS.d/3.6.0b1.rst | 1608 + .../Python-3.6.8/Misc/NEWS.d/3.6.0b2.rst | 840 + .../Python-3.6.8/Misc/NEWS.d/3.6.0b3.rst | 355 + .../Python-3.6.8/Misc/NEWS.d/3.6.0b4.rst | 327 + .../Python-3.6.8/Misc/NEWS.d/3.6.0rc1.rst | 122 + .../Python-3.6.8/Misc/NEWS.d/3.6.0rc2.rst | 45 + .../Python/Python-3.6.8/Misc/NEWS.d/3.6.1.rst | 31 + .../Python-3.6.8/Misc/NEWS.d/3.6.1rc1.rst | 940 + .../Python/Python-3.6.8/Misc/NEWS.d/3.6.2.rst | 7 + .../Python-3.6.8/Misc/NEWS.d/3.6.2rc1.rst | 942 + .../Python-3.6.8/Misc/NEWS.d/3.6.2rc2.rst | 39 + .../Python/Python-3.6.8/Misc/NEWS.d/3.6.3.rst | 27 + .../Python-3.6.8/Misc/NEWS.d/3.6.3rc1.rst | 1259 + .../Python/Python-3.6.8/Misc/NEWS.d/3.6.4.rst | 8 + .../Python-3.6.8/Misc/NEWS.d/3.6.4rc1.rst | 1139 + .../Python/Python-3.6.8/Misc/NEWS.d/3.6.5.rst | 16 + .../Python-3.6.8/Misc/NEWS.d/3.6.5rc1.rst | 867 + .../Python/Python-3.6.8/Misc/NEWS.d/3.6.6.rst | 8 + .../Python-3.6.8/Misc/NEWS.d/3.6.6rc1.rst | 885 + .../Python/Python-3.6.8/Misc/NEWS.d/3.6.7.rst | 8 + .../Python-3.6.8/Misc/NEWS.d/3.6.7rc1.rst | 1112 + .../Python-3.6.8/Misc/NEWS.d/3.6.7rc2.rst | 149 + .../Python/Python-3.6.8/Misc/NEWS.d/3.6.8.rst | 38 + .../Python-3.6.8/Misc/NEWS.d/3.6.8rc1.rst | 879 + .../Misc/NEWS.d/next/C API/README.rst | 1 + .../NEWS.d/next/Core and Builtins/README.rst | 1 + .../Misc/NEWS.d/next/Documentation/README.rst | 1 + .../Misc/NEWS.d/next/IDLE/README.rst | 1 + .../Misc/NEWS.d/next/Library/README.rst | 1 + .../Misc/NEWS.d/next/Security/README.rst | 1 + .../Misc/NEWS.d/next/Tests/README.rst | 1 + .../Misc/NEWS.d/next/Tools-Demos/README.rst | 1 + .../Misc/NEWS.d/next/Windows/README.rst | 1 + .../Misc/NEWS.d/next/macOS/README.rst | 1 + .../Python/Python-3.6.8/Misc/Porting | 1 + .../Python/Python-3.6.8/Misc/README | 27 + .../Python/Python-3.6.8/Misc/README.AIX | 137 + .../Python/Python-3.6.8/Misc/README.coverity | 22 + .../Python/Python-3.6.8/Misc/README.valgrind | 100 + .../Python-3.6.8/Misc/SpecialBuilds.txt | 236 + .../Python/Python-3.6.8/Misc/coverity_model.c | 187 + .../Python/Python-3.6.8/Misc/gdbinit | 162 + .../Python/Python-3.6.8/Misc/indent.pro | 24 + .../Python/Python-3.6.8/Misc/python-config.in | 69 + .../Python-3.6.8/Misc/python-config.sh.in | 112 + .../Python/Python-3.6.8/Misc/python-wing3.wpr | 13 + .../Python/Python-3.6.8/Misc/python-wing4.wpr | 18 + .../Python/Python-3.6.8/Misc/python-wing5.wpr | 18 + .../Python/Python-3.6.8/Misc/python.man | 455 + .../Python/Python-3.6.8/Misc/python.pc.in | 13 + .../Python/Python-3.6.8/Misc/svnmap.txt | 72546 ++++++++++++++++ .../Python-3.6.8/Misc/valgrind-python.supp | 480 + .../Python/Python-3.6.8/Misc/vgrindefs | 10 + .../Python/Python-3.6.8/Modules/README | 2 + .../Python-3.6.8/Modules/Setup.config.in | 10 + .../Python/Python-3.6.8/Modules/Setup.dist | 389 + .../Python-3.6.8/Modules/_asynciomodule.c | 2525 + .../Python-3.6.8/Modules/_bisectmodule.c | 263 + .../Python-3.6.8/Modules/_blake2/blake2b2s.py | 49 + .../Modules/_blake2/blake2b_impl.c | 463 + .../Modules/_blake2/blake2module.c | 105 + .../Python-3.6.8/Modules/_blake2/blake2ns.h | 32 + .../Modules/_blake2/blake2s_impl.c | 463 + .../Modules/_blake2/clinic/blake2b_impl.c.h | 124 + .../Modules/_blake2/clinic/blake2s_impl.c.h | 124 + .../Modules/_blake2/impl/blake2-config.h | 74 + .../Modules/_blake2/impl/blake2-impl.h | 139 + .../Modules/_blake2/impl/blake2.h | 161 + .../Modules/_blake2/impl/blake2b-load-sse2.h | 70 + .../Modules/_blake2/impl/blake2b-load-sse41.h | 404 + .../Modules/_blake2/impl/blake2b-ref.c | 420 + .../Modules/_blake2/impl/blake2b-round.h | 159 + .../Modules/_blake2/impl/blake2b.c | 453 + .../Modules/_blake2/impl/blake2s-load-sse2.h | 61 + .../Modules/_blake2/impl/blake2s-load-sse41.h | 231 + .../Modules/_blake2/impl/blake2s-load-xop.h | 193 + .../Modules/_blake2/impl/blake2s-ref.c | 411 + .../Modules/_blake2/impl/blake2s-round.h | 90 + .../Modules/_blake2/impl/blake2s.c | 435 + .../Python/Python-3.6.8/Modules/_bz2module.c | 806 + .../Python-3.6.8/Modules/_codecsmodule.c | 1138 + .../Python-3.6.8/Modules/_collectionsmodule.c | 2432 + .../Python-3.6.8/Modules/_cryptmodule.c | 65 + .../Python/Python-3.6.8/Modules/_csv.c | 1680 + .../Python-3.6.8/Modules/_ctypes/_ctypes.c | 5616 ++ .../Modules/_ctypes/_ctypes_test.c | 899 + .../Modules/_ctypes/_ctypes_test.h | 1 + .../Python-3.6.8/Modules/_ctypes/callbacks.c | 588 + .../Python-3.6.8/Modules/_ctypes/callproc.c | 1848 + .../Python-3.6.8/Modules/_ctypes/cfield.c | 1668 + .../Python-3.6.8/Modules/_ctypes/ctypes.h | 371 + .../Modules/_ctypes/ctypes_dlfcn.h | 27 + .../Modules/_ctypes/darwin/LICENSE | 31 + .../Modules/_ctypes/darwin/README | 95 + .../Modules/_ctypes/darwin/README.ctypes | 11 + .../Modules/_ctypes/darwin/dlfcn.h | 84 + .../Modules/_ctypes/darwin/dlfcn_simple.c | 272 + .../Python-3.6.8/Modules/_ctypes/libffi.diff | 209 + .../Modules/_ctypes/libffi/ChangeLog | 5105 ++ .../Modules/_ctypes/libffi/ChangeLog.libffi | 584 + .../_ctypes/libffi/ChangeLog.libffi-3.1 | 6000 ++ .../Modules/_ctypes/libffi/ChangeLog.libgcj | 40 + .../Modules/_ctypes/libffi/ChangeLog.v1 | 764 + .../Modules/_ctypes/libffi/LICENSE | 21 + .../Modules/_ctypes/libffi/Makefile.am | 254 + .../Modules/_ctypes/libffi/Makefile.in | 2156 + .../Modules/_ctypes/libffi/README | 428 + .../Modules/_ctypes/libffi/acinclude.m4 | 92 + .../Modules/_ctypes/libffi/aclocal.m4 | 1961 + .../Modules/_ctypes/libffi/compile | 347 + .../Modules/_ctypes/libffi/config.guess | 1558 + .../Modules/_ctypes/libffi/config.sub | 1788 + .../Modules/_ctypes/libffi/configure | 21691 +++++ .../Modules/_ctypes/libffi/configure.ac | 630 + .../Modules/_ctypes/libffi/depcomp | 791 + .../Modules/_ctypes/libffi/doc/libffi.info | 618 + .../Modules/_ctypes/libffi/doc/libffi.texi | 625 + .../Modules/_ctypes/libffi/doc/stamp-vti | 4 + .../Modules/_ctypes/libffi/doc/version.texi | 4 + .../Modules/_ctypes/libffi/fficonfig.h.in | 210 + .../Modules/_ctypes/libffi/fficonfig.py.in | 35 + .../generate-darwin-source-and-headers.py | 209 + .../_ctypes/libffi/include/Makefile.am | 9 + .../_ctypes/libffi/include/Makefile.in | 587 + .../Modules/_ctypes/libffi/include/ffi.h.in | 476 + .../_ctypes/libffi/include/ffi_common.h | 132 + .../Modules/_ctypes/libffi/install-sh | 527 + .../Modules/_ctypes/libffi/libffi.pc.in | 11 + .../libffi/libffi.xcodeproj/project.pbxproj | 637 + .../Modules/_ctypes/libffi/libtool-ldflags | 106 + .../Modules/_ctypes/libffi/libtool-version | 29 + .../Modules/_ctypes/libffi/ltmain.sh | 10932 +++ .../Modules/_ctypes/libffi/m4/asmcfi.m4 | 13 + .../_ctypes/libffi/m4/ax_append_flag.m4 | 69 + .../Modules/_ctypes/libffi/m4/ax_cc_maxopt.m4 | 181 + .../_ctypes/libffi/m4/ax_cflags_warn_all.m4 | 122 + .../libffi/m4/ax_check_compile_flag.m4 | 72 + .../_ctypes/libffi/m4/ax_compiler_vendor.m4 | 84 + .../_ctypes/libffi/m4/ax_configure_args.m4 | 70 + .../_ctypes/libffi/m4/ax_enable_builddir.m4 | 300 + .../_ctypes/libffi/m4/ax_gcc_archflag.m4 | 225 + .../_ctypes/libffi/m4/ax_gcc_x86_cpuid.m4 | 79 + .../Modules/_ctypes/libffi/m4/libtool.m4 | 7989 ++ .../Modules/_ctypes/libffi/m4/ltoptions.m4 | 382 + .../Modules/_ctypes/libffi/m4/ltsugar.m4 | 124 + .../Modules/_ctypes/libffi/m4/ltversion.m4 | 23 + .../Modules/_ctypes/libffi/m4/lt~obsolete.m4 | 99 + .../Modules/_ctypes/libffi/man/Makefile.am | 8 + .../Modules/_ctypes/libffi/man/Makefile.in | 541 + .../Modules/_ctypes/libffi/man/ffi.3 | 41 + .../Modules/_ctypes/libffi/man/ffi_call.3 | 103 + .../Modules/_ctypes/libffi/man/ffi_prep_cif.3 | 68 + .../_ctypes/libffi/man/ffi_prep_cif_var.3 | 73 + .../Modules/_ctypes/libffi/mdate-sh | 224 + .../Modules/_ctypes/libffi/missing | 215 + .../Modules/_ctypes/libffi/msvcc.sh | 233 + .../Modules/_ctypes/libffi/src/aarch64/ffi.c | 1168 + .../_ctypes/libffi/src/aarch64/ffitarget.h | 63 + .../Modules/_ctypes/libffi/src/aarch64/sysv.S | 333 + .../Modules/_ctypes/libffi/src/alpha/ffi.c | 288 + .../_ctypes/libffi/src/alpha/ffitarget.h | 53 + .../Modules/_ctypes/libffi/src/alpha/osf.S | 387 + .../_ctypes/libffi/src/arc/arcompact.S | 135 + .../Modules/_ctypes/libffi/src/arc/ffi.c | 268 + .../_ctypes/libffi/src/arc/ffitarget.h | 53 + .../Modules/_ctypes/libffi/src/arm/ffi.c | 931 + .../_ctypes/libffi/src/arm/ffitarget.h | 71 + .../_ctypes/libffi/src/arm/gentramp.sh | 118 + .../Modules/_ctypes/libffi/src/arm/sysv.S | 491 + .../_ctypes/libffi/src/arm/trampoline.S | 4450 + .../Modules/_ctypes/libffi/src/avr32/ffi.c | 423 + .../_ctypes/libffi/src/avr32/ffitarget.h | 55 + .../Modules/_ctypes/libffi/src/avr32/sysv.S | 208 + .../Modules/_ctypes/libffi/src/bfin/ffi.c | 196 + .../_ctypes/libffi/src/bfin/ffitarget.h | 43 + .../Modules/_ctypes/libffi/src/bfin/sysv.S | 179 + .../Modules/_ctypes/libffi/src/closures.c | 660 + .../Modules/_ctypes/libffi/src/cris/ffi.c | 386 + .../_ctypes/libffi/src/cris/ffitarget.h | 56 + .../Modules/_ctypes/libffi/src/cris/sysv.S | 215 + .../Modules/_ctypes/libffi/src/debug.c | 59 + .../Modules/_ctypes/libffi/src/dlmalloc.c | 5166 ++ .../Modules/_ctypes/libffi/src/frv/eabi.S | 128 + .../Modules/_ctypes/libffi/src/frv/ffi.c | 292 + .../_ctypes/libffi/src/frv/ffitarget.h | 62 + .../Modules/_ctypes/libffi/src/ia64/ffi.c | 586 + .../_ctypes/libffi/src/ia64/ffitarget.h | 55 + .../_ctypes/libffi/src/ia64/ia64_flags.h | 40 + .../Modules/_ctypes/libffi/src/ia64/unix.S | 560 + .../Modules/_ctypes/libffi/src/java_raw_api.c | 356 + .../Modules/_ctypes/libffi/src/m32r/ffi.c | 232 + .../_ctypes/libffi/src/m32r/ffitarget.h | 53 + .../Modules/_ctypes/libffi/src/m32r/sysv.S | 121 + .../Modules/_ctypes/libffi/src/m68k/ffi.c | 362 + .../_ctypes/libffi/src/m68k/ffitarget.h | 54 + .../Modules/_ctypes/libffi/src/m68k/sysv.S | 330 + .../Modules/_ctypes/libffi/src/m88k/ffi.c | 400 + .../_ctypes/libffi/src/m88k/ffitarget.h | 49 + .../Modules/_ctypes/libffi/src/m88k/obsd.S | 209 + .../Modules/_ctypes/libffi/src/metag/ffi.c | 330 + .../_ctypes/libffi/src/metag/ffitarget.h | 53 + .../Modules/_ctypes/libffi/src/metag/sysv.S | 311 + .../_ctypes/libffi/src/microblaze/ffi.c | 321 + .../_ctypes/libffi/src/microblaze/ffitarget.h | 53 + .../_ctypes/libffi/src/microblaze/sysv.S | 302 + .../Modules/_ctypes/libffi/src/mips/ffi.c | 1050 + .../_ctypes/libffi/src/mips/ffitarget.h | 247 + .../Modules/_ctypes/libffi/src/mips/n32.S | 576 + .../Modules/_ctypes/libffi/src/mips/o32.S | 381 + .../Modules/_ctypes/libffi/src/moxie/eabi.S | 101 + .../Modules/_ctypes/libffi/src/moxie/ffi.c | 272 + .../_ctypes/libffi/src/moxie/ffitarget.h | 52 + .../Modules/_ctypes/libffi/src/nios2/ffi.c | 304 + .../_ctypes/libffi/src/nios2/ffitarget.h | 52 + .../Modules/_ctypes/libffi/src/nios2/sysv.S | 136 + .../Modules/_ctypes/libffi/src/pa/ffi.c | 719 + .../Modules/_ctypes/libffi/src/pa/ffitarget.h | 83 + .../Modules/_ctypes/libffi/src/pa/hpux32.S | 368 + .../Modules/_ctypes/libffi/src/pa/linux.S | 357 + .../Modules/_ctypes/libffi/src/powerpc/aix.S | 328 + .../_ctypes/libffi/src/powerpc/aix_closure.S | 447 + .../Modules/_ctypes/libffi/src/powerpc/asm.h | 125 + .../_ctypes/libffi/src/powerpc/darwin.S | 378 + .../libffi/src/powerpc/darwin_closure.S | 571 + .../Modules/_ctypes/libffi/src/powerpc/ffi.c | 141 + .../_ctypes/libffi/src/powerpc/ffi_darwin.c | 1359 + .../_ctypes/libffi/src/powerpc/ffi_linux64.c | 943 + .../_ctypes/libffi/src/powerpc/ffi_powerpc.h | 77 + .../_ctypes/libffi/src/powerpc/ffi_sysv.c | 931 + .../_ctypes/libffi/src/powerpc/ffitarget.h | 183 + .../_ctypes/libffi/src/powerpc/linux64.S | 260 + .../libffi/src/powerpc/linux64_closure.S | 391 + .../_ctypes/libffi/src/powerpc/ppc_closure.S | 384 + .../Modules/_ctypes/libffi/src/powerpc/sysv.S | 220 + .../Modules/_ctypes/libffi/src/prep_cif.c | 245 + .../Modules/_ctypes/libffi/src/raw_api.c | 254 + .../Modules/_ctypes/libffi/src/s390/ffi.c | 781 + .../_ctypes/libffi/src/s390/ffitarget.h | 67 + .../Modules/_ctypes/libffi/src/s390/sysv.S | 434 + .../Modules/_ctypes/libffi/src/sh/ffi.c | 717 + .../Modules/_ctypes/libffi/src/sh/ffitarget.h | 54 + .../Modules/_ctypes/libffi/src/sh/sysv.S | 850 + .../Modules/_ctypes/libffi/src/sh64/ffi.c | 469 + .../_ctypes/libffi/src/sh64/ffitarget.h | 58 + .../Modules/_ctypes/libffi/src/sh64/sysv.S | 539 + .../Modules/_ctypes/libffi/src/sparc/ffi.c | 681 + .../_ctypes/libffi/src/sparc/ffitarget.h | 73 + .../Modules/_ctypes/libffi/src/sparc/v8.S | 346 + .../Modules/_ctypes/libffi/src/sparc/v9.S | 307 + .../Modules/_ctypes/libffi/src/tile/ffi.c | 355 + .../_ctypes/libffi/src/tile/ffitarget.h | 65 + .../Modules/_ctypes/libffi/src/tile/tile.S | 360 + .../Modules/_ctypes/libffi/src/types.c | 92 + .../Modules/_ctypes/libffi/src/vax/elfbsd.S | 195 + .../Modules/_ctypes/libffi/src/vax/ffi.c | 276 + .../_ctypes/libffi/src/vax/ffitarget.h | 49 + .../Modules/_ctypes/libffi/src/x86/darwin.S | 444 + .../Modules/_ctypes/libffi/src/x86/darwin64.S | 416 + .../Modules/_ctypes/libffi/src/x86/ffi.c | 867 + .../Modules/_ctypes/libffi/src/x86/ffi64.c | 676 + .../_ctypes/libffi/src/x86/ffitarget.h | 143 + .../Modules/_ctypes/libffi/src/x86/freebsd.S | 463 + .../Modules/_ctypes/libffi/src/x86/sysv.S | 483 + .../Modules/_ctypes/libffi/src/x86/unix64.S | 432 + .../Modules/_ctypes/libffi/src/x86/win32.S | 1306 + .../Modules/_ctypes/libffi/src/x86/win64.S | 468 + .../Modules/_ctypes/libffi/src/xtensa/ffi.c | 298 + .../_ctypes/libffi/src/xtensa/ffitarget.h | 53 + .../Modules/_ctypes/libffi/src/xtensa/sysv.S | 253 + .../_ctypes/libffi/testsuite/Makefile.am | 85 + .../_ctypes/libffi/testsuite/Makefile.in | 590 + .../libffi/testsuite/config/default.exp | 1 + .../_ctypes/libffi/testsuite/lib/libffi.exp | 413 + .../libffi/testsuite/lib/target-libpath.exp | 283 + .../_ctypes/libffi/testsuite/lib/wrapper.exp | 45 + .../libffi/testsuite/libffi.call/call.exp | 28 + .../testsuite/libffi.call/closure_fn0.c | 89 + .../testsuite/libffi.call/closure_fn1.c | 81 + .../testsuite/libffi.call/closure_fn2.c | 81 + .../testsuite/libffi.call/closure_fn3.c | 82 + .../testsuite/libffi.call/closure_fn4.c | 89 + .../testsuite/libffi.call/closure_fn5.c | 92 + .../testsuite/libffi.call/closure_fn6.c | 90 + .../testsuite/libffi.call/closure_loc_fn0.c | 95 + .../testsuite/libffi.call/closure_simple.c | 55 + .../libffi/testsuite/libffi.call/cls_12byte.c | 94 + .../libffi/testsuite/libffi.call/cls_16byte.c | 95 + .../libffi/testsuite/libffi.call/cls_18byte.c | 96 + .../libffi/testsuite/libffi.call/cls_19byte.c | 102 + .../testsuite/libffi.call/cls_1_1byte.c | 89 + .../libffi/testsuite/libffi.call/cls_20byte.c | 91 + .../testsuite/libffi.call/cls_20byte1.c | 93 + .../libffi/testsuite/libffi.call/cls_24byte.c | 113 + .../libffi/testsuite/libffi.call/cls_2byte.c | 90 + .../testsuite/libffi.call/cls_3_1byte.c | 95 + .../libffi/testsuite/libffi.call/cls_3byte1.c | 90 + .../libffi/testsuite/libffi.call/cls_3byte2.c | 90 + .../testsuite/libffi.call/cls_4_1byte.c | 98 + .../libffi/testsuite/libffi.call/cls_4byte.c | 90 + .../testsuite/libffi.call/cls_5_1_byte.c | 109 + .../libffi/testsuite/libffi.call/cls_5byte.c | 98 + .../libffi/testsuite/libffi.call/cls_64byte.c | 124 + .../testsuite/libffi.call/cls_6_1_byte.c | 113 + .../libffi/testsuite/libffi.call/cls_6byte.c | 99 + .../testsuite/libffi.call/cls_7_1_byte.c | 117 + .../libffi/testsuite/libffi.call/cls_7byte.c | 97 + .../libffi/testsuite/libffi.call/cls_8byte.c | 88 + .../libffi/testsuite/libffi.call/cls_9byte1.c | 90 + .../libffi/testsuite/libffi.call/cls_9byte2.c | 91 + .../testsuite/libffi.call/cls_align_double.c | 93 + .../testsuite/libffi.call/cls_align_float.c | 91 + .../libffi.call/cls_align_longdouble.c | 92 + .../libffi.call/cls_align_longdouble_split.c | 134 + .../libffi.call/cls_align_longdouble_split2.c | 117 + .../testsuite/libffi.call/cls_align_pointer.c | 95 + .../testsuite/libffi.call/cls_align_sint16.c | 91 + .../testsuite/libffi.call/cls_align_sint32.c | 91 + .../testsuite/libffi.call/cls_align_sint64.c | 92 + .../testsuite/libffi.call/cls_align_uint16.c | 91 + .../testsuite/libffi.call/cls_align_uint32.c | 91 + .../testsuite/libffi.call/cls_align_uint64.c | 93 + .../testsuite/libffi.call/cls_dbls_struct.c | 66 + .../libffi/testsuite/libffi.call/cls_double.c | 43 + .../testsuite/libffi.call/cls_double_va.c | 61 + .../libffi/testsuite/libffi.call/cls_float.c | 42 + .../testsuite/libffi.call/cls_longdouble.c | 107 + .../testsuite/libffi.call/cls_longdouble_va.c | 61 + .../testsuite/libffi.call/cls_multi_schar.c | 74 + .../testsuite/libffi.call/cls_multi_sshort.c | 74 + .../libffi.call/cls_multi_sshortchar.c | 86 + .../testsuite/libffi.call/cls_multi_uchar.c | 91 + .../testsuite/libffi.call/cls_multi_ushort.c | 74 + .../libffi.call/cls_multi_ushortchar.c | 86 + .../testsuite/libffi.call/cls_pointer.c | 74 + .../testsuite/libffi.call/cls_pointer_stack.c | 142 + .../libffi/testsuite/libffi.call/cls_schar.c | 44 + .../libffi/testsuite/libffi.call/cls_sint.c | 42 + .../libffi/testsuite/libffi.call/cls_sshort.c | 42 + .../testsuite/libffi.call/cls_struct_va1.c | 114 + .../libffi/testsuite/libffi.call/cls_uchar.c | 42 + .../testsuite/libffi.call/cls_uchar_va.c | 44 + .../libffi/testsuite/libffi.call/cls_uint.c | 43 + .../testsuite/libffi.call/cls_uint_va.c | 45 + .../testsuite/libffi.call/cls_ulong_va.c | 45 + .../testsuite/libffi.call/cls_ulonglong.c | 47 + .../libffi/testsuite/libffi.call/cls_ushort.c | 43 + .../testsuite/libffi.call/cls_ushort_va.c | 44 + .../testsuite/libffi.call/err_bad_abi.c | 36 + .../testsuite/libffi.call/err_bad_typedef.c | 26 + .../libffi/testsuite/libffi.call/ffitest.h | 135 + .../libffi/testsuite/libffi.call/float.c | 59 + .../libffi/testsuite/libffi.call/float1.c | 58 + .../libffi/testsuite/libffi.call/float2.c | 58 + .../libffi/testsuite/libffi.call/float3.c | 72 + .../libffi/testsuite/libffi.call/float4.c | 62 + .../libffi/testsuite/libffi.call/float_va.c | 107 + .../testsuite/libffi.call/huge_struct.c | 343 + .../libffi/testsuite/libffi.call/many.c | 59 + .../libffi/testsuite/libffi.call/many2.c | 57 + .../libffi/testsuite/libffi.call/negint.c | 52 + .../testsuite/libffi.call/nested_struct.c | 152 + .../testsuite/libffi.call/nested_struct1.c | 161 + .../testsuite/libffi.call/nested_struct10.c | 133 + .../testsuite/libffi.call/nested_struct11.c | 121 + .../testsuite/libffi.call/nested_struct2.c | 110 + .../testsuite/libffi.call/nested_struct3.c | 111 + .../testsuite/libffi.call/nested_struct4.c | 111 + .../testsuite/libffi.call/nested_struct5.c | 112 + .../testsuite/libffi.call/nested_struct6.c | 131 + .../testsuite/libffi.call/nested_struct7.c | 111 + .../testsuite/libffi.call/nested_struct8.c | 131 + .../testsuite/libffi.call/nested_struct9.c | 131 + .../libffi/testsuite/libffi.call/problem1.c | 90 + .../libffi/testsuite/libffi.call/promotion.c | 59 + .../libffi/testsuite/libffi.call/pyobjc-tc.c | 114 + .../libffi/testsuite/libffi.call/return_dbl.c | 36 + .../testsuite/libffi.call/return_dbl1.c | 43 + .../testsuite/libffi.call/return_dbl2.c | 42 + .../libffi/testsuite/libffi.call/return_fl.c | 35 + .../libffi/testsuite/libffi.call/return_fl1.c | 36 + .../libffi/testsuite/libffi.call/return_fl2.c | 49 + .../libffi/testsuite/libffi.call/return_fl3.c | 42 + .../libffi/testsuite/libffi.call/return_ldl.c | 34 + .../libffi/testsuite/libffi.call/return_ll.c | 41 + .../libffi/testsuite/libffi.call/return_ll1.c | 43 + .../libffi/testsuite/libffi.call/return_sc.c | 36 + .../libffi/testsuite/libffi.call/return_sl.c | 38 + .../libffi/testsuite/libffi.call/return_uc.c | 38 + .../libffi/testsuite/libffi.call/return_ul.c | 38 + .../testsuite/libffi.call/stret_large.c | 145 + .../testsuite/libffi.call/stret_large2.c | 148 + .../testsuite/libffi.call/stret_medium.c | 124 + .../testsuite/libffi.call/stret_medium2.c | 125 + .../libffi/testsuite/libffi.call/strlen.c | 44 + .../libffi/testsuite/libffi.call/strlen2.c | 49 + .../libffi/testsuite/libffi.call/strlen3.c | 49 + .../libffi/testsuite/libffi.call/strlen4.c | 55 + .../libffi/testsuite/libffi.call/struct1.c | 67 + .../libffi/testsuite/libffi.call/struct2.c | 67 + .../libffi/testsuite/libffi.call/struct3.c | 60 + .../libffi/testsuite/libffi.call/struct4.c | 64 + .../libffi/testsuite/libffi.call/struct5.c | 66 + .../libffi/testsuite/libffi.call/struct6.c | 64 + .../libffi/testsuite/libffi.call/struct7.c | 74 + .../libffi/testsuite/libffi.call/struct8.c | 81 + .../libffi/testsuite/libffi.call/struct9.c | 68 + .../testsuite/libffi.call/testclosure.c | 70 + .../testsuite/libffi.call/uninitialized.c | 61 + .../testsuite/libffi.call/unwindtest.cc | 117 + .../libffi.call/unwindtest_ffi_call.cc | 54 + .../libffi/testsuite/libffi.call/va_1.c | 196 + .../libffi/testsuite/libffi.call/va_struct1.c | 121 + .../libffi/testsuite/libffi.call/va_struct2.c | 123 + .../libffi/testsuite/libffi.call/va_struct3.c | 125 + .../Modules/_ctypes/libffi/texinfo.tex | 10079 +++ .../Modules/_ctypes/libffi_msvc/LICENSE | 20 + .../Modules/_ctypes/libffi_msvc/README | 500 + .../Modules/_ctypes/libffi_msvc/README.ctypes | 7 + .../Modules/_ctypes/libffi_msvc/ffi.c | 530 + .../Modules/_ctypes/libffi_msvc/ffi.h | 322 + .../Modules/_ctypes/libffi_msvc/ffi_common.h | 77 + .../Modules/_ctypes/libffi_msvc/fficonfig.h | 96 + .../Modules/_ctypes/libffi_msvc/ffitarget.h | 85 + .../Modules/_ctypes/libffi_msvc/prep_cif.c | 188 + .../Modules/_ctypes/libffi_msvc/types.c | 104 + .../Modules/_ctypes/libffi_msvc/win32.c | 162 + .../Modules/_ctypes/libffi_msvc/win64.asm | 156 + .../Modules/_ctypes/libffi_osx/LICENSE | 20 + .../Modules/_ctypes/libffi_osx/README | 500 + .../Modules/_ctypes/libffi_osx/README.pyobjc | 5 + .../Modules/_ctypes/libffi_osx/ffi.c | 227 + .../Modules/_ctypes/libffi_osx/include/ffi.h | 355 + .../_ctypes/libffi_osx/include/ffi_common.h | 102 + .../_ctypes/libffi_osx/include/fficonfig.h | 150 + .../_ctypes/libffi_osx/include/ffitarget.h | 13 + .../libffi_osx/include/ppc-ffitarget.h | 104 + .../libffi_osx/include/x86-ffitarget.h | 88 + .../_ctypes/libffi_osx/powerpc/ppc-darwin.S | 365 + .../_ctypes/libffi_osx/powerpc/ppc-darwin.h | 85 + .../libffi_osx/powerpc/ppc-darwin_closure.S | 308 + .../libffi_osx/powerpc/ppc-ffi_darwin.c | 1776 + .../libffi_osx/powerpc/ppc64-darwin_closure.S | 418 + .../Modules/_ctypes/libffi_osx/types.c | 115 + .../Modules/_ctypes/libffi_osx/x86/darwin64.S | 417 + .../_ctypes/libffi_osx/x86/x86-darwin.S | 422 + .../_ctypes/libffi_osx/x86/x86-ffi64.c | 737 + .../_ctypes/libffi_osx/x86/x86-ffi_darwin.c | 438 + .../Modules/_ctypes/malloc_closure.c | 111 + .../Python-3.6.8/Modules/_ctypes/stgdict.c | 601 + .../Python-3.6.8/Modules/_curses_panel.c | 537 + .../Python-3.6.8/Modules/_cursesmodule.c | 3534 + .../Python-3.6.8/Modules/_datetimemodule.c | 6203 ++ .../Python/Python-3.6.8/Modules/_dbmmodule.c | 513 + .../Python-3.6.8/Modules/_decimal/README.txt | 46 + .../Python-3.6.8/Modules/_decimal/_decimal.c | 5931 ++ .../Modules/_decimal/docstrings.h | 884 + .../Modules/_decimal/libmpdec/README.txt | 90 + .../Modules/_decimal/libmpdec/basearith.c | 657 + .../Modules/_decimal/libmpdec/basearith.h | 222 + .../Modules/_decimal/libmpdec/bits.h | 192 + .../Modules/_decimal/libmpdec/constants.c | 132 + .../Modules/_decimal/libmpdec/constants.h | 90 + .../Modules/_decimal/libmpdec/context.c | 286 + .../Modules/_decimal/libmpdec/convolute.c | 174 + .../Modules/_decimal/libmpdec/convolute.h | 50 + .../Modules/_decimal/libmpdec/crt.c | 179 + .../Modules/_decimal/libmpdec/crt.h | 47 + .../Modules/_decimal/libmpdec/difradix2.c | 173 + .../Modules/_decimal/libmpdec/difradix2.h | 48 + .../Modules/_decimal/libmpdec/fnt.c | 81 + .../Modules/_decimal/libmpdec/fnt.h | 49 + .../Modules/_decimal/libmpdec/fourstep.c | 257 + .../Modules/_decimal/libmpdec/fourstep.h | 48 + .../Modules/_decimal/libmpdec/io.c | 1583 + .../Modules/_decimal/libmpdec/io.h | 59 + .../libmpdec/literature/REFERENCES.txt | 51 + .../_decimal/libmpdec/literature/bignum.txt | 83 + .../_decimal/libmpdec/literature/fnt.py | 208 + .../libmpdec/literature/matrix-transform.txt | 256 + .../libmpdec/literature/mulmod-64.txt | 127 + .../libmpdec/literature/mulmod-ppro.txt | 269 + .../_decimal/libmpdec/literature/six-step.txt | 63 + .../libmpdec/literature/umodarith.lisp | 692 + .../Modules/_decimal/libmpdec/memory.c | 297 + .../Modules/_decimal/libmpdec/mpalloc.h | 51 + .../Modules/_decimal/libmpdec/mpdecimal.c | 8411 ++ .../Modules/_decimal/libmpdec/mpdecimal.h | 847 + .../Modules/_decimal/libmpdec/numbertheory.c | 132 + .../Modules/_decimal/libmpdec/numbertheory.h | 78 + .../Modules/_decimal/libmpdec/sixstep.c | 214 + .../Modules/_decimal/libmpdec/sixstep.h | 48 + .../Modules/_decimal/libmpdec/transpose.c | 276 + .../Modules/_decimal/libmpdec/transpose.h | 62 + .../Modules/_decimal/libmpdec/typearith.h | 669 + .../Modules/_decimal/libmpdec/umodarith.h | 650 + .../Modules/_decimal/libmpdec/vccompat.h | 57 + .../Modules/_decimal/libmpdec/vcdiv64.asm | 48 + .../Modules/_decimal/libmpdec/vcstdint.h | 232 + .../Modules/_decimal/tests/README.txt | 15 + .../Modules/_decimal/tests/bench.py | 133 + .../Modules/_decimal/tests/bignum.py | 42 + .../Modules/_decimal/tests/deccheck.py | 1100 + .../Modules/_decimal/tests/formathelper.py | 342 + .../Modules/_decimal/tests/randdec.py | 575 + .../Modules/_decimal/tests/randfloat.py | 250 + .../_decimal/tests/runall-memorydebugger.sh | 176 + .../Modules/_decimal/tests/runall.bat | 111 + .../Python-3.6.8/Modules/_elementtree.c | 4064 + .../Python-3.6.8/Modules/_functoolsmodule.c | 1278 + .../Python/Python-3.6.8/Modules/_gdbmmodule.c | 678 + .../Python-3.6.8/Modules/_hashopenssl.c | 1069 + .../Python-3.6.8/Modules/_heapqmodule.c | 647 + .../Python-3.6.8/Modules/_io/_iomodule.c | 804 + .../Python-3.6.8/Modules/_io/_iomodule.h | 188 + .../Python-3.6.8/Modules/_io/bufferedio.c | 2760 + .../Python/Python-3.6.8/Modules/_io/bytesio.c | 1184 + .../Modules/_io/clinic/_iomodule.c.h | 161 + .../Modules/_io/clinic/bufferedio.c.h | 478 + .../Modules/_io/clinic/bytesio.c.h | 431 + .../Modules/_io/clinic/fileio.c.h | 376 + .../Modules/_io/clinic/iobase.c.h | 282 + .../Modules/_io/clinic/stringio.c.h | 292 + .../Modules/_io/clinic/textio.c.h | 467 + .../Modules/_io/clinic/winconsoleio.c.h | 331 + .../Python/Python-3.6.8/Modules/_io/fileio.c | 1239 + .../Python/Python-3.6.8/Modules/_io/iobase.c | 1044 + .../Python-3.6.8/Modules/_io/stringio.c | 1087 + .../Python/Python-3.6.8/Modules/_io/textio.c | 2980 + .../Python-3.6.8/Modules/_io/winconsoleio.c | 1194 + .../Python/Python-3.6.8/Modules/_json.c | 1948 + .../Python-3.6.8/Modules/_localemodule.c | 770 + .../Python/Python-3.6.8/Modules/_lsprof.c | 891 + .../Python/Python-3.6.8/Modules/_lzmamodule.c | 1529 + .../Python/Python-3.6.8/Modules/_math.c | 257 + .../Python/Python-3.6.8/Modules/_math.h | 41 + .../_multiprocessing/multiprocessing.c | 216 + .../_multiprocessing/multiprocessing.h | 103 + .../Modules/_multiprocessing/semaphore.c | 679 + .../Python/Python-3.6.8/Modules/_opcode.c | 78 + .../Python/Python-3.6.8/Modules/_operator.c | 1232 + .../Python/Python-3.6.8/Modules/_pickle.c | 7421 ++ .../Python-3.6.8/Modules/_posixsubprocess.c | 812 + .../Python-3.6.8/Modules/_randommodule.c | 548 + .../Python/Python-3.6.8/Modules/_scproxy.c | 263 + .../Python-3.6.8/Modules/_sha3/README.txt | 11 + .../Python-3.6.8/Modules/_sha3/cleanup.py | 50 + .../Modules/_sha3/clinic/sha3module.c.h | 85 + .../Modules/_sha3/kcp/KeccakHash.c | 82 + .../Modules/_sha3/kcp/KeccakHash.h | 114 + .../Modules/_sha3/kcp/KeccakP-1600-64.macros | 2208 + .../_sha3/kcp/KeccakP-1600-SnP-opt32.h | 37 + .../_sha3/kcp/KeccakP-1600-SnP-opt64.h | 49 + .../Modules/_sha3/kcp/KeccakP-1600-SnP.h | 7 + .../_sha3/kcp/KeccakP-1600-inplace32BI.c | 1162 + .../_sha3/kcp/KeccakP-1600-opt64-config.h | 3 + .../Modules/_sha3/kcp/KeccakP-1600-opt64.c | 474 + .../_sha3/kcp/KeccakP-1600-unrolling.macros | 185 + .../Modules/_sha3/kcp/KeccakSponge.c | 92 + .../Modules/_sha3/kcp/KeccakSponge.h | 172 + .../Modules/_sha3/kcp/KeccakSponge.inc | 332 + .../Modules/_sha3/kcp/PlSnP-Fallback.inc | 257 + .../Modules/_sha3/kcp/SnP-Relaned.h | 134 + .../Python-3.6.8/Modules/_sha3/kcp/align.h | 35 + .../Python-3.6.8/Modules/_sha3/sha3module.c | 770 + .../Python-3.6.8/Modules/_sqlite/cache.c | 356 + .../Python-3.6.8/Modules/_sqlite/cache.h | 73 + .../Python-3.6.8/Modules/_sqlite/connection.c | 1722 + .../Python-3.6.8/Modules/_sqlite/connection.h | 127 + .../Python-3.6.8/Modules/_sqlite/cursor.c | 1020 + .../Python-3.6.8/Modules/_sqlite/cursor.h | 69 + .../Modules/_sqlite/microprotocols.c | 146 + .../Modules/_sqlite/microprotocols.h | 55 + .../Python-3.6.8/Modules/_sqlite/module.c | 480 + .../Python-3.6.8/Modules/_sqlite/module.h | 52 + .../Modules/_sqlite/prepare_protocol.c | 83 + .../Modules/_sqlite/prepare_protocol.h | 41 + .../Python/Python-3.6.8/Modules/_sqlite/row.c | 281 + .../Python/Python-3.6.8/Modules/_sqlite/row.h | 39 + .../Python-3.6.8/Modules/_sqlite/statement.c | 544 + .../Python-3.6.8/Modules/_sqlite/statement.h | 60 + .../Python-3.6.8/Modules/_sqlite/util.c | 153 + .../Python-3.6.8/Modules/_sqlite/util.h | 42 + .../Python/Python-3.6.8/Modules/_sre.c | 2971 + .../Python/Python-3.6.8/Modules/_ssl.c | 5717 ++ .../Python/Python-3.6.8/Modules/_ssl_data.h | 1948 + .../Python/Python-3.6.8/Modules/_stat.c | 599 + .../Python/Python-3.6.8/Modules/_struct.c | 2364 + .../Python/Python-3.6.8/Modules/_testbuffer.c | 2894 + .../Python-3.6.8/Modules/_testcapimodule.c | 5002 ++ .../Modules/_testimportmultiple.c | 57 + .../Python-3.6.8/Modules/_testmultiphase.c | 670 + .../Python-3.6.8/Modules/_threadmodule.c | 1414 + .../Python/Python-3.6.8/Modules/_tkinter.c | 3659 + .../Python-3.6.8/Modules/_tracemalloc.c | 1827 + .../Python/Python-3.6.8/Modules/_weakref.c | 174 + .../Python/Python-3.6.8/Modules/_winapi.c | 1604 + .../Python/Python-3.6.8/Modules/addrinfo.h | 168 + .../Python/Python-3.6.8/Modules/ar_beos | 73 + .../Python/Python-3.6.8/Modules/arraymodule.c | 3039 + .../Python-3.6.8/Modules/atexitmodule.c | 346 + .../Python/Python-3.6.8/Modules/audioop.c | 1921 + .../Python/Python-3.6.8/Modules/binascii.c | 1586 + .../Python-3.6.8/Modules/cjkcodecs/README | 79 + .../Modules/cjkcodecs/_codecs_cn.c | 464 + .../Modules/cjkcodecs/_codecs_hk.c | 191 + .../Modules/cjkcodecs/_codecs_iso2022.c | 1143 + .../Modules/cjkcodecs/_codecs_jp.c | 760 + .../Modules/cjkcodecs/_codecs_kr.c | 468 + .../Modules/cjkcodecs/_codecs_tw.c | 143 + .../Modules/cjkcodecs/alg_jisx0201.h | 65 + .../Modules/cjkcodecs/cjkcodecs.h | 417 + .../cjkcodecs/clinic/multibytecodec.c.h | 333 + .../Modules/cjkcodecs/emu_jisx0213_2000.h | 54 + .../Modules/cjkcodecs/mappings_cn.h | 4103 + .../Modules/cjkcodecs/mappings_hk.h | 2378 + .../cjkcodecs/mappings_jisx0213_pair.h | 59 + .../Modules/cjkcodecs/mappings_jp.h | 4765 + .../Modules/cjkcodecs/mappings_kr.h | 3251 + .../Modules/cjkcodecs/mappings_tw.h | 2633 + .../Modules/cjkcodecs/multibytecodec.c | 1928 + .../Modules/cjkcodecs/multibytecodec.h | 136 + .../Modules/clinic/_asynciomodule.c.h | 520 + .../Modules/clinic/_bz2module.c.h | 177 + .../Modules/clinic/_codecsmodule.c.h | 1539 + .../Modules/clinic/_cryptmodule.c.h | 38 + .../Modules/clinic/_cursesmodule.c.h | 75 + .../Modules/clinic/_datetimemodule.c.h | 39 + .../Modules/clinic/_dbmmodule.c.h | 144 + .../Modules/clinic/_elementtree.c.h | 705 + .../Modules/clinic/_gdbmmodule.c.h | 257 + .../Modules/clinic/_hashopenssl.c.h | 60 + .../Modules/clinic/_lzmamodule.c.h | 259 + .../Python-3.6.8/Modules/clinic/_opcode.c.h | 38 + .../Python-3.6.8/Modules/clinic/_pickle.c.h | 563 + .../Python-3.6.8/Modules/clinic/_sre.c.h | 731 + .../Python-3.6.8/Modules/clinic/_ssl.c.h | 1189 + .../Python-3.6.8/Modules/clinic/_tkinter.c.h | 641 + .../Python-3.6.8/Modules/clinic/_weakref.c.h | 62 + .../Python-3.6.8/Modules/clinic/_winapi.c.h | 892 + .../Modules/clinic/arraymodule.c.h | 508 + .../Python-3.6.8/Modules/clinic/audioop.c.h | 931 + .../Python-3.6.8/Modules/clinic/binascii.c.h | 553 + .../Modules/clinic/cmathmodule.c.h | 885 + .../Modules/clinic/fcntlmodule.c.h | 189 + .../Python-3.6.8/Modules/clinic/grpmodule.c.h | 89 + .../Python-3.6.8/Modules/clinic/md5module.c.h | 97 + .../Modules/clinic/posixmodule.c.h | 6153 ++ .../Python-3.6.8/Modules/clinic/pwdmodule.c.h | 72 + .../Python-3.6.8/Modules/clinic/pyexpat.c.h | 292 + .../Modules/clinic/sha1module.c.h | 97 + .../Modules/clinic/sha256module.c.h | 127 + .../Modules/clinic/sha512module.c.h | 127 + .../Modules/clinic/signalmodule.c.h | 442 + .../Modules/clinic/spwdmodule.c.h | 69 + .../Modules/clinic/unicodedata.c.h | 382 + .../Modules/clinic/zlibmodule.c.h | 474 + .../Python/Python-3.6.8/Modules/cmathmodule.c | 1413 + .../Python/Python-3.6.8/Modules/config.c.in | 67 + .../Python/Python-3.6.8/Modules/errnomodule.c | 935 + .../Python/Python-3.6.8/Modules/expat/COPYING | 21 + .../Python/Python-3.6.8/Modules/expat/ascii.h | 120 + .../Python-3.6.8/Modules/expat/asciitab.h | 64 + .../Python/Python-3.6.8/Modules/expat/expat.h | 1085 + .../Python-3.6.8/Modules/expat/expat_config.h | 19 + .../Modules/expat/expat_external.h | 166 + .../Python-3.6.8/Modules/expat/iasciitab.h | 65 + .../Python-3.6.8/Modules/expat/internal.h | 124 + .../Python-3.6.8/Modules/expat/latin1tab.h | 64 + .../Python-3.6.8/Modules/expat/loadlibrary.c | 143 + .../Python-3.6.8/Modules/expat/nametab.h | 182 + .../Python-3.6.8/Modules/expat/pyexpatns.h | 125 + .../Python-3.6.8/Modules/expat/siphash.h | 391 + .../Python-3.6.8/Modules/expat/utf8tab.h | 64 + .../Python-3.6.8/Modules/expat/winconfig.h | 63 + .../Python-3.6.8/Modules/expat/xmlparse.c | 7217 ++ .../Python-3.6.8/Modules/expat/xmlrole.c | 1386 + .../Python-3.6.8/Modules/expat/xmlrole.h | 142 + .../Python-3.6.8/Modules/expat/xmltok.c | 1809 + .../Python-3.6.8/Modules/expat/xmltok.h | 345 + .../Python-3.6.8/Modules/expat/xmltok_impl.c | 1763 + .../Python-3.6.8/Modules/expat/xmltok_impl.h | 73 + .../Python-3.6.8/Modules/expat/xmltok_ns.c | 142 + .../Python-3.6.8/Modules/faulthandler.c | 1413 + .../Python/Python-3.6.8/Modules/fcntlmodule.c | 655 + .../Python-3.6.8/Modules/fpectlmodule.c | 277 + .../Python-3.6.8/Modules/fpetestmodule.c | 200 + .../Python-3.6.8/Modules/gc_weakref.txt | 219 + .../Python/Python-3.6.8/Modules/gcmodule.c | 1800 + .../Python/Python-3.6.8/Modules/getaddrinfo.c | 638 + .../Python-3.6.8/Modules/getbuildinfo.c | 67 + .../Python/Python-3.6.8/Modules/getnameinfo.c | 214 + .../Python/Python-3.6.8/Modules/getpath.c | 879 + .../Python/Python-3.6.8/Modules/grpmodule.c | 256 + .../Python/Python-3.6.8/Modules/hashlib.h | 64 + .../Python/Python-3.6.8/Modules/hashtable.c | 524 + .../Python/Python-3.6.8/Modules/hashtable.h | 211 + .../Python-3.6.8/Modules/itertoolsmodule.c | 4676 + .../Python/Python-3.6.8/Modules/ld_so_aix.in | 195 + .../Python/Python-3.6.8/Modules/ld_so_beos | 78 + .../Python/Python-3.6.8/Modules/main.c | 868 + .../Python/Python-3.6.8/Modules/makesetup | 296 + .../Python/Python-3.6.8/Modules/makexp_aix | 81 + .../Python/Python-3.6.8/Modules/mathmodule.c | 2155 + .../Python/Python-3.6.8/Modules/md5module.c | 585 + .../Python/Python-3.6.8/Modules/mmapmodule.c | 1490 + .../Python/Python-3.6.8/Modules/nismodule.c | 469 + .../Python/Python-3.6.8/Modules/ossaudiodev.c | 1317 + .../Python/Python-3.6.8/Modules/overlapped.c | 1346 + .../Python-3.6.8/Modules/parsermodule.c | 1228 + .../Python/Python-3.6.8/Modules/posixmodule.c | 13227 +++ .../Python/Python-3.6.8/Modules/posixmodule.h | 25 + .../Python/Python-3.6.8/Modules/pwdmodule.c | 247 + .../Python/Python-3.6.8/Modules/pyexpat.c | 1998 + .../Python/Python-3.6.8/Modules/readline.c | 1431 + .../Python/Python-3.6.8/Modules/resource.c | 448 + .../Python-3.6.8/Modules/rotatingtree.c | 121 + .../Python-3.6.8/Modules/rotatingtree.h | 27 + .../Python-3.6.8/Modules/selectmodule.c | 2638 + .../Python/Python-3.6.8/Modules/sha1module.c | 562 + .../Python-3.6.8/Modules/sha256module.c | 730 + .../Python-3.6.8/Modules/sha512module.c | 803 + .../Python-3.6.8/Modules/signalmodule.c | 1653 + .../Python-3.6.8/Modules/socketmodule.c | 7808 ++ .../Python-3.6.8/Modules/socketmodule.h | 280 + .../Python/Python-3.6.8/Modules/spwdmodule.c | 230 + .../Python/Python-3.6.8/Modules/sre.h | 96 + .../Python-3.6.8/Modules/sre_constants.h | 89 + .../Python/Python-3.6.8/Modules/sre_lib.h | 1369 + .../Python-3.6.8/Modules/symtablemodule.c | 102 + .../Python-3.6.8/Modules/syslogmodule.c | 342 + .../Python/Python-3.6.8/Modules/termios.c | 971 + .../Python-3.6.8/Modules/testcapi_long.h | 207 + .../Python/Python-3.6.8/Modules/timemodule.c | 1519 + .../Python/Python-3.6.8/Modules/tkappinit.c | 166 + .../Python/Python-3.6.8/Modules/tkinter.h | 27 + .../Python/Python-3.6.8/Modules/unicodedata.c | 1379 + .../Python-3.6.8/Modules/unicodedata_db.h | 7378 ++ .../Python-3.6.8/Modules/unicodename_db.h | 25537 ++++++ .../Python/Python-3.6.8/Modules/winreparse.h | 54 + .../Python/Python-3.6.8/Modules/xxlimited.c | 304 + .../Python/Python-3.6.8/Modules/xxmodule.c | 400 + .../Python/Python-3.6.8/Modules/xxsubtype.c | 314 + .../Python/Python-3.6.8/Modules/zipimport.c | 1589 + .../Python-3.6.8/Modules/zlib/ChangeLog | 1515 + .../Python/Python-3.6.8/Modules/zlib/FAQ | 368 + .../Python/Python-3.6.8/Modules/zlib/INDEX | 68 + .../Python-3.6.8/Modules/zlib/Makefile.in | 410 + .../Python/Python-3.6.8/Modules/zlib/README | 115 + .../Python-3.6.8/Modules/zlib/adler32.c | 186 + .../Python-3.6.8/Modules/zlib/algorithm.txt | 209 + .../Python-3.6.8/Modules/zlib/compress.c | 86 + .../Python-3.6.8/Modules/zlib/configure | 921 + .../Python/Python-3.6.8/Modules/zlib/crc32.c | 442 + .../Python/Python-3.6.8/Modules/zlib/crc32.h | 441 + .../Python-3.6.8/Modules/zlib/deflate.c | 2163 + .../Python-3.6.8/Modules/zlib/deflate.h | 349 + .../Python-3.6.8/Modules/zlib/example.c | 601 + .../Python-3.6.8/Modules/zlib/gzclose.c | 25 + .../Python/Python-3.6.8/Modules/zlib/gzguts.h | 218 + .../Python/Python-3.6.8/Modules/zlib/gzlib.c | 637 + .../Python/Python-3.6.8/Modules/zlib/gzread.c | 654 + .../Python-3.6.8/Modules/zlib/gzwrite.c | 665 + .../Python-3.6.8/Modules/zlib/infback.c | 640 + .../Python-3.6.8/Modules/zlib/inffast.c | 323 + .../Python-3.6.8/Modules/zlib/inffast.h | 11 + .../Python-3.6.8/Modules/zlib/inffixed.h | 94 + .../Python-3.6.8/Modules/zlib/inflate.c | 1561 + .../Python-3.6.8/Modules/zlib/inflate.h | 125 + .../Python-3.6.8/Modules/zlib/inftrees.c | 304 + .../Python-3.6.8/Modules/zlib/inftrees.h | 62 + .../Python-3.6.8/Modules/zlib/make_vms.com | 867 + .../Python-3.6.8/Modules/zlib/minigzip.c | 651 + .../Python/Python-3.6.8/Modules/zlib/trees.c | 1203 + .../Python/Python-3.6.8/Modules/zlib/trees.h | 128 + .../Python-3.6.8/Modules/zlib/uncompr.c | 93 + .../Python/Python-3.6.8/Modules/zlib/zconf.h | 534 + .../Python-3.6.8/Modules/zlib/zconf.h.cmakein | 536 + .../Python-3.6.8/Modules/zlib/zconf.h.in | 534 + .../Python/Python-3.6.8/Modules/zlib/zlib.3 | 149 + .../Python/Python-3.6.8/Modules/zlib/zlib.h | 1912 + .../Python/Python-3.6.8/Modules/zlib/zlib.map | 94 + .../Python-3.6.8/Modules/zlib/zlib.pc.in | 13 + .../Python/Python-3.6.8/Modules/zlib/zutil.c | 325 + .../Python/Python-3.6.8/Modules/zlib/zutil.h | 271 + .../Python/Python-3.6.8/Modules/zlibmodule.c | 1413 + .../Python/Python-3.6.8/Objects/README | 1 + .../Python/Python-3.6.8/Objects/abstract.c | 3246 + .../Python/Python-3.6.8/Objects/accu.c | 115 + .../Python/Python-3.6.8/Objects/boolobject.c | 184 + .../Python-3.6.8/Objects/bytearrayobject.c | 2437 + .../Python-3.6.8/Objects/bytes_methods.c | 821 + .../Python/Python-3.6.8/Objects/bytesobject.c | 3470 + .../Python/Python-3.6.8/Objects/capsule.c | 324 + .../Python/Python-3.6.8/Objects/cellobject.c | 179 + .../Python/Python-3.6.8/Objects/classobject.c | 645 + .../Objects/clinic/bytearrayobject.c.h | 715 + .../Objects/clinic/bytesobject.c.h | 502 + .../Objects/clinic/dictobject.c.h | 43 + .../Objects/clinic/unicodeobject.c.h | 42 + .../Python/Python-3.6.8/Objects/codeobject.c | 940 + .../Python-3.6.8/Objects/complexobject.c | 1142 + .../Python/Python-3.6.8/Objects/descrobject.c | 1638 + .../Python/Python-3.6.8/Objects/dict-common.h | 69 + .../Python/Python-3.6.8/Objects/dictnotes.txt | 149 + .../Python/Python-3.6.8/Objects/dictobject.c | 4472 + .../Python/Python-3.6.8/Objects/enumobject.c | 431 + .../Python/Python-3.6.8/Objects/exceptions.c | 3012 + .../Python/Python-3.6.8/Objects/fileobject.c | 531 + .../Python/Python-3.6.8/Objects/floatobject.c | 2581 + .../Python/Python-3.6.8/Objects/frameobject.c | 1039 + .../Python/Python-3.6.8/Objects/funcobject.c | 1031 + .../Python/Python-3.6.8/Objects/genobject.c | 2078 + .../Python/Python-3.6.8/Objects/iterobject.c | 287 + .../Python/Python-3.6.8/Objects/listobject.c | 2991 + .../Python/Python-3.6.8/Objects/listsort.txt | 755 + .../Python-3.6.8/Objects/lnotab_notes.txt | 135 + .../Python/Python-3.6.8/Objects/longobject.c | 5569 ++ .../Python-3.6.8/Objects/memoryobject.c | 3114 + .../Python-3.6.8/Objects/methodobject.c | 550 + .../Python-3.6.8/Objects/moduleobject.c | 802 + .../Python-3.6.8/Objects/namespaceobject.c | 266 + .../Python/Python-3.6.8/Objects/object.c | 2080 + .../Python/Python-3.6.8/Objects/obmalloc.c | 2412 + .../Python/Python-3.6.8/Objects/odictobject.c | 2388 + .../Python/Python-3.6.8/Objects/rangeobject.c | 1298 + .../Python/Python-3.6.8/Objects/setobject.c | 2574 + .../Python/Python-3.6.8/Objects/sliceobject.c | 671 + .../Python-3.6.8/Objects/stringlib/README.txt | 40 + .../Python-3.6.8/Objects/stringlib/asciilib.h | 29 + .../Python-3.6.8/Objects/stringlib/codecs.h | 822 + .../Python-3.6.8/Objects/stringlib/count.h | 27 + .../Python-3.6.8/Objects/stringlib/ctype.h | 110 + .../Python-3.6.8/Objects/stringlib/eq.h | 25 + .../Objects/stringlib/fastsearch.h | 250 + .../Python-3.6.8/Objects/stringlib/find.h | 119 + .../Objects/stringlib/find_max_char.h | 134 + .../Python-3.6.8/Objects/stringlib/join.h | 140 + .../Objects/stringlib/localeutil.h | 82 + .../Objects/stringlib/partition.h | 116 + .../Python-3.6.8/Objects/stringlib/replace.h | 53 + .../Python-3.6.8/Objects/stringlib/split.h | 390 + .../Objects/stringlib/stringdefs.h | 28 + .../Objects/stringlib/transmogrify.h | 701 + .../Python-3.6.8/Objects/stringlib/ucs1lib.h | 30 + .../Python-3.6.8/Objects/stringlib/ucs2lib.h | 29 + .../Python-3.6.8/Objects/stringlib/ucs4lib.h | 29 + .../Python-3.6.8/Objects/stringlib/undef.h | 11 + .../Objects/stringlib/unicode_format.h | 1288 + .../Objects/stringlib/unicodedefs.h | 32 + .../Python/Python-3.6.8/Objects/structseq.c | 424 + .../Python/Python-3.6.8/Objects/tupleobject.c | 1073 + .../Python/Python-3.6.8/Objects/typeobject.c | 7625 ++ .../Python/Python-3.6.8/Objects/typeslots.inc | 81 + .../Python/Python-3.6.8/Objects/typeslots.py | 43 + .../Python-3.6.8/Objects/unicodectype.c | 297 + .../Python-3.6.8/Objects/unicodeobject.c | 15773 ++++ .../Python-3.6.8/Objects/unicodetype_db.h | 5799 ++ .../Python-3.6.8/Objects/weakrefobject.c | 961 + .../Python/Python-3.6.8/PC/WinMain.c | 16 + .../Python/Python-3.6.8/PC/_findvs.cpp | 259 + .../Python/Python-3.6.8/PC/_msi.c | 1120 + .../Python/Python-3.6.8/PC/_testconsole.c | 131 + .../PC/bdist_wininst/PythonPowered.bmp | Bin 0 -> 2582 bytes .../Python-3.6.8/PC/bdist_wininst/README.txt | 5 + .../Python-3.6.8/PC/bdist_wininst/archive.h | 104 + .../PC/bdist_wininst/bdist_wininst.vcxproj | 108 + .../bdist_wininst.vcxproj.filters | 61 + .../Python-3.6.8/PC/bdist_wininst/build.bat | 19 + .../Python-3.6.8/PC/bdist_wininst/extract.c | 320 + .../Python-3.6.8/PC/bdist_wininst/install.c | 2700 + .../Python-3.6.8/PC/bdist_wininst/install.rc | 77 + .../Python-3.6.8/PC/bdist_wininst/resource.h | 31 + .../Python-3.6.8/PC/clinic/_testconsole.c.h | 82 + .../Python-3.6.8/PC/clinic/msvcrtmodule.c.h | 572 + .../Python/Python-3.6.8/PC/clinic/winreg.c.h | 1094 + .../Python-3.6.8/PC/clinic/winsound.c.h | 109 + .../Python/Python-3.6.8/PC/config.c | 170 + .../Python/Python-3.6.8/PC/dl_nt.c | 122 + .../Python/Python-3.6.8/PC/dllbase_nt.txt | 77 + .../Python/Python-3.6.8/PC/empty.c | 6 + .../Python/Python-3.6.8/PC/errmap.h | 80 + .../Python/Python-3.6.8/PC/errmap.mak | 5 + .../Python-3.6.8/PC/external/Externals.txt | 3 + .../PC/external/include/Setup.Configuration.h | 827 + ...isualStudio.Setup.Configuration.Native.lib | Bin 0 -> 2384 bytes ...isualStudio.Setup.Configuration.Native.lib | Bin 0 -> 2392 bytes ...isualStudio.Setup.Configuration.Native.lib | Bin 0 -> 2384 bytes ...isualStudio.Setup.Configuration.Native.lib | Bin 0 -> 2392 bytes .../Python/Python-3.6.8/PC/frozen_dllmain.c | 134 + .../Python/Python-3.6.8/PC/generrmap.c | 32 + .../Python/Python-3.6.8/PC/getpathp.c | 1003 + .../Python-3.6.8/PC/icons/launcher.icns | Bin 0 -> 264476 bytes .../Python/Python-3.6.8/PC/icons/launcher.ico | Bin 0 -> 87263 bytes .../Python/Python-3.6.8/PC/icons/launcher.svg | 1 + .../Python/Python-3.6.8/PC/icons/py.icns | Bin 0 -> 195977 bytes .../Python/Python-3.6.8/PC/icons/py.ico | Bin 0 -> 75809 bytes .../Python/Python-3.6.8/PC/icons/py.svg | 1 + .../Python/Python-3.6.8/PC/icons/pyc.icns | Bin 0 -> 212125 bytes .../Python/Python-3.6.8/PC/icons/pyc.ico | Bin 0 -> 78396 bytes .../Python/Python-3.6.8/PC/icons/pyc.svg | 1 + .../Python/Python-3.6.8/PC/icons/pyd.icns | Bin 0 -> 223199 bytes .../Python/Python-3.6.8/PC/icons/pyd.ico | Bin 0 -> 83351 bytes .../Python/Python-3.6.8/PC/icons/pyd.svg | 1 + .../Python/Python-3.6.8/PC/icons/python.icns | Bin 0 -> 201868 bytes .../Python/Python-3.6.8/PC/icons/python.ico | Bin 0 -> 77671 bytes .../Python/Python-3.6.8/PC/icons/python.svg | 1 + .../Python/Python-3.6.8/PC/icons/pythonw.icns | Bin 0 -> 193222 bytes .../Python/Python-3.6.8/PC/icons/pythonw.ico | Bin 0 -> 76102 bytes .../Python/Python-3.6.8/PC/icons/pythonw.svg | 1 + .../Python/Python-3.6.8/PC/icons/setup.icns | Bin 0 -> 220699 bytes .../Python/Python-3.6.8/PC/icons/setup.ico | Bin 0 -> 78328 bytes .../Python/Python-3.6.8/PC/icons/setup.svg | 1 + .../PC/invalid_parameter_handler.c | 22 + .../Python/Python-3.6.8/PC/launcher.c | 1575 + .../Python/Python-3.6.8/PC/msvcrtmodule.c | 606 + .../Python/Python-3.6.8/PC/pylauncher.rc | 54 + .../Python/Python-3.6.8/PC/pyshellext.cpp | 610 + .../Python/Python-3.6.8/PC/pyshellext.def | 6 + .../Python/Python-3.6.8/PC/pyshellext.idl | 12 + .../Python/Python-3.6.8/PC/pyshellext.rc | 46 + .../Python/Python-3.6.8/PC/pyshellext_d.def | 6 + .../Python/Python-3.6.8/PC/python.manifest | 30 + .../Python/Python-3.6.8/PC/python3.def | 789 + .../Python/Python-3.6.8/PC/python3dll.c | 9 + .../Python/Python-3.6.8/PC/python_exe.rc | 49 + .../Python/Python-3.6.8/PC/python_nt.rc | 52 + .../Python/Python-3.6.8/PC/python_ver_rc.h | 34 + .../Python/Python-3.6.8/PC/pythonw_exe.rc | 49 + .../Python/Python-3.6.8/PC/readme.txt | 81 + .../Python/Python-3.6.8/PC/sqlite3.rc | 49 + .../Python/Python-3.6.8/PC/testpy.py | 30 + .../Python-3.6.8/PC/validate_ucrtbase.py | 89 + .../Python/Python-3.6.8/PC/winreg.c | 1960 + .../Python/Python-3.6.8/PC/winsound.c | 250 + .../Python-3.6.8/PCbuild/_asyncio.vcxproj | 77 + .../PCbuild/_asyncio.vcxproj.filters | 16 + .../Python/Python-3.6.8/PCbuild/_bz2.vcxproj | 98 + .../Python-3.6.8/PCbuild/_bz2.vcxproj.filters | 48 + .../Python-3.6.8/PCbuild/_ctypes.vcxproj | 110 + .../PCbuild/_ctypes.vcxproj.filters | 65 + .../Python-3.6.8/PCbuild/_ctypes_test.vcxproj | 80 + .../PCbuild/_ctypes_test.vcxproj.filters | 21 + .../Python-3.6.8/PCbuild/_decimal.vcxproj | 127 + .../PCbuild/_decimal.vcxproj.filters | 116 + .../PCbuild/_distutils_findvs.vcxproj | 83 + .../PCbuild/_distutils_findvs.vcxproj.filters | 16 + .../Python-3.6.8/PCbuild/_elementtree.vcxproj | 107 + .../PCbuild/_elementtree.vcxproj.filters | 75 + .../PCbuild/_freeze_importlib.vcxproj | 119 + .../PCbuild/_freeze_importlib.vcxproj.filters | 27 + .../Python-3.6.8/PCbuild/_hashlib.vcxproj | 93 + .../PCbuild/_hashlib.vcxproj.filters | 13 + .../Python/Python-3.6.8/PCbuild/_lzma.vcxproj | 90 + .../PCbuild/_lzma.vcxproj.filters | 13 + .../Python/Python-3.6.8/PCbuild/_msi.vcxproj | 83 + .../Python-3.6.8/PCbuild/_msi.vcxproj.filters | 13 + .../PCbuild/_multiprocessing.vcxproj | 87 + .../PCbuild/_multiprocessing.vcxproj.filters | 24 + .../Python-3.6.8/PCbuild/_overlapped.vcxproj | 83 + .../PCbuild/_overlapped.vcxproj.filters | 13 + .../Python-3.6.8/PCbuild/_socket.vcxproj | 86 + .../PCbuild/_socket.vcxproj.filters | 21 + .../Python-3.6.8/PCbuild/_sqlite3.vcxproj | 109 + .../PCbuild/_sqlite3.vcxproj.filters | 69 + .../Python/Python-3.6.8/PCbuild/_ssl.vcxproj | 97 + .../Python-3.6.8/PCbuild/_ssl.vcxproj.filters | 13 + .../Python-3.6.8/PCbuild/_testbuffer.vcxproj | 82 + .../PCbuild/_testbuffer.vcxproj.filters | 13 + .../Python-3.6.8/PCbuild/_testcapi.vcxproj | 83 + .../PCbuild/_testcapi.vcxproj.filters | 13 + .../Python-3.6.8/PCbuild/_testconsole.vcxproj | 83 + .../PCbuild/_testconsole.vcxproj.filters | 22 + .../Python-3.6.8/PCbuild/_testembed.vcxproj | 80 + .../PCbuild/_testembed.vcxproj.filters | 22 + .../PCbuild/_testimportmultiple.vcxproj | 83 + .../_testimportmultiple.vcxproj.filters | 13 + .../PCbuild/_testmultiphase.vcxproj | 83 + .../PCbuild/_testmultiphase.vcxproj.filters | 22 + .../Python-3.6.8/PCbuild/_tkinter.vcxproj | 94 + .../PCbuild/_tkinter.vcxproj.filters | 16 + .../Python/Python-3.6.8/PCbuild/build.bat | 145 + .../Python/Python-3.6.8/PCbuild/build_env.bat | 1 + .../Python/Python-3.6.8/PCbuild/clean.bat | 5 + .../Python/Python-3.6.8/PCbuild/env.bat | 16 + .../Python/Python-3.6.8/PCbuild/field3.py | 35 + .../Python-3.6.8/PCbuild/find_msbuild.bat | 61 + .../Python-3.6.8/PCbuild/find_python.bat | 75 + .../Python-3.6.8/PCbuild/get_external.py | 60 + .../Python-3.6.8/PCbuild/get_externals.bat | 102 + .../Python/Python-3.6.8/PCbuild/idle.bat | 15 + .../Python-3.6.8/PCbuild/libeay.vcxproj | 906 + .../Python-3.6.8/PCbuild/liblzma.vcxproj | 216 + .../Python/Python-3.6.8/PCbuild/openssl.props | 76 + .../Python/Python-3.6.8/PCbuild/pcbuild.proj | 120 + .../Python/Python-3.6.8/PCbuild/pcbuild.sln | 790 + .../Python-3.6.8/PCbuild/prepare_ssl.bat | 12 + .../Python-3.6.8/PCbuild/prepare_ssl.py | 201 + .../Python-3.6.8/PCbuild/pyexpat.vcxproj | 88 + .../PCbuild/pyexpat.vcxproj.filters | 36 + .../Python-3.6.8/PCbuild/pylauncher.vcxproj | 82 + .../PCbuild/pylauncher.vcxproj.filters | 32 + .../Python-3.6.8/PCbuild/pyproject.props | 194 + .../Python-3.6.8/PCbuild/pyshellext.vcxproj | 87 + .../PCbuild/pyshellext.vcxproj.filters | 40 + .../Python/Python-3.6.8/PCbuild/python.props | 197 + .../Python-3.6.8/PCbuild/python.vcxproj | 116 + .../PCbuild/python.vcxproj.filters | 26 + .../Python-3.6.8/PCbuild/python3dll.vcxproj | 149 + .../PCbuild/python3dll.vcxproj.filters | 32 + .../Python-3.6.8/PCbuild/pythoncore.vcxproj | 436 + .../PCbuild/pythoncore.vcxproj.filters | 1007 + .../Python-3.6.8/PCbuild/pythonw.vcxproj | 79 + .../PCbuild/pythonw.vcxproj.filters | 21 + .../Python-3.6.8/PCbuild/pywlauncher.vcxproj | 82 + .../PCbuild/pywlauncher.vcxproj.filters | 32 + .../Python/Python-3.6.8/PCbuild/readme.txt | 315 + .../Python/Python-3.6.8/PCbuild/rmpyc.py | 19 + .../Python/Python-3.6.8/PCbuild/rt.bat | 64 + .../Python-3.6.8/PCbuild/select.vcxproj | 82 + .../PCbuild/select.vcxproj.filters | 13 + .../Python-3.6.8/PCbuild/sqlite3.vcxproj | 89 + .../PCbuild/sqlite3.vcxproj.filters | 24 + .../Python-3.6.8/PCbuild/ssleay.vcxproj | 119 + .../Python/Python-3.6.8/PCbuild/tcl.vcxproj | 93 + .../Python/Python-3.6.8/PCbuild/tcltk.props | 46 + .../Python/Python-3.6.8/PCbuild/tix.vcxproj | 94 + .../Python/Python-3.6.8/PCbuild/tk.vcxproj | 97 + .../Python-3.6.8/PCbuild/unicodedata.vcxproj | 86 + .../PCbuild/unicodedata.vcxproj.filters | 24 + .../Python-3.6.8/PCbuild/urlretrieve.py | 39 + .../Python-3.6.8/PCbuild/winsound.vcxproj | 82 + .../PCbuild/winsound.vcxproj.filters | 14 + .../Python-3.6.8/PCbuild/xxlimited.vcxproj | 83 + .../PCbuild/xxlimited.vcxproj.filters | 13 + .../Python/Python-3.6.8/Parser/Python.asdl | 132 + .../Python/Python-3.6.8/Parser/acceler.c | 125 + .../Python/Python-3.6.8/Parser/asdl.py | 376 + .../Python/Python-3.6.8/Parser/asdl_c.py | 1339 + .../Python/Python-3.6.8/Parser/bitset.c | 66 + .../Python/Python-3.6.8/Parser/firstsets.c | 113 + .../Python/Python-3.6.8/Parser/grammar.c | 273 + .../Python/Python-3.6.8/Parser/grammar1.c | 61 + .../Python/Python-3.6.8/Parser/listnode.c | 66 + .../Python/Python-3.6.8/Parser/metagrammar.c | 159 + .../Python/Python-3.6.8/Parser/myreadline.c | 399 + .../Python/Python-3.6.8/Parser/node.c | 164 + .../Python/Python-3.6.8/Parser/parser.c | 447 + .../Python/Python-3.6.8/Parser/parser.h | 42 + .../Python/Python-3.6.8/Parser/parsetok.c | 384 + .../Python-3.6.8/Parser/parsetok_pgen.c | 2 + .../Python/Python-3.6.8/Parser/pgen.c | 724 + .../Python/Python-3.6.8/Parser/pgenmain.c | 189 + .../Python/Python-3.6.8/Parser/printgrammar.c | 120 + .../Python/Python-3.6.8/Parser/tokenizer.c | 2000 + .../Python/Python-3.6.8/Parser/tokenizer.h | 89 + .../Python-3.6.8/Parser/tokenizer_pgen.c | 2 + .../Python/Python-3.6.8/Programs/README | 1 + .../Python-3.6.8/Programs/_freeze_importlib.c | 155 + .../Python/Python-3.6.8/Programs/_testembed.c | 198 + .../Python/Python-3.6.8/Programs/python.c | 82 + .../Python/Python-3.6.8/Python/Python-ast.c | 8100 ++ .../Python/Python-3.6.8/Python/README | 1 + .../Python/Python-3.6.8/Python/_warnings.c | 1295 + .../Python/Python-3.6.8/Python/asdl.c | 64 + .../Python/Python-3.6.8/Python/ast.c | 5284 ++ .../Python/Python-3.6.8/Python/bltinmodule.c | 2776 + .../Python/Python-3.6.8/Python/ceval.c | 5621 ++ .../Python/Python-3.6.8/Python/ceval_gil.h | 270 + .../Python/clinic/bltinmodule.c.h | 679 + .../Python-3.6.8/Python/clinic/import.c.h | 364 + .../Python/Python-3.6.8/Python/codecs.c | 1547 + .../Python/Python-3.6.8/Python/compile.c | 5330 ++ .../Python/Python-3.6.8/Python/condvar.h | 390 + .../Python/Python-3.6.8/Python/dtoa.c | 2876 + .../Python/Python-3.6.8/Python/dup2.c | 31 + .../Python-3.6.8/Python/dynamic_annotations.c | 154 + .../Python/Python-3.6.8/Python/dynload_aix.c | 184 + .../Python/Python-3.6.8/Python/dynload_dl.c | 23 + .../Python/Python-3.6.8/Python/dynload_hpux.c | 66 + .../Python/Python-3.6.8/Python/dynload_next.c | 111 + .../Python-3.6.8/Python/dynload_shlib.c | 128 + .../Python/Python-3.6.8/Python/dynload_stub.c | 9 + .../Python/Python-3.6.8/Python/dynload_win.c | 309 + .../Python/Python-3.6.8/Python/errors.c | 1197 + .../Python/Python-3.6.8/Python/fileutils.c | 1739 + .../Python-3.6.8/Python/formatter_unicode.c | 1595 + .../Python/Python-3.6.8/Python/frozen.c | 46 + .../Python/Python-3.6.8/Python/frozenmain.c | 115 + .../Python/Python-3.6.8/Python/future.c | 161 + .../Python/Python-3.6.8/Python/getargs.c | 2463 + .../Python/Python-3.6.8/Python/getcompiler.c | 28 + .../Python/Python-3.6.8/Python/getcopyright.c | 23 + .../Python/Python-3.6.8/Python/getopt.c | 132 + .../Python/Python-3.6.8/Python/getplatform.c | 12 + .../Python/Python-3.6.8/Python/getversion.c | 15 + .../Python/Python-3.6.8/Python/graminit.c | 2263 + .../Python/Python-3.6.8/Python/import.c | 2151 + .../Python/Python-3.6.8/Python/importdl.c | 240 + .../Python/Python-3.6.8/Python/importdl.h | 27 + .../Python/Python-3.6.8/Python/importlib.h | 1822 + .../Python-3.6.8/Python/importlib_external.h | 2433 + .../Python-3.6.8/Python/makeopcodetargets.py | 55 + .../Python/Python-3.6.8/Python/marshal.c | 1861 + .../Python/Python-3.6.8/Python/modsupport.c | 591 + .../Python/Python-3.6.8/Python/mysnprintf.c | 104 + .../Python/Python-3.6.8/Python/mystrtoul.c | 291 + .../Python-3.6.8/Python/opcode_targets.h | 258 + .../Python/Python-3.6.8/Python/peephole.c | 911 + .../Python/Python-3.6.8/Python/pyarena.c | 210 + .../Python/Python-3.6.8/Python/pyctype.c | 214 + .../Python/Python-3.6.8/Python/pyfpe.c | 23 + .../Python/Python-3.6.8/Python/pyhash.c | 424 + .../Python/Python-3.6.8/Python/pylifecycle.c | 1695 + .../Python/Python-3.6.8/Python/pymath.c | 81 + .../Python/Python-3.6.8/Python/pystate.c | 959 + .../Python/Python-3.6.8/Python/pystrcmp.c | 26 + .../Python/Python-3.6.8/Python/pystrhex.c | 61 + .../Python/Python-3.6.8/Python/pystrtod.c | 1307 + .../Python/Python-3.6.8/Python/pythonrun.c | 1604 + .../Python/Python-3.6.8/Python/pytime.c | 854 + .../Python/Python-3.6.8/Python/random.c | 616 + .../Python/Python-3.6.8/Python/sigcheck.c | 19 + .../Python/Python-3.6.8/Python/strdup.c | 14 + .../Python/Python-3.6.8/Python/structmember.c | 292 + .../Python/Python-3.6.8/Python/symtable.c | 1793 + .../Python/Python-3.6.8/Python/sysmodule.c | 2441 + .../Python/Python-3.6.8/Python/thread.c | 447 + .../Python-3.6.8/Python/thread_foobar.h | 132 + .../Python/Python-3.6.8/Python/thread_nt.h | 412 + .../Python-3.6.8/Python/thread_pthread.h | 689 + .../Python/Python-3.6.8/Python/traceback.c | 826 + .../Python-3.6.8/Python/wordcode_helpers.h | 44 + .../Python/Python-3.6.8/README.rst | 265 + .../Python/Python-3.6.8/Tools/README | 48 + .../Python-3.6.8/Tools/buildbot/build.bat | 17 + .../Python-3.6.8/Tools/buildbot/buildmsi.bat | 9 + .../Python-3.6.8/Tools/buildbot/clean.bat | 17 + .../Python-3.6.8/Tools/buildbot/test.bat | 19 + .../Python-3.6.8/Tools/ccbench/ccbench.py | 611 + .../Python-3.6.8/Tools/clinic/clinic.py | 4384 + .../Python-3.6.8/Tools/clinic/clinic_test.py | 791 + .../Python/Python-3.6.8/Tools/clinic/cpp.py | 191 + .../Python/Python-3.6.8/Tools/demo/README | 16 + .../Python/Python-3.6.8/Tools/demo/beer.py | 25 + .../Python/Python-3.6.8/Tools/demo/eiffel.py | 146 + .../Python/Python-3.6.8/Tools/demo/hanoi.py | 154 + .../Python/Python-3.6.8/Tools/demo/life.py | 262 + .../Python/Python-3.6.8/Tools/demo/markov.py | 125 + .../Python/Python-3.6.8/Tools/demo/mcast.py | 82 + .../Python/Python-3.6.8/Tools/demo/queens.py | 85 + .../Python/Python-3.6.8/Tools/demo/redemo.py | 172 + .../Python/Python-3.6.8/Tools/demo/rpython.py | 38 + .../Python-3.6.8/Tools/demo/rpythond.py | 58 + .../Python-3.6.8/Tools/demo/sortvisu.py | 635 + .../Python/Python-3.6.8/Tools/demo/ss1.py | 829 + .../Python/Python-3.6.8/Tools/demo/vector.py | 74 + .../Python/Python-3.6.8/Tools/freeze/README | 296 + .../Python-3.6.8/Tools/freeze/bkfile.py | 26 + .../Tools/freeze/checkextensions.py | 90 + .../Tools/freeze/checkextensions_win32.py | 188 + .../Tools/freeze/extensions_win32.ini | 171 + .../Python/Python-3.6.8/Tools/freeze/flag.py | 2 + .../Python-3.6.8/Tools/freeze/freeze.py | 491 + .../Python/Python-3.6.8/Tools/freeze/hello.py | 1 + .../Python-3.6.8/Tools/freeze/makeconfig.py | 59 + .../Python-3.6.8/Tools/freeze/makefreeze.py | 87 + .../Python-3.6.8/Tools/freeze/makemakefile.py | 28 + .../Python-3.6.8/Tools/freeze/parsesetup.py | 111 + .../Python-3.6.8/Tools/freeze/test/ok.py | 2 + .../Python-3.6.8/Tools/freeze/win32.html | 119 + .../Tools/freeze/winmakemakefile.py | 148 + .../Python-3.6.8/Tools/gdb/libpython.py | 1959 + .../Tools/i18n/makelocalealias.py | 150 + .../Python/Python-3.6.8/Tools/i18n/msgfmt.py | 238 + .../Python-3.6.8/Tools/i18n/pygettext.py | 631 + .../Python-3.6.8/Tools/importbench/README | 6 + .../Tools/importbench/importbench.py | 244 + .../Python-3.6.8/Tools/iobench/iobench.py | 556 + .../Python/Python-3.6.8/Tools/msi/README.txt | 543 + .../Python/Python-3.6.8/Tools/msi/build.bat | 79 + .../Python-3.6.8/Tools/msi/buildrelease.bat | 234 + .../Python-3.6.8/Tools/msi/bundle/Default.thm | 137 + .../Python-3.6.8/Tools/msi/bundle/Default.wxl | 148 + .../Python-3.6.8/Tools/msi/bundle/SideBar.png | Bin 0 -> 57891 bytes .../Tools/msi/bundle/bootstrap/LICENSE.txt | 25 + .../PythonBootstrapperApplication.cpp | 3265 + .../Tools/msi/bundle/bootstrap/pch.cpp | 1 + .../Tools/msi/bundle/bootstrap/pch.h | 60 + .../Tools/msi/bundle/bootstrap/pythonba.cpp | 76 + .../Tools/msi/bundle/bootstrap/pythonba.def | 18 + .../Tools/msi/bundle/bootstrap/pythonba.sln | 22 + .../msi/bundle/bootstrap/pythonba.vcxproj | 71 + .../Tools/msi/bundle/bootstrap/resource.h | 25 + .../Tools/msi/bundle/bundle.targets | 106 + .../Python-3.6.8/Tools/msi/bundle/bundle.wxl | 7 + .../Python-3.6.8/Tools/msi/bundle/bundle.wxs | 112 + .../Tools/msi/bundle/full.wixproj | 21 + .../Tools/msi/bundle/packagegroups/core.wxs | 62 + .../Tools/msi/bundle/packagegroups/crt.wxs | 49 + .../Tools/msi/bundle/packagegroups/dev.wxs | 44 + .../Tools/msi/bundle/packagegroups/doc.wxs | 28 + .../Tools/msi/bundle/packagegroups/exe.wxs | 64 + .../msi/bundle/packagegroups/launcher.wxs | 27 + .../Tools/msi/bundle/packagegroups/lib.wxs | 62 + .../bundle/packagegroups/packageinstall.wxs | 26 + .../Tools/msi/bundle/packagegroups/pip.wxs | 25 + .../msi/bundle/packagegroups/postinstall.wxs | 88 + .../Tools/msi/bundle/packagegroups/tcltk.wxs | 68 + .../Tools/msi/bundle/packagegroups/test.wxs | 62 + .../Tools/msi/bundle/packagegroups/tools.wxs | 26 + .../Tools/msi/bundle/releaselocal.wixproj | 21 + .../Tools/msi/bundle/releaseweb.wixproj | 21 + .../Tools/msi/bundle/snapshot.wixproj | 26 + .../Python/Python-3.6.8/Tools/msi/common.wxs | 122 + .../Tools/msi/common_en-US.wxl_template | 18 + .../Python-3.6.8/Tools/msi/csv_to_wxs.py | 127 + .../Python-3.6.8/Tools/msi/dev/dev.wixproj | 49 + .../Python/Python-3.6.8/Tools/msi/dev/dev.wxs | 19 + .../Python-3.6.8/Tools/msi/dev/dev_d.wixproj | 19 + .../Python-3.6.8/Tools/msi/dev/dev_d.wxs | 13 + .../Python-3.6.8/Tools/msi/dev/dev_en-US.wxl | 5 + .../Python-3.6.8/Tools/msi/dev/dev_files.wxs | 42 + .../msi/distutils.command.bdist_wininst.py | 23 + .../Python-3.6.8/Tools/msi/doc/doc.wixproj | 30 + .../Python/Python-3.6.8/Tools/msi/doc/doc.wxs | 41 + .../Tools/msi/doc/doc_en-US.wxl_template | 7 + .../Python-3.6.8/Tools/msi/doc/doc_files.wxs | 15 + .../Tools/msi/doc/doc_no_files.wxs | 17 + .../Python-3.6.8/Tools/msi/exe/crtlicense.txt | 41 + .../Python-3.6.8/Tools/msi/exe/exe.wixproj | 66 + .../Python/Python-3.6.8/Tools/msi/exe/exe.wxs | 33 + .../Python-3.6.8/Tools/msi/exe/exe_d.wixproj | 21 + .../Python-3.6.8/Tools/msi/exe/exe_d.wxs | 13 + .../Tools/msi/exe/exe_en-US.wxl_template | 8 + .../Python-3.6.8/Tools/msi/exe/exe_files.wxs | 79 + .../Tools/msi/exe/exe_pdb.wixproj | 21 + .../Python-3.6.8/Tools/msi/exe/exe_pdb.wxs | 13 + .../Python-3.6.8/Tools/msi/exe/exe_reg.wxs | 25 + .../Python-3.6.8/Tools/msi/generate_md5.py | 27 + .../Python-3.6.8/Tools/msi/get_externals.bat | 91 + .../Tools/msi/launcher/launcher.wixproj | 36 + .../Tools/msi/launcher/launcher.wxs | 49 + .../Tools/msi/launcher/launcher_en-US.wxl | 17 + .../Tools/msi/launcher/launcher_files.wxs | 38 + .../Tools/msi/launcher/launcher_reg.wxs | 50 + .../Python-3.6.8/Tools/msi/lib/lib.wixproj | 35 + .../Python/Python-3.6.8/Tools/msi/lib/lib.wxs | 18 + .../Python-3.6.8/Tools/msi/lib/lib_d.wixproj | 19 + .../Python-3.6.8/Tools/msi/lib/lib_d.wxs | 13 + .../Python-3.6.8/Tools/msi/lib/lib_en-US.wxl | 5 + .../Python-3.6.8/Tools/msi/lib/lib_files.wxs | 79 + .../Tools/msi/lib/lib_pdb.wixproj | 19 + .../Python-3.6.8/Tools/msi/lib/lib_pdb.wxs | 13 + .../Python-3.6.8/Tools/msi/make_zip.proj | 39 + .../Python/Python-3.6.8/Tools/msi/make_zip.py | 252 + .../Python/Python-3.6.8/Tools/msi/msi.props | 188 + .../Python/Python-3.6.8/Tools/msi/msi.targets | 93 + .../Python-3.6.8/Tools/msi/path/path.wixproj | 19 + .../Python-3.6.8/Tools/msi/path/path.wxs | 39 + .../Tools/msi/path/path_en-US.wxl | 6 + .../Python-3.6.8/Tools/msi/pip/pip.wixproj | 19 + .../Python/Python-3.6.8/Tools/msi/pip/pip.wxs | 39 + .../Python-3.6.8/Tools/msi/pip/pip_en-US.wxl | 6 + .../Python/Python-3.6.8/Tools/msi/purge.py | 74 + .../Tools/msi/tcltk/tcltk.wixproj | 50 + .../Python-3.6.8/Tools/msi/tcltk/tcltk.wxs | 66 + .../Tools/msi/tcltk/tcltk_d.wixproj | 28 + .../Python-3.6.8/Tools/msi/tcltk/tcltk_d.wxs | 14 + .../Tools/msi/tcltk/tcltk_en-US.wxl_template | 12 + .../Tools/msi/tcltk/tcltk_files.wxs | 35 + .../Tools/msi/tcltk/tcltk_pdb.wixproj | 19 + .../Tools/msi/tcltk/tcltk_pdb.wxs | 13 + .../Tools/msi/tcltk/tcltk_reg.wxs | 48 + .../Python-3.6.8/Tools/msi/test/test.wixproj | 29 + .../Python-3.6.8/Tools/msi/test/test.wxs | 16 + .../Tools/msi/test/test_d.wixproj | 19 + .../Python-3.6.8/Tools/msi/test/test_d.wxs | 13 + .../Tools/msi/test/test_en-US.wxl | 7 + .../Tools/msi/test/test_files.wxs | 42 + .../Tools/msi/test/test_pdb.wixproj | 19 + .../Python-3.6.8/Tools/msi/test/test_pdb.wxs | 13 + .../Python-3.6.8/Tools/msi/testrelease.bat | 117 + .../Tools/msi/tools/tools.wixproj | 44 + .../Python-3.6.8/Tools/msi/tools/tools.wxs | 16 + .../Tools/msi/tools/tools_en-US.wxl | 5 + .../Tools/msi/tools/tools_files.wxs | 23 + .../Python-3.6.8/Tools/msi/uploadrelease.bat | 105 + .../Python-3.6.8/Tools/msi/uploadrelease.proj | 113 + .../Python/Python-3.6.8/Tools/msi/wix.props | 12 + .../Python/Python-3.6.8/Tools/nuget/build.bat | 57 + .../Python-3.6.8/Tools/nuget/make_pkg.proj | 74 + .../Python-3.6.8/Tools/nuget/python.nuspec | 19 + .../Python-3.6.8/Tools/nuget/python.props | 56 + .../Tools/nuget/pythondaily.nuspec | 19 + .../Python-3.6.8/Tools/nuget/pythonx86.nuspec | 19 + .../Python-3.6.8/Tools/parser/unparse.py | 706 + .../Python-3.6.8/Tools/pybench/Arithmetic.py | 777 + .../Python-3.6.8/Tools/pybench/Calls.py | 560 + .../Python-3.6.8/Tools/pybench/CommandLine.py | 642 + .../Python-3.6.8/Tools/pybench/Constructs.py | 564 + .../Python/Python-3.6.8/Tools/pybench/Dict.py | 504 + .../Python-3.6.8/Tools/pybench/Exceptions.py | 699 + .../Python-3.6.8/Tools/pybench/Imports.py | 138 + .../Python-3.6.8/Tools/pybench/Instances.py | 66 + .../Python/Python-3.6.8/Tools/pybench/LICENSE | 25 + .../Python-3.6.8/Tools/pybench/Lists.py | 350 + .../Python-3.6.8/Tools/pybench/Lookups.py | 945 + .../Tools/pybench/NewInstances.py | 75 + .../Python-3.6.8/Tools/pybench/Numbers.py | 784 + .../Python/Python-3.6.8/Tools/pybench/README | 371 + .../Python-3.6.8/Tools/pybench/Setup.py | 43 + .../Python-3.6.8/Tools/pybench/Strings.py | 568 + .../Python-3.6.8/Tools/pybench/Tuples.py | 360 + .../Python-3.6.8/Tools/pybench/Unicode.py | 541 + .../Python/Python-3.6.8/Tools/pybench/With.py | 189 + .../Python-3.6.8/Tools/pybench/clockres.py | 42 + .../Tools/pybench/package/__init__.py | 0 .../Tools/pybench/package/submodule.py | 0 .../Python-3.6.8/Tools/pybench/pybench.py | 974 + .../Python-3.6.8/Tools/pybench/systimes.py | 214 + .../Python-3.6.8/Tools/pynche/ChipViewer.py | 130 + .../Python-3.6.8/Tools/pynche/ColorDB.py | 271 + .../Tools/pynche/DetailsViewer.py | 273 + .../Python-3.6.8/Tools/pynche/ListViewer.py | 175 + .../Python/Python-3.6.8/Tools/pynche/Main.py | 229 + .../Python-3.6.8/Tools/pynche/PyncheWidget.py | 313 + .../Python/Python-3.6.8/Tools/pynche/README | 398 + .../Python-3.6.8/Tools/pynche/StripViewer.py | 433 + .../Python-3.6.8/Tools/pynche/Switchboard.py | 138 + .../Python-3.6.8/Tools/pynche/TextViewer.py | 188 + .../Python-3.6.8/Tools/pynche/TypeinViewer.py | 161 + .../Python-3.6.8/Tools/pynche/X/rgb.txt | 753 + .../Python-3.6.8/Tools/pynche/X/xlicense.txt | 29 + .../Python-3.6.8/Tools/pynche/__init__.py | 1 + .../Tools/pynche/html40colors.txt | 17 + .../Python-3.6.8/Tools/pynche/namedcolors.txt | 100 + .../Tools/pynche/pyColorChooser.py | 125 + .../Python/Python-3.6.8/Tools/pynche/pynche | 7 + .../Python-3.6.8/Tools/pynche/pynche.pyw | 7 + .../Python-3.6.8/Tools/pynche/webcolors.txt | 141 + .../Python-3.6.8/Tools/pynche/websafe.txt | 217 + .../Python/Python-3.6.8/Tools/scripts/2to3 | 5 + .../Python/Python-3.6.8/Tools/scripts/README | 69 + .../Python-3.6.8/Tools/scripts/abitype.py | 202 + .../Python-3.6.8/Tools/scripts/analyze_dxp.py | 129 + .../Python-3.6.8/Tools/scripts/byext.py | 132 + .../Python-3.6.8/Tools/scripts/byteyears.py | 61 + .../Python-3.6.8/Tools/scripts/checkpip.py | 32 + .../Python-3.6.8/Tools/scripts/checkpyc.py | 69 + .../Python-3.6.8/Tools/scripts/cleanfuture.py | 276 + .../Python-3.6.8/Tools/scripts/combinerefs.py | 128 + .../Python-3.6.8/Tools/scripts/copytime.py | 26 + .../Python/Python-3.6.8/Tools/scripts/crlf.py | 23 + .../Python-3.6.8/Tools/scripts/db2pickle.py | 135 + .../Python/Python-3.6.8/Tools/scripts/diff.py | 60 + .../Python-3.6.8/Tools/scripts/dutree.doc | 54 + .../Python-3.6.8/Tools/scripts/dutree.py | 60 + .../Python-3.6.8/Tools/scripts/eptags.py | 56 + .../Python-3.6.8/Tools/scripts/find-uname.py | 40 + .../Tools/scripts/find_recursionlimit.py | 128 + .../Python-3.6.8/Tools/scripts/finddiv.py | 89 + .../Python-3.6.8/Tools/scripts/findlinksto.py | 43 + .../Tools/scripts/findnocoding.py | 107 + .../Python-3.6.8/Tools/scripts/fixcid.py | 316 + .../Python-3.6.8/Tools/scripts/fixdiv.py | 378 + .../Python-3.6.8/Tools/scripts/fixheader.py | 49 + .../Python-3.6.8/Tools/scripts/fixnotice.py | 113 + .../Python-3.6.8/Tools/scripts/fixps.py | 33 + .../Tools/scripts/generate_opcode_h.py | 52 + .../Tools/scripts/get-remote-certificate.py | 84 + .../Python-3.6.8/Tools/scripts/google.py | 23 + .../Python-3.6.8/Tools/scripts/gprof2html.py | 85 + .../Python/Python-3.6.8/Tools/scripts/h2py.py | 172 + .../Python-3.6.8/Tools/scripts/highlight.py | 265 + .../Python/Python-3.6.8/Tools/scripts/idle3 | 5 + .../Python-3.6.8/Tools/scripts/ifdef.py | 112 + .../Tools/scripts/import_diagnostics.py | 37 + .../Python/Python-3.6.8/Tools/scripts/lfcr.py | 24 + .../Python-3.6.8/Tools/scripts/linktree.py | 80 + .../Python/Python-3.6.8/Tools/scripts/lll.py | 28 + .../Tools/scripts/mailerdaemon.py | 246 + .../Python-3.6.8/Tools/scripts/make_ctype.py | 94 + .../Python-3.6.8/Tools/scripts/md5sum.py | 93 + .../Python-3.6.8/Tools/scripts/mkreal.py | 66 + .../Python-3.6.8/Tools/scripts/ndiff.py | 133 + .../Python-3.6.8/Tools/scripts/nm2def.py | 103 + .../Python-3.6.8/Tools/scripts/objgraph.py | 210 + .../Tools/scripts/parse_html5_entities.py | 105 + .../Tools/scripts/parseentities.py | 62 + .../Python-3.6.8/Tools/scripts/patchcheck.py | 286 + .../Python-3.6.8/Tools/scripts/pathfix.py | 177 + .../Python-3.6.8/Tools/scripts/pdeps.py | 165 + .../Python-3.6.8/Tools/scripts/pickle2db.py | 147 + .../Python-3.6.8/Tools/scripts/pindent.py | 506 + .../Python-3.6.8/Tools/scripts/ptags.py | 53 + .../Python/Python-3.6.8/Tools/scripts/pydoc3 | 5 + .../Python-3.6.8/Tools/scripts/pysource.py | 130 + .../Python/Python-3.6.8/Tools/scripts/pyvenv | 17 + .../Tools/scripts/reindent-rst.py | 14 + .../Python-3.6.8/Tools/scripts/reindent.py | 333 + .../Python-3.6.8/Tools/scripts/rgrep.py | 66 + .../Python-3.6.8/Tools/scripts/run_tests.py | 59 + .../Python-3.6.8/Tools/scripts/serve.py | 35 + .../Python/Python-3.6.8/Tools/scripts/suff.py | 26 + .../Python-3.6.8/Tools/scripts/svneol.py | 114 + .../Python-3.6.8/Tools/scripts/texi2html.py | 2075 + .../Python-3.6.8/Tools/scripts/treesync.py | 210 + .../Python-3.6.8/Tools/scripts/untabify.py | 55 + .../Python-3.6.8/Tools/scripts/update_file.py | 28 + .../Python-3.6.8/Tools/scripts/which.py | 60 + .../Tools/scripts/win_add2path.py | 58 + .../Python-3.6.8/Tools/ssl/make_ssl_data.py | 87 + .../Python-3.6.8/Tools/ssl/multissltests.py | 473 + .../Python-3.6.8/Tools/ssl/sslspeed.vcxproj | 70 + .../Python-3.6.8/Tools/stringbench/README | 68 + .../Tools/stringbench/stringbench.py | 1482 + .../Python/Python-3.6.8/Tools/test2to3/README | 3 + .../Python-3.6.8/Tools/test2to3/maintest.py | 10 + .../Python-3.6.8/Tools/test2to3/setup.py | 26 + .../Tools/test2to3/test/runtests.py | 19 + .../Tools/test2to3/test/test_foo.py | 8 + .../Tools/test2to3/test2to3/__init__.py | 1 + .../Tools/test2to3/test2to3/hello.py | 5 + .../Python/Python-3.6.8/Tools/tz/zdump.py | 81 + .../Tools/unicode/comparecodecs.py | 53 + .../Tools/unicode/gencjkcodecs.py | 68 + .../Python-3.6.8/Tools/unicode/gencodec.py | 429 + .../Python-3.6.8/Tools/unicode/genwincodec.py | 61 + .../Tools/unicode/genwincodecs.bat | 7 + .../Python-3.6.8/Tools/unicode/listcodecs.py | 41 + .../Tools/unicode/makeunicodedata.py | 1345 + .../Tools/unicode/mkstringprep.py | 431 + .../Tools/unicode/python-mappings/CP1140.TXT | 291 + .../Tools/unicode/python-mappings/CP273.TXT | 258 + .../Tools/unicode/python-mappings/KOI8-U.TXT | 298 + .../Tools/unicode/python-mappings/TIS-620.TXT | 284 + .../Python-3.6.8/Tools/unittestgui/README.txt | 16 + .../Tools/unittestgui/unittestgui.py | 478 + .../Python/Python-3.6.8/aclocal.m4 | 290 + .../Python/Python-3.6.8/config.guess | 1473 + .../Python/Python-3.6.8/config.sub | 1836 + .../Python/Python-3.6.8/configure | 18339 ++++ .../Python/Python-3.6.8/configure.ac | 5663 ++ .../Python/Python-3.6.8/install-sh | 294 + .../Python/Python-3.6.8/pyconfig.h.in | 1551 + .../Applications/Python/Python-3.6.8/setup.py | 2403 + 4206 files changed, 1965425 insertions(+) create mode 100644 AppPkg/Applications/Python/Python-3.6.8/.azure-pipelines/ci.yml create mode 100644 AppPkg/Applications/Python/Python-3.6.8/.azure-pipelines/docker-steps.yml create mode 100644 AppPkg/Applications/Python/Python-3.6.8/.azure-pipelines/docs-steps.yml create mode 100644 AppPkg/Applications/Python/Python-3.6.8/.azure-pipelines/macos-steps.yml create mode 100644 AppPkg/Applications/Python/Python-3.6.8/.azure-pipelines/posix-deps.sh create mode 100644 AppPkg/Applications/Python/Python-3.6.8/.azure-pipelines/posix-steps.yml create mode 100644 AppPkg/Applications/Python/Python-3.6.8/.azure-pipelines/pr.yml create mode 100644 AppPkg/Applications/Python/Python-3.6.8/.azure-pipelines/prebuild-checks.yml create mode 100644 AppPkg/Applications/Python/Python-3.6.8/.azure-pipelines/windows-steps.yml create mode 100644 AppPkg/Applications/Python/Python-3.6.8/.bzrignore create mode 100644 AppPkg/Applications/Python/Python-3.6.8/.gitattributes create mode 100644 AppPkg/Applications/Python/Python-3.6.8/.github/PULL_REQUEST_TEMPLATE.md create mode 100644 AppPkg/Applications/Python/Python-3.6.8/.github/appveyor.yml create mode 100644 AppPkg/Applications/Python/Python-3.6.8/.github/codecov.yml create mode 100644 AppPkg/Applications/Python/Python-3.6.8/.gitignore create mode 100644 AppPkg/Applications/Python/Python-3.6.8/.hgignore create mode 100644 AppPkg/Applications/Python/Python-3.6.8/.travis.yml create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/README.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/about.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/bugs.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/abstract.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/allocation.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/apiabiversion.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/arg.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/bool.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/buffer.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/bytearray.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/bytes.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/capsule.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/cell.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/code.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/codec.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/complex.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/concrete.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/conversion.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/coro.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/datetime.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/descriptor.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/dict.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/exceptions.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/file.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/float.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/function.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/gcsupport.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/gen.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/import.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/index.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/init.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/intro.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/iter.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/iterator.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/list.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/long.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/mapping.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/marshal.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/memory.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/memoryview.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/method.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/module.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/none.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/number.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/objbuffer.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/object.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/objimpl.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/refcounting.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/reflection.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/sequence.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/set.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/slice.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/stable.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/structures.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/sys.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/tuple.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/type.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/typeobj.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/unicode.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/utilities.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/veryhigh.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/c-api/weakref.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/conf.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/contents.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/copyright.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/data/refcounts.dat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/distributing/index.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/distutils/apiref.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/distutils/builtdist.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/distutils/commandref.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/distutils/configfile.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/distutils/examples.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/distutils/extending.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/distutils/index.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/distutils/introduction.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/distutils/packageindex.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/distutils/setupscript.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/distutils/sourcedist.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/distutils/uploading.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/docutils.conf create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/extending/building.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/extending/embedding.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/extending/extending.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/extending/index.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/extending/newtypes.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/extending/newtypes_tutorial.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/extending/windows.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/faq/design.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/faq/extending.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/faq/general.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/faq/gui.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/faq/index.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/faq/installed.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/faq/library.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/faq/programming.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/faq/python-video-icon.png create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/faq/windows.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/glossary.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/howto/argparse.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/howto/clinic.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/howto/cporting.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/howto/curses.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/howto/descriptor.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/howto/functional.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/howto/index.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/howto/instrumentation.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/howto/ipaddress.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/howto/logging-cookbook.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/howto/logging.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/howto/logging_flow.png create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/howto/pyporting.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/howto/regex.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/howto/sockets.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/howto/sorting.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/howto/unicode.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/howto/urllib2.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/capsulethunk.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/custom.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/custom2.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/custom3.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/custom4.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/dbpickle.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/email-alternative.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/email-dir.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/email-headers.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/email-mime.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/email-read-alternative.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/email-simple.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/email-unpack.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/minidom-example.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/mp_newtype.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/mp_pool.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/mp_workers.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/run-func.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/setup.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/adapter_datetime.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/adapter_point_1.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/adapter_point_2.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/collation_reverse.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/complete_statement.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/connect_db_1.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/connect_db_2.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/converter_point.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/countcursors.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/createdb.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/ctx_manager.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/execsql_fetchonerow.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/execsql_printall_1.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/execute_1.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/execute_3.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/executemany_1.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/executemany_2.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/executescript.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/insert_more_people.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/load_extension.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/md5func.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/mysumaggr.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/parse_colnames.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/pysqlite_datetime.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/row_factory.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/rowclass.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/shared_cache.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/shortcut_methods.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/simple_tableprinter.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sqlite3/text_factory.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/sublist.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/test.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/turtle-star.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/typestruct.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/includes/tzinfo-examples.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/install/index.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/installing/index.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/2to3.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/__future__.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/__main__.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/_dummy_thread.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/_thread.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/abc.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/aifc.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/allos.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/archiving.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/argparse.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/array.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/ast.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/asynchat.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/asyncio-dev.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/asyncio-eventloop.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/asyncio-eventloops.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/asyncio-protocol.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/asyncio-queue.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/asyncio-stream.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/asyncio-subprocess.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/asyncio-sync.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/asyncio-task.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/asyncio.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/asyncore.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/atexit.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/audioop.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/base64.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/bdb.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/binary.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/binascii.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/binhex.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/bisect.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/builtins.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/bz2.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/calendar.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/cgi.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/cgitb.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/chunk.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/cmath.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/cmd.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/code.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/codecs.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/codeop.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/collections.abc.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/collections.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/colorsys.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/compileall.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/concurrency.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/concurrent.futures.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/concurrent.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/configparser.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/constants.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/contextlib.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/copy.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/copyreg.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/crypt.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/crypto.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/csv.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/ctypes.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/curses.ascii.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/curses.panel.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/curses.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/custominterp.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/datatypes.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/datetime.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/dbm.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/debug.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/decimal.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/development.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/difflib.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/dis.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/distribution.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/distutils.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/doctest.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/dummy_threading.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/email.charset.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/email.compat32-message.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/email.contentmanager.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/email.encoders.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/email.errors.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/email.examples.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/email.generator.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/email.header.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/email.headerregistry.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/email.iterators.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/email.message.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/email.mime.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/email.parser.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/email.policy.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/email.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/email.utils.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/ensurepip.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/enum.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/errno.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/exceptions.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/faulthandler.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/fcntl.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/filecmp.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/fileformats.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/fileinput.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/filesys.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/fnmatch.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/formatter.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/fpectl.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/fractions.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/frameworks.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/ftplib.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/functional.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/functions.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/functools.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/gc.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/getopt.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/getpass.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/gettext.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/glob.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/grp.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/gzip.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/hashlib-blake2-tree.png create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/hashlib.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/heapq.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/hmac.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/html.entities.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/html.parser.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/html.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/http.client.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/http.cookiejar.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/http.cookies.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/http.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/http.server.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/i18n.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/idle.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/imaplib.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/imghdr.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/imp.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/importlib.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/index.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/inspect.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/internet.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/intro.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/io.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/ipaddress.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/ipc.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/itertools.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/json.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/keyword.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/language.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/linecache.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/locale.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/logging.config.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/logging.handlers.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/logging.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/lzma.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/macpath.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/mailbox.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/mailcap.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/markup.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/marshal.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/math.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/mimetypes.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/misc.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/mm.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/mmap.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/modulefinder.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/modules.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/msilib.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/msvcrt.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/multiprocessing.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/netdata.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/netrc.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/nis.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/nntplib.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/numbers.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/numeric.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/operator.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/optparse.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/os.path.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/os.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/ossaudiodev.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/othergui.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/parser.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/pathlib-inheritance.png create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/pathlib-inheritance.svg create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/pathlib.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/pdb.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/persistence.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/pickle.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/pickletools.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/pipes.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/pkgutil.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/platform.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/plistlib.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/poplib.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/posix.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/pprint.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/profile.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/pty.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/pwd.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/py_compile.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/pyclbr.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/pydoc.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/pyexpat.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/python.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/queue.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/quopri.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/random.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/re.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/readline.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/reprlib.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/resource.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/rlcompleter.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/runpy.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/sched.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/secrets.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/select.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/selectors.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/shelve.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/shlex.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/shutil.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/signal.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/site.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/smtpd.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/smtplib.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/sndhdr.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/socket.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/socketserver.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/spwd.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/sqlite3.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/ssl.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/stat.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/statistics.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/stdtypes.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/string.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/stringprep.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/struct.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/subprocess.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/sunau.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/superseded.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/symbol.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/symtable.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/sys.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/sysconfig.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/syslog.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/tabnanny.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/tarfile.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/telnetlib.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/tempfile.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/termios.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/test.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/text.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/textwrap.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/threading.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/time.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/timeit.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/tk.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/tkinter.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/tkinter.scrolledtext.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/tkinter.tix.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/tkinter.ttk.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/token.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/tokenize.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/trace.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/traceback.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/tracemalloc.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/tty.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/tulip_coro.dia create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/tulip_coro.png create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/turtle-star.pdf create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/turtle-star.png create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/turtle-star.ps create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/turtle.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/types.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/typing.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/undoc.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/unicodedata.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/unittest.mock-examples.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/unittest.mock.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/unittest.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/unix.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/urllib.error.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/urllib.parse.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/urllib.request.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/urllib.robotparser.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/urllib.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/uu.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/uuid.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/venv.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/warnings.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/wave.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/weakref.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/webbrowser.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/windows.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/winreg.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/winsound.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/wsgiref.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/xdrlib.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/xml.dom.minidom.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/xml.dom.pulldom.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/xml.dom.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/xml.etree.elementtree.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/xml.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/xml.sax.handler.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/xml.sax.reader.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/xml.sax.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/xml.sax.utils.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/xmlrpc.client.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/xmlrpc.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/xmlrpc.server.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/zipapp.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/zipfile.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/zipimport.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/library/zlib.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/license.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/make.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/reference/compound_stmts.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/reference/datamodel.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/reference/executionmodel.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/reference/expressions.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/reference/grammar.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/reference/import.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/reference/index.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/reference/introduction.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/reference/lexical_analysis.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/reference/simple_stmts.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/reference/toplevel_components.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tools/extensions/c_annotations.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tools/extensions/escape4chm.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tools/extensions/patchlevel.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tools/extensions/pyspecific.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tools/extensions/suspicious.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tools/pydoctheme/static/pydoctheme.css create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tools/pydoctheme/theme.conf create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tools/rstlint.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tools/static/copybutton.js create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tools/static/py.png create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tools/static/sidebar.js create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tools/static/switchers.js create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tools/susp-ignored.csv create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tools/templates/customsourcelink.html create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tools/templates/download.html create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tools/templates/dummy.html create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tools/templates/indexcontent.html create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tools/templates/indexsidebar.html create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tools/templates/layout.html create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tools/templates/opensearch.xml create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tutorial/appendix.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tutorial/appetite.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tutorial/classes.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tutorial/controlflow.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tutorial/datastructures.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tutorial/errors.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tutorial/floatingpoint.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tutorial/index.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tutorial/inputoutput.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tutorial/interactive.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tutorial/interpreter.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tutorial/introduction.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tutorial/modules.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tutorial/stdlib.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tutorial/stdlib2.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tutorial/venv.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/tutorial/whatnow.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/using/cmdline.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/using/index.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/using/mac.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/using/unix.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/using/venv-create.inc create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/using/win_installer.png create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/using/windows.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/whatsnew/2.0.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/whatsnew/2.1.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/whatsnew/2.2.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/whatsnew/2.3.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/whatsnew/2.4.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/whatsnew/2.5.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/whatsnew/2.6.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/whatsnew/2.7.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/whatsnew/3.0.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/whatsnew/3.1.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/whatsnew/3.2.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/whatsnew/3.3.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/whatsnew/3.4.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/whatsnew/3.5.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/whatsnew/3.6.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/whatsnew/changelog.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Doc/whatsnew/index.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Grammar/Grammar create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/Python-ast.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/Python.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/abstract.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/accu.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/asdl.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/ast.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/bitset.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/bltinmodule.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/boolobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/bytearrayobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/bytes_methods.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/bytesobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/cellobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/ceval.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/classobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/code.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/codecs.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/compile.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/complexobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/datetime.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/descrobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/dictobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/dtoa.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/dynamic_annotations.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/enumobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/errcode.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/eval.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/fileobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/fileutils.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/floatobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/frameobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/funcobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/genobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/graminit.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/grammar.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/import.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/intrcheck.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/iterobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/listobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/longintrepr.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/longobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/marshal.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/memoryobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/metagrammar.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/methodobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/modsupport.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/moduleobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/namespaceobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/node.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/object.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/objimpl.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/odictobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/opcode.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/osdefs.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/osmodule.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/parsetok.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/patchlevel.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pgen.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pgenheaders.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/py_curses.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pyarena.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pyatomic.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pycapsule.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pyctype.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pydebug.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pydtrace.d create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pydtrace.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pyerrors.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pyexpat.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pyfpe.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pygetopt.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pyhash.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pylifecycle.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pymacconfig.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pymacro.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pymath.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pymem.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pyport.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pystate.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pystrcmp.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pystrhex.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pystrtod.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pythonrun.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pythread.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/pytime.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/rangeobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/setobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/sliceobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/structmember.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/structseq.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/symtable.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/sysmodule.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/token.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/traceback.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/tupleobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/typeslots.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/ucnhash.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/unicodeobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/warnings.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Include/weakrefobject.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/LICENSE create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/__future__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/__phello__.foo.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/_bootlocale.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/_collections_abc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/_compat_pickle.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/_compression.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/_dummy_thread.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/_markupbase.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/_osx_support.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/_pydecimal.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/_pyio.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/_sitebuiltins.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/_strptime.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/_threading_local.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/_weakrefset.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/abc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/aifc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/antigravity.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/argparse.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ast.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asynchat.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncio/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncio/base_events.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncio/base_futures.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncio/base_subprocess.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncio/base_tasks.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncio/compat.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncio/constants.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncio/coroutines.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncio/events.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncio/futures.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncio/locks.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncio/log.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncio/proactor_events.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncio/protocols.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncio/queues.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncio/selector_events.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncio/sslproto.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncio/streams.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncio/subprocess.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncio/tasks.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncio/test_utils.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncio/transports.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncio/unix_events.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncio/windows_events.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncio/windows_utils.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/asyncore.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/base64.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/bdb.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/binhex.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/bisect.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/bz2.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/cProfile.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/calendar.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/cgi.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/cgitb.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/chunk.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/cmd.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/code.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/codecs.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/codeop.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/collections/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/collections/abc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/colorsys.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/compileall.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/concurrent/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/concurrent/futures/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/concurrent/futures/_base.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/concurrent/futures/process.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/concurrent/futures/thread.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/configparser.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/contextlib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/copy.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/copyreg.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/crypt.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/csv.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/_endian.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/macholib/README.ctypes create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/macholib/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/macholib/dyld.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/macholib/dylib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/macholib/fetch_macholib create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/macholib/fetch_macholib.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/macholib/framework.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/__main__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_anon.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_array_in_pointer.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_arrays.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_as_parameter.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_bitfields.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_buffers.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_bytes.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_byteswap.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_callbacks.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_cast.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_cfuncs.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_checkretval.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_delattr.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_errno.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_find.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_frombuffer.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_funcptr.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_functions.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_incomplete.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_init.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_internals.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_keeprefs.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_libc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_loading.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_macholib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_memfunctions.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_numbers.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_objects.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_parameters.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_pep3118.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_pickling.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_pointers.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_prototypes.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_python_api.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_random_things.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_refcounts.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_repr.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_returnfuncptrs.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_simplesubclasses.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_sizes.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_slicing.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_stringptr.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_strings.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_struct_fields.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_structures.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_unaligned_structures.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_unicode.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_values.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_varsize_struct.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_win32.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/test/test_wintypes.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/util.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ctypes/wintypes.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/curses/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/curses/ascii.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/curses/has_key.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/curses/panel.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/curses/textpad.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/datetime.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/dbm/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/dbm/dumb.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/dbm/gnu.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/dbm/ndbm.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/decimal.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/difflib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/dis.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/_msvccompiler.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/archive_util.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/bcppcompiler.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/ccompiler.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/cmd.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/bdist.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/bdist_dumb.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/bdist_msi.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/bdist_rpm.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/bdist_wininst.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/build.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/build_clib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/build_ext.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/build_py.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/build_scripts.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/check.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/clean.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/command_template create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/config.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/install.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/install_data.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/install_egg_info.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/install_headers.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/install_lib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/install_scripts.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/register.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/sdist.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/upload.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/wininst-10.0-amd64.exe create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/wininst-10.0.exe create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/wininst-14.0-amd64.exe create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/wininst-14.0.exe create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/wininst-6.0.exe create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/wininst-7.1.exe create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/wininst-8.0.exe create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/wininst-9.0-amd64.exe create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/command/wininst-9.0.exe create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/config.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/core.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/cygwinccompiler.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/debug.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/dep_util.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/dir_util.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/dist.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/errors.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/extension.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/fancy_getopt.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/file_util.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/filelist.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/log.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/msvc9compiler.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/msvccompiler.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/spawn.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/sysconfig.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/Setup.sample create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/support.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_archive_util.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_bdist.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_bdist_dumb.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_bdist_msi.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_bdist_rpm.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_bdist_wininst.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_build.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_build_clib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_build_ext.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_build_py.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_build_scripts.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_check.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_clean.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_cmd.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_config.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_config_cmd.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_core.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_cygwinccompiler.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_dep_util.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_dir_util.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_dist.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_extension.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_file_util.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_filelist.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_install.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_install_data.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_install_headers.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_install_lib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_install_scripts.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_log.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_msvc9compiler.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_msvccompiler.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_register.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_sdist.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_spawn.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_sysconfig.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_text_file.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_unixccompiler.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_upload.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_util.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_version.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/tests/test_versionpredicate.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/text_file.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/unixccompiler.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/util.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/version.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/distutils/versionpredicate.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/doctest.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/dummy_threading.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/_encoded_words.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/_header_value_parser.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/_parseaddr.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/_policybase.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/architecture.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/base64mime.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/charset.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/contentmanager.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/encoders.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/errors.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/feedparser.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/generator.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/header.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/headerregistry.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/iterators.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/message.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/mime/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/mime/application.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/mime/audio.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/mime/base.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/mime/image.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/mime/message.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/mime/multipart.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/mime/nonmultipart.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/mime/text.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/parser.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/policy.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/quoprimime.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/email/utils.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/aliases.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/ascii.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/base64_codec.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/big5.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/big5hkscs.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/bz2_codec.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/charmap.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp037.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp1006.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp1026.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp1125.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp1140.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp1250.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp1251.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp1252.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp1253.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp1254.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp1255.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp1256.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp1257.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp1258.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp273.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp424.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp437.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp500.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp65001.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp720.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp737.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp775.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp850.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp852.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp855.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp856.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp857.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp858.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp860.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp861.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp862.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp863.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp864.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp865.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp866.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp869.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp874.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp875.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp932.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp949.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/cp950.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/euc_jis_2004.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/euc_jisx0213.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/euc_jp.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/euc_kr.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/gb18030.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/gb2312.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/gbk.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/hex_codec.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/hp_roman8.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/hz.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/idna.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/iso2022_jp.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/iso2022_jp_1.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/iso2022_jp_2.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/iso2022_jp_2004.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/iso2022_jp_3.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/iso2022_jp_ext.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/iso2022_kr.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/iso8859_1.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/iso8859_10.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/iso8859_11.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/iso8859_13.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/iso8859_14.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/iso8859_15.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/iso8859_16.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/iso8859_2.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/iso8859_3.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/iso8859_4.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/iso8859_5.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/iso8859_6.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/iso8859_7.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/iso8859_8.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/iso8859_9.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/johab.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/koi8_r.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/koi8_t.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/koi8_u.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/kz1048.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/latin_1.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/mac_arabic.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/mac_centeuro.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/mac_croatian.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/mac_cyrillic.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/mac_farsi.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/mac_greek.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/mac_iceland.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/mac_latin2.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/mac_roman.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/mac_romanian.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/mac_turkish.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/mbcs.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/oem.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/palmos.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/ptcp154.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/punycode.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/quopri_codec.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/raw_unicode_escape.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/rot_13.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/shift_jis.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/shift_jis_2004.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/shift_jisx0213.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/tis_620.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/undefined.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/unicode_escape.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/unicode_internal.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/utf_16.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/utf_16_be.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/utf_16_le.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/utf_32.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/utf_32_be.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/utf_32_le.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/utf_7.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/utf_8.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/utf_8_sig.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/uu_codec.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/encodings/zlib_codec.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ensurepip/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ensurepip/__main__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ensurepip/_bundled/pip-18.1-py2.py3-none-any.whl create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ensurepip/_bundled/setuptools-40.6.2-py2.py3-none-any.whl create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ensurepip/_uninstall.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/enum.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/filecmp.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/fileinput.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/fnmatch.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/formatter.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/fractions.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ftplib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/functools.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/genericpath.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/getopt.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/getpass.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/gettext.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/glob.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/gzip.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/hashlib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/heapq.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/hmac.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/html/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/html/entities.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/html/parser.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/http/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/http/client.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/http/cookiejar.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/http/cookies.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/http/server.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/CREDITS.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/ChangeLog create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/HISTORY.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/Icons/folder.gif create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/Icons/idle.icns create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/Icons/idle.ico create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/Icons/idle_16.gif create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/Icons/idle_16.png create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/Icons/idle_32.gif create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/Icons/idle_32.png create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/Icons/idle_48.gif create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/Icons/idle_48.png create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/Icons/minusnode.gif create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/Icons/openfolder.gif create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/Icons/plusnode.gif create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/Icons/python.gif create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/Icons/tk.gif create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/NEWS.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/NEWS2x.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/README.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/TODO.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/__main__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/_pyclbr.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/autocomplete.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/autocomplete_w.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/autoexpand.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/browser.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/calltip.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/calltip_w.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/codecontext.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/colorizer.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/config-extensions.def create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/config-highlight.def create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/config-keys.def create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/config-main.def create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/config.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/config_key.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/configdialog.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/debugger.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/debugger_r.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/debugobj.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/debugobj_r.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/delegator.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/dynoption.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/editor.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/extend.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/filelist.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/grep.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/help.html create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/help.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/help_about.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/history.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/hyperparser.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle.pyw create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/README.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/htest.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/mock_idle.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/mock_tk.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/template.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_autocomplete.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_autocomplete_w.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_autoexpand.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_browser.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_calltip.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_calltip_w.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_codecontext.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_colorizer.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_config.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_config_key.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_configdialog.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_debugger.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_debugger_r.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_debugobj.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_debugobj_r.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_delegator.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_editmenu.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_editor.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_filelist.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_grep.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_help.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_help_about.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_history.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_hyperparser.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_iomenu.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_macosx.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_mainmenu.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_multicall.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_outwin.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_paragraph.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_parenmatch.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_pathbrowser.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_percolator.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_pyparse.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_pyshell.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_query.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_redirector.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_replace.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_rpc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_rstrip.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_run.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_runscript.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_scrolledlist.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_search.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_searchbase.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_searchengine.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_squeezer.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_stackviewer.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_statusbar.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_text.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_textview.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_tooltip.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_tree.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_undo.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_warning.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_window.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/idle_test/test_zoomheight.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/iomenu.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/macosx.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/mainmenu.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/multicall.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/outwin.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/paragraph.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/parenmatch.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/pathbrowser.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/percolator.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/pyparse.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/pyshell.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/query.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/redirector.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/replace.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/rpc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/rstrip.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/run.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/runscript.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/scrolledlist.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/search.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/searchbase.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/searchengine.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/squeezer.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/stackviewer.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/statusbar.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/textview.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/tooltip.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/tree.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/undo.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/window.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/zoomheight.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/idlelib/zzdummy.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/imaplib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/imghdr.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/imp.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/importlib/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/importlib/_bootstrap.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/importlib/_bootstrap_external.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/importlib/abc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/importlib/machinery.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/importlib/util.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/inspect.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/io.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ipaddress.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/json/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/json/decoder.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/json/encoder.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/json/scanner.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/json/tool.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/keyword.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/Grammar.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/PatternGrammar.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/__main__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/btm_matcher.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/btm_utils.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixer_base.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixer_util.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_apply.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_asserts.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_basestring.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_buffer.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_dict.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_except.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_exec.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_execfile.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_exitfunc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_filter.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_funcattrs.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_future.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_getcwdu.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_has_key.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_idioms.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_import.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_imports.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_imports2.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_input.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_intern.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_isinstance.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_itertools.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_itertools_imports.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_long.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_map.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_metaclass.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_methodattrs.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_ne.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_next.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_nonzero.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_numliterals.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_operator.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_paren.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_print.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_raise.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_raw_input.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_reduce.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_reload.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_renames.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_repr.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_set_literal.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_standarderror.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_sys_exc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_throw.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_tuple_params.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_types.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_unicode.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_urllib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_ws_comma.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_xrange.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_xreadlines.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/fixes/fix_zip.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/main.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/patcomp.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/pgen2/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/pgen2/conv.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/pgen2/driver.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/pgen2/grammar.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/pgen2/literals.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/pgen2/parse.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/pgen2/pgen.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/pgen2/token.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/pgen2/tokenize.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/pygram.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/pytree.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/refactor.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/__main__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/data/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/data/bom.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/data/crlf.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/data/different_encoding.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/data/false_encoding.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/data/fixers/bad_order.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/data/fixers/myfixes/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/data/fixers/myfixes/fix_explicit.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/data/fixers/myfixes/fix_first.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/data/fixers/myfixes/fix_last.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/data/fixers/myfixes/fix_parrot.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/data/fixers/myfixes/fix_preorder.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/data/fixers/no_fixer_cls.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/data/fixers/parrot_example.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/data/infinite_recursion.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/data/py2_test_grammar.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/data/py3_test_grammar.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/pytree_idempotency.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/support.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/test_all_fixers.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/test_fixers.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/test_main.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/test_parser.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/test_pytree.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/test_refactor.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lib2to3/tests/test_util.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/linecache.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/locale.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/logging/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/logging/config.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/logging/handlers.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/lzma.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/macpath.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/macurl2path.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/mailbox.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/mailcap.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/mimetypes.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/modulefinder.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/msilib/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/msilib/schema.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/msilib/sequence.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/msilib/text.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/multiprocessing/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/multiprocessing/connection.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/multiprocessing/context.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/multiprocessing/dummy/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/multiprocessing/dummy/connection.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/multiprocessing/forkserver.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/multiprocessing/heap.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/multiprocessing/managers.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/multiprocessing/pool.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/multiprocessing/popen_fork.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/multiprocessing/popen_forkserver.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/multiprocessing/popen_spawn_posix.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/multiprocessing/popen_spawn_win32.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/multiprocessing/process.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/multiprocessing/queues.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/multiprocessing/reduction.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/multiprocessing/resource_sharer.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/multiprocessing/semaphore_tracker.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/multiprocessing/sharedctypes.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/multiprocessing/spawn.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/multiprocessing/synchronize.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/multiprocessing/util.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/netrc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/nntplib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ntpath.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/nturl2path.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/numbers.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/opcode.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/operator.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/optparse.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/os.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/pathlib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/pdb.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/pickle.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/pickletools.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/pipes.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/pkgutil.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/platform.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/plistlib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/poplib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/posixpath.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/pprint.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/profile.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/pstats.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/pty.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/py_compile.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/pyclbr.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/pydoc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/pydoc_data/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/pydoc_data/_pydoc.css create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/pydoc_data/topics.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/queue.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/quopri.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/random.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/re.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/reprlib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/rlcompleter.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/runpy.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/sched.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/secrets.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/selectors.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/shelve.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/shlex.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/shutil.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/signal.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/site-packages/README.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/site.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/smtpd.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/smtplib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/sndhdr.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/socket.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/socketserver.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/sqlite3/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/sqlite3/dbapi2.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/sqlite3/dump.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/sqlite3/test/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/sqlite3/test/dbapi.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/sqlite3/test/dump.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/sqlite3/test/factory.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/sqlite3/test/hooks.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/sqlite3/test/regression.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/sqlite3/test/transactions.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/sqlite3/test/types.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/sqlite3/test/userfunctions.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/sre_compile.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/sre_constants.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/sre_parse.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/ssl.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/stat.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/statistics.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/string.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/stringprep.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/struct.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/subprocess.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/sunau.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/symbol.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/symtable.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/sysconfig.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tabnanny.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tarfile.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/telnetlib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tempfile.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/Sine-1000Hz-300ms.aif create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/__main__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/_test_multiprocessing.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/allsans.pem create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/ann_module.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/ann_module2.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/ann_module3.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/audiodata/pluck-alaw.aifc create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/audiodata/pluck-pcm16.aiff create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/audiodata/pluck-pcm16.au create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/audiodata/pluck-pcm16.wav create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/audiodata/pluck-pcm24.aiff create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/audiodata/pluck-pcm24.au create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/audiodata/pluck-pcm24.wav create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/audiodata/pluck-pcm32.aiff create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/audiodata/pluck-pcm32.au create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/audiodata/pluck-pcm32.wav create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/audiodata/pluck-pcm8.aiff create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/audiodata/pluck-pcm8.au create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/audiodata/pluck-pcm8.wav create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/audiodata/pluck-ulaw.aifc create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/audiodata/pluck-ulaw.au create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/audiotest.au create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/audiotests.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/autotest.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/bad_coding.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/bad_coding2.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/badcert.pem create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/badkey.pem create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/badsyntax_3131.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/badsyntax_future10.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/badsyntax_future3.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/badsyntax_future4.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/badsyntax_future5.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/badsyntax_future6.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/badsyntax_future7.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/badsyntax_future8.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/badsyntax_future9.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/badsyntax_pep3120.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/bisect.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/bytecode_helper.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/capath/4e1295a3.0 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/capath/5ed36f99.0 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/capath/6e88d7b8.0 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/capath/99d0fa06.0 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/capath/b1930218.0 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/capath/ceff1710.0 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cfgparser.1 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cfgparser.2 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cfgparser.3 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/big5-utf8.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/big5.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/big5hkscs-utf8.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/big5hkscs.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/cp949-utf8.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/cp949.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/euc_jisx0213-utf8.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/euc_jisx0213.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/euc_jp-utf8.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/euc_jp.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/euc_kr-utf8.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/euc_kr.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/gb18030-utf8.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/gb18030.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/gb2312-utf8.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/gb2312.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/gbk-utf8.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/gbk.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/hz-utf8.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/hz.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/iso2022_jp-utf8.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/iso2022_jp.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/iso2022_kr-utf8.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/iso2022_kr.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/johab-utf8.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/johab.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/shift_jis-utf8.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/shift_jis.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/shift_jisx0213-utf8.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cjkencodings/shift_jisx0213.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/cmath_testcases.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/coding20731.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/crashers/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/crashers/bogus_code_obj.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/crashers/gc_inspection.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/crashers/infinite_loop_re.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/crashers/mutation_inside_cyclegc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/crashers/recursive_call.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/crashers/trace_at_recursion_limit.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/crashers/underlying_dict.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/curses_tests.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/datetimetester.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/abs.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/add.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/and.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/base.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/clamp.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/class.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/compare.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/comparetotal.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/comparetotmag.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/copy.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/copyabs.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/copynegate.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/copysign.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddAbs.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddAdd.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddAnd.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddBase.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddCanonical.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddClass.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddCompare.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddCompareSig.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddCompareTotal.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddCompareTotalMag.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddCopy.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddCopyAbs.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddCopyNegate.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddCopySign.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddDivide.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddDivideInt.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddEncode.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddFMA.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddInvert.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddLogB.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddMax.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddMaxMag.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddMin.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddMinMag.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddMinus.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddMultiply.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddNextMinus.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddNextPlus.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddNextToward.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddOr.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddPlus.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddQuantize.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddReduce.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddRemainder.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddRemainderNear.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddRotate.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddSameQuantum.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddScaleB.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddShift.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddSubtract.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddToIntegral.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ddXor.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/decDouble.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/decQuad.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/decSingle.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/divide.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/divideint.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqAbs.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqAdd.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqAnd.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqBase.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqCanonical.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqClass.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqCompare.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqCompareSig.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqCompareTotal.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqCompareTotalMag.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqCopy.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqCopyAbs.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqCopyNegate.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqCopySign.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqDivide.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqDivideInt.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqEncode.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqFMA.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqInvert.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqLogB.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqMax.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqMaxMag.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqMin.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqMinMag.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqMinus.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqMultiply.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqNextMinus.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqNextPlus.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqNextToward.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqOr.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqPlus.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqQuantize.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqReduce.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqRemainder.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqRemainderNear.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqRotate.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqSameQuantum.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqScaleB.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqShift.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqSubtract.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqToIntegral.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dqXor.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dsBase.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/dsEncode.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/exp.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/extra.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/fma.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/inexact.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/invert.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/ln.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/log10.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/logb.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/max.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/maxmag.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/min.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/minmag.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/minus.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/multiply.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/nextminus.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/nextplus.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/nexttoward.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/or.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/plus.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/power.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/powersqrt.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/quantize.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/randomBound32.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/randoms.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/reduce.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/remainder.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/remainderNear.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/rescale.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/rotate.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/rounding.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/samequantum.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/scaleb.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/shift.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/squareroot.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/subtract.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/testall.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/tointegral.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/tointegralx.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/decimaltestdata/xor.decTest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/dis_module.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/doctest_aliases.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/double_const.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/dtracedata/assert_usable.d create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/dtracedata/assert_usable.stp create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/dtracedata/call_stack.d create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/dtracedata/call_stack.d.expected create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/dtracedata/call_stack.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/dtracedata/call_stack.stp create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/dtracedata/call_stack.stp.expected create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/dtracedata/gc.d create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/dtracedata/gc.d.expected create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/dtracedata/gc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/dtracedata/gc.stp create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/dtracedata/gc.stp.expected create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/dtracedata/instance.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/dtracedata/line.d create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/dtracedata/line.d.expected create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/dtracedata/line.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/eintrdata/eintr_tester.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/empty.vbs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/encoded_modules/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/encoded_modules/module_iso_8859_1.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/encoded_modules/module_koi8_r.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/exception_hierarchy.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/ffdh3072.pem create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/final_a.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/final_b.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/floating_points.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/fork_wait.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/formatfloat_testcases.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/future_test1.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/future_test2.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/gdb_sample.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/ieee754.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/imghdrdata/python.bmp create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/imghdrdata/python.exr create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/imghdrdata/python.gif create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/imghdrdata/python.jpg create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/imghdrdata/python.pbm create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/imghdrdata/python.pgm create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/imghdrdata/python.png create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/imghdrdata/python.ppm create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/imghdrdata/python.ras create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/imghdrdata/python.sgi create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/imghdrdata/python.tiff create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/imghdrdata/python.webp create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/imghdrdata/python.xbm create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/imp_dummy.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/inspect_fodder.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/inspect_fodder2.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/keycert.passwd.pem create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/keycert.pem create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/keycert2.pem create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/keycert3.pem create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/keycert4.pem create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/leakers/README.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/leakers/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/leakers/test_ctypes.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/leakers/test_selftype.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/libregrtest/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/libregrtest/cmdline.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/libregrtest/main.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/libregrtest/refleak.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/libregrtest/runtest.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/libregrtest/runtest_mp.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/libregrtest/save_env.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/libregrtest/setup.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/libregrtest/utils.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/list_tests.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/lock_tests.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/mailcap.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/make_ssl_certs.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/mapping_tests.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/math_testcases.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/memory_watchdog.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/mime.types create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/mock_socket.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/mod_generics_cache.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/mp_fork_bomb.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/mp_preload.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/multibytecodec_support.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/nokia.pem create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/nullbytecert.pem create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/nullcert.pem create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/outstanding_bugs.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/pickletester.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/profilee.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/pstats.pck create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/pycacert.pem create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/pycakey.pem create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/pyclbr_input.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/pydoc_mod.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/pydocfodder.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/pystone.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/pythoninfo.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/randv2_32.pck create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/randv2_64.pck create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/randv3.pck create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/re_tests.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/regrtest.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/relimport.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/reperf.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/revocation.crl create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/sample_doctest.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/sample_doctest_no_docstrings.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/sample_doctest_no_doctests.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/selfsigned_pythontestdotnet.pem create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/seq_tests.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/sgml_input.html create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/signalinterproctester.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/sndhdrdata/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/sndhdrdata/sndhdr.8svx create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/sndhdrdata/sndhdr.aifc create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/sndhdrdata/sndhdr.aiff create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/sndhdrdata/sndhdr.au create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/sndhdrdata/sndhdr.hcom create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/sndhdrdata/sndhdr.sndt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/sndhdrdata/sndhdr.voc create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/sndhdrdata/sndhdr.wav create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/sortperf.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/ssl_cert.pem create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/ssl_key.passwd.pem create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/ssl_key.pem create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/ssl_servers.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/ssltests.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/string_tests.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/subprocessdata/fd_status.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/subprocessdata/input_reader.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/subprocessdata/qcat.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/subprocessdata/qgrep.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/subprocessdata/sigchild_ignore.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/support/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/support/script_helper.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/support/testresult.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test___all__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test___future__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test__locale.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test__opcode.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test__osx_support.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_abc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_abstract_numbers.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_aifc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_argparse.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_array.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_asdl_parser.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_ast.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_asyncgen.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_asynchat.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_asyncio/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_asyncio/__main__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_asyncio/echo.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_asyncio/echo2.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_asyncio/echo3.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_asyncio/test_base_events.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_asyncio/test_events.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_asyncio/test_futures.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_asyncio/test_locks.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_asyncio/test_pep492.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_asyncio/test_proactor_events.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_asyncio/test_queues.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_asyncio/test_selector_events.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_asyncio/test_sslproto.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_asyncio/test_streams.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_asyncio/test_subprocess.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_asyncio/test_tasks.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_asyncio/test_transports.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_asyncio/test_unix_events.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_asyncio/test_windows_events.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_asyncio/test_windows_utils.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_asyncore.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_atexit.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_audioop.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_augassign.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_base64.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_baseexception.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_bdb.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_bigaddrspace.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_bigmem.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_binascii.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_binhex.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_binop.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_bisect.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_bool.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_buffer.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_bufio.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_builtin.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_bytes.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_bz2.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_calendar.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_call.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_capi.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_cgi.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_cgitb.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_charmapcodec.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_class.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_cmath.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_cmd.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_cmd_line.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_cmd_line_script.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_code.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_code_module.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_codeccallbacks.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_codecencodings_cn.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_codecencodings_hk.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_codecencodings_iso2022.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_codecencodings_jp.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_codecencodings_kr.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_codecencodings_tw.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_codecmaps_cn.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_codecmaps_hk.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_codecmaps_jp.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_codecmaps_kr.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_codecmaps_tw.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_codecs.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_codeop.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_collections.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_colorsys.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_compare.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_compile.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_compileall.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_complex.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_concurrent_futures.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_configparser.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_contains.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_contextlib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_copy.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_copyreg.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_coroutines.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_cprofile.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_crashers.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_crypt.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_csv.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_ctypes.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_curses.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_datetime.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_dbm.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_dbm_dumb.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_dbm_gnu.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_dbm_ndbm.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_decimal.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_decorators.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_defaultdict.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_deque.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_descr.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_descrtut.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_devpoll.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_dict.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_dict_version.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_dictcomps.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_dictviews.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_difflib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_difflib_expect.html create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_dis.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_distutils.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_doctest.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_doctest.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_doctest2.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_doctest2.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_doctest3.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_doctest4.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_docxmlrpc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_dtrace.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_dummy_thread.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_dummy_threading.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_dynamic.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_dynamicclassattribute.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_eintr.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/__main__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/PyBanner048.gif create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/audiotest.au create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_01.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_02.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_03.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_04.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_05.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_06.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_07.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_08.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_09.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_10.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_11.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_12.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_12a.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_13.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_14.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_15.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_16.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_17.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_18.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_19.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_20.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_21.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_22.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_23.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_24.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_25.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_26.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_27.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_28.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_29.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_30.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_31.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_32.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_33.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_34.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_35.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_36.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_37.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_38.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_39.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_40.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_41.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_42.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_43.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_44.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_45.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/data/msg_46.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/test__encoded_words.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/test__header_value_parser.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/test_asian_codecs.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/test_contentmanager.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/test_defect_handling.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/test_email.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/test_generator.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/test_headerregistry.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/test_inversion.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/test_message.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/test_parser.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/test_pickleable.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/test_policy.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/test_utils.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_email/torture_test.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_ensurepip.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_enum.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_enumerate.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_eof.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_epoll.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_errno.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_exception_hierarchy.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_exception_variations.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_exceptions.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_extcall.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_faulthandler.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_fcntl.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_file.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_file_eintr.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_filecmp.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_fileinput.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_fileio.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_finalization.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_float.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_flufl.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_fnmatch.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_fork1.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_format.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_fractions.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_frame.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_fstring.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_ftplib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_funcattrs.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_functools.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_future.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_future3.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_future4.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_future5.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_gc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_gdb.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_generator_stop.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_generators.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_genericpath.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_genexps.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_getargs2.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_getopt.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_getpass.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_gettext.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_glob.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_global.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_grammar.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_grp.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_gzip.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_hash.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_hashlib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_heapq.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_hmac.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_html.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_htmlparser.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_http_cookiejar.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_http_cookies.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_httplib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_httpservers.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_idle.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_imaplib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_imghdr.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_imp.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_import/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_import/__main__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_import/data/circular_imports/basic.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_import/data/circular_imports/basic2.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_import/data/circular_imports/indirect.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_import/data/circular_imports/rebinding.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_import/data/circular_imports/rebinding2.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_import/data/circular_imports/subpackage.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_import/data/circular_imports/subpkg/subpackage2.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_import/data/circular_imports/subpkg/util.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_import/data/circular_imports/util.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_import/data/package/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_import/data/package/submodule.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_import/data/package2/submodule1.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_import/data/package2/submodule2.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/__main__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/abc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/builtin/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/builtin/__main__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/builtin/test_finder.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/builtin/test_loader.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/extension/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/extension/__main__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/extension/test_case_sensitivity.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/extension/test_finder.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/extension/test_loader.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/extension/test_path_hook.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/frozen/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/frozen/__main__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/frozen/test_finder.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/frozen/test_loader.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/import_/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/import_/__main__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/import_/test___loader__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/import_/test___package__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/import_/test_api.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/import_/test_caching.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/import_/test_fromlist.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/import_/test_meta_path.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/import_/test_packages.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/import_/test_path.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/import_/test_relative_imports.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/namespace_pkgs/both_portions/foo/one.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/namespace_pkgs/both_portions/foo/two.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/namespace_pkgs/missing_directory.zip create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test/empty create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/namespace_pkgs/nested_portion1.zip create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/one.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/namespace_pkgs/portion1/foo/one.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/namespace_pkgs/portion2/foo/two.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/namespace_pkgs/project1/parent/child/one.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/namespace_pkgs/project2/parent/child/two.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/namespace_pkgs/project3/parent/child/three.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/namespace_pkgs/top_level_portion1.zip create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/source/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/source/__main__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/source/test_case_sensitivity.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/source/test_file_loader.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/source/test_finder.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/source/test_path_hook.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/source/test_source_encoding.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/test_abc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/test_api.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/test_lazy.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/test_locks.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/test_namespace_pkgs.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/test_spec.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/test_util.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/test_windows.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_importlib/util.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_index.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_inspect.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_int.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_int_literal.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_io.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_ioctl.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_ipaddress.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_isinstance.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_iter.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_iterlen.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_itertools.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_json/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_json/__main__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_json/test_decode.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_json/test_default.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_json/test_dump.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_json/test_encode_basestring_ascii.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_json/test_enum.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_json/test_fail.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_json/test_float.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_json/test_indent.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_json/test_pass1.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_json/test_pass2.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_json/test_pass3.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_json/test_recursion.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_json/test_scanstring.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_json/test_separators.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_json/test_speedups.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_json/test_tool.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_json/test_unicode.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_keyword.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_keywordonlyarg.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_kqueue.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_largefile.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_lib2to3.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_linecache.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_list.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_listcomps.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_locale.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_logging.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_long.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_longexp.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_lzma.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_macpath.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_macurl2path.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_mailbox.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_mailcap.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_marshal.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_math.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_memoryio.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_memoryview.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_metaclass.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_mimetypes.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_minidom.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_mmap.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_module.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_modulefinder.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_msilib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_multibytecodec.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_multiprocessing_fork.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_multiprocessing_forkserver.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_multiprocessing_main_handling.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_multiprocessing_spawn.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_netrc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_nis.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_nntplib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_normalization.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_ntpath.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_numeric_tower.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_opcodes.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_openpty.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_operator.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_optparse.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_ordered_dict.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_os.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_ossaudiodev.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_osx_env.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_parser.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_pathlib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_pdb.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_peepholer.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_pickle.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_pickletools.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_pipes.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_pkg.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_pkgimport.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_pkgutil.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_platform.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_plistlib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_poll.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_popen.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_poplib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_posix.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_posixpath.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_pow.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_pprint.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_print.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_profile.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_property.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_pstats.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_pty.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_pulldom.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_pwd.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_py_compile.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_pyclbr.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_pydoc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_pyexpat.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_queue.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_quopri.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_raise.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_random.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_range.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_re.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_readline.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_regrtest.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_repl.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_reprlib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_resource.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_richcmp.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_rlcompleter.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_robotparser.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_runpy.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_sax.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_sched.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_scope.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_script_helper.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_secrets.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_select.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_selectors.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_set.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_setcomps.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_shelve.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_shlex.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_shutil.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_signal.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_site.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_slice.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_smtpd.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_smtplib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_smtpnet.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_sndhdr.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_socket.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_socketserver.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_sort.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_source_encoding.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_spwd.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_sqlite.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_ssl.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_startfile.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_stat.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_statistics.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_strftime.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_string.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_string_literals.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_stringprep.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_strptime.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_strtod.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_struct.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_structmembers.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_structseq.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_subclassinit.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_subprocess.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_sunau.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_sundry.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_super.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_support.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_symbol.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_symtable.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_syntax.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_sys.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_sys_setprofile.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_sys_settrace.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_sysconfig.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_syslog.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_tarfile.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_tcl.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_telnetlib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_tempfile.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_textwrap.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_thread.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_threaded_import.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_threadedtempfile.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_threading.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_threading_local.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_threadsignals.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_time.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_timeit.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_timeout.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_tix.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_tk.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_tokenize.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_tools/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_tools/__main__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_tools/test_fixcid.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_tools/test_gprof2html.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_tools/test_i18n.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_tools/test_md5sum.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_tools/test_pdeps.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_tools/test_pindent.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_tools/test_reindent.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_tools/test_sundry.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_tools/test_unparse.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_trace.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_traceback.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_tracemalloc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_ttk_guionly.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_ttk_textonly.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_tuple.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_turtle.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_typechecks.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_types.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_typing.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_ucn.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_unary.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_unicode.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_unicode_file.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_unicode_file_functions.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_unicode_identifiers.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_unicodedata.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_unittest.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_univnewlines.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_unpack.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_unpack_ex.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_urllib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_urllib2.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_urllib2_localnet.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_urllib2net.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_urllib_response.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_urllibnet.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_urlparse.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_userdict.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_userlist.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_userstring.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_utf8source.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_uu.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_uuid.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_venv.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_wait3.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_wait4.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_warnings/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_warnings/__main__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_warnings/data/import_warning.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_warnings/data/stacklevel.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_wave.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_weakref.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_weakset.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_webbrowser.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_winconsoleio.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_winreg.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_winsound.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_with.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_wsgiref.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_xdrlib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_xml_dom_minicompat.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_xml_etree.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_xml_etree_c.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_xmlrpc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_xmlrpc_net.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_yield_from.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_zipapp.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_zipfile.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_zipfile64.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_zipimport.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_zipimport_support.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/test_zlib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/testcodec.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/testtar.tar create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/tf_inherit_check.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/threaded_import_hangers.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/time_hashlib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/tokenize_tests-latin1-coding-cookie-and-utf8-bom-sig.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/tokenize_tests-no-coding-cookie-and-utf8-bom-sig-only.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/tokenize_tests-utf8-coding-cookie-and-no-utf8-bom-sig.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/tokenize_tests-utf8-coding-cookie-and-utf8-bom-sig.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/tokenize_tests.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/tracedmodules/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/tracedmodules/testmod.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/win_console_handler.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/xmltestdata/expat224_utf8_bug.xml create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/xmltestdata/simple-ns.xml create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/xmltestdata/simple.xml create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/xmltestdata/test.xml create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/xmltestdata/test.xml.out create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/xmltests.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/zip_cp437_header.zip create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/test/zipdir.zip create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/textwrap.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/this.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/threading.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/timeit.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/__main__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/colorchooser.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/commondialog.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/constants.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/dialog.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/dnd.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/filedialog.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/font.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/messagebox.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/scrolledtext.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/simpledialog.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/test/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/test/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/test/runtktests.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/test/support.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/test/test_tkinter/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/test/test_tkinter/test_font.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/test/test_tkinter/test_geometry_managers.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/test/test_tkinter/test_images.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/test/test_tkinter/test_loadtk.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/test/test_tkinter/test_misc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/test/test_tkinter/test_text.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/test/test_tkinter/test_variables.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/test/test_tkinter/test_widgets.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/test/test_ttk/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/test/test_ttk/test_extensions.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/test/test_ttk/test_functions.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/test/test_ttk/test_style.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/test/test_ttk/test_widgets.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/test/widget_tests.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/tix.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tkinter/ttk.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/token.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tokenize.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/trace.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/traceback.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tracemalloc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/tty.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/turtle.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/turtledemo/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/turtledemo/__main__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/turtledemo/bytedesign.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/turtledemo/chaos.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/turtledemo/clock.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/turtledemo/colormixer.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/turtledemo/forest.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/turtledemo/fractalcurves.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/turtledemo/lindenmayer.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/turtledemo/minimal_hanoi.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/turtledemo/nim.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/turtledemo/paint.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/turtledemo/peace.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/turtledemo/penrose.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/turtledemo/planet_and_moon.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/turtledemo/rosette.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/turtledemo/round_dance.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/turtledemo/sorting_animate.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/turtledemo/tree.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/turtledemo/turtle.cfg create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/turtledemo/two_canvases.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/turtledemo/yinyang.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/types.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/typing.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/__main__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/case.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/loader.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/main.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/mock.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/result.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/runner.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/signals.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/suite.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/__main__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/_test_warnings.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/dummy.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/support.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/test_assertions.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/test_break.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/test_case.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/test_discovery.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/test_functiontestcase.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/test_loader.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/test_program.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/test_result.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/test_runner.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/test_setups.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/test_skipping.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/test_suite.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/testmock/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/testmock/__main__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/testmock/support.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/testmock/testcallable.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/testmock/testhelpers.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/testmock/testmagicmethods.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/testmock/testmock.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/testmock/testpatch.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/testmock/testsentinel.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/test/testmock/testwith.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/unittest/util.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/urllib/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/urllib/error.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/urllib/parse.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/urllib/request.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/urllib/response.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/urllib/robotparser.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/uu.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/uuid.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/venv/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/venv/__main__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/venv/scripts/common/activate create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/venv/scripts/nt/Activate.ps1 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/venv/scripts/nt/activate.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/venv/scripts/nt/deactivate.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/venv/scripts/posix/activate.csh create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/venv/scripts/posix/activate.fish create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/warnings.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/wave.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/weakref.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/webbrowser.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/wsgiref/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/wsgiref/handlers.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/wsgiref/headers.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/wsgiref/simple_server.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/wsgiref/util.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/wsgiref/validate.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xdrlib.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xml/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xml/dom/NodeFilter.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xml/dom/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xml/dom/domreg.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xml/dom/expatbuilder.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xml/dom/minicompat.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xml/dom/minidom.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xml/dom/pulldom.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xml/dom/xmlbuilder.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xml/etree/ElementInclude.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xml/etree/ElementPath.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xml/etree/ElementTree.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xml/etree/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xml/etree/cElementTree.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xml/parsers/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xml/parsers/expat.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xml/sax/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xml/sax/_exceptions.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xml/sax/expatreader.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xml/sax/handler.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xml/sax/saxutils.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xml/sax/xmlreader.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xmlrpc/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xmlrpc/client.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/xmlrpc/server.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/zipapp.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Lib/zipfile.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/BuildScript/README.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/BuildScript/build-installer.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/BuildScript/resources/Conclusion.rtf create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/BuildScript/resources/License.rtf create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/BuildScript/resources/ReadMe.rtf create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/BuildScript/resources/Welcome.rtf create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/BuildScript/resources/background.jpg create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/BuildScript/resources/install_certificates.command create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/BuildScript/scripts/postflight.documentation create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/BuildScript/scripts/postflight.ensurepip create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/BuildScript/scripts/postflight.framework create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/BuildScript/scripts/postflight.patch-profile create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/BuildScript/seticon.m create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/Extras.install.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/IDLE/IDLE.app/Contents/Info.plist create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/IDLE/IDLE.app/Contents/MacOS/IDLE create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/IDLE/IDLE.app/Contents/PkgInfo create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/IDLE/IDLE.app/Contents/Resources/IDLE.icns create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/IDLE/IDLE.app/Contents/Resources/PythonCompiled.icns create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/IDLE/IDLE.app/Contents/Resources/PythonSource.icns create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/IDLE/IDLE.app/Contents/Resources/idlemain.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/Icons/Disk Image.icns create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/Icons/IDLE.icns create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/Icons/Python Folder.icns create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/Icons/PythonCompiled.icns create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/Icons/PythonLauncher.icns create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/Icons/PythonSource.icns create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/Icons/ReadMe.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/Makefile.in create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/PythonLauncher/English.lproj/Credits.rtf create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/PythonLauncher/English.lproj/MainMenu.nib/classes.nib create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/PythonLauncher/English.lproj/MainMenu.nib/info.nib create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/PythonLauncher/English.lproj/MainMenu.nib/objects.nib create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/PythonLauncher/English.lproj/MyDocument.nib/classes.nib create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/PythonLauncher/English.lproj/MyDocument.nib/info.nib create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/PythonLauncher/English.lproj/MyDocument.nib/objects.nib create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/PythonLauncher/English.lproj/PreferenceWindow.nib/classes.nib create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/PythonLauncher/English.lproj/PreferenceWindow.nib/info.nib create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/PythonLauncher/English.lproj/PreferenceWindow.nib/objects.nib create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/PythonLauncher/FileSettings.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/PythonLauncher/FileSettings.m create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/PythonLauncher/Info.plist.in create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/PythonLauncher/Makefile.in create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/PythonLauncher/MyAppDelegate.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/PythonLauncher/MyAppDelegate.m create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/PythonLauncher/MyDocument.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/PythonLauncher/MyDocument.m create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/PythonLauncher/PreferencesWindowController.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/PythonLauncher/PreferencesWindowController.m create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/PythonLauncher/doscript.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/PythonLauncher/doscript.m create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/PythonLauncher/factorySettings.plist create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/PythonLauncher/main.m create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/Resources/app/Info.plist.in create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/Resources/app/PkgInfo create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/Resources/app/Resources/PythonApplet.icns create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/Resources/app/Resources/PythonInterpreter.icns create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/Resources/framework/Info.plist.in create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/Resources/iconsrc/IDE.psd create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/Resources/iconsrc/PackageManager.psd create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/Resources/iconsrc/PythonApplet.psd create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/Resources/iconsrc/PythonCompiled.psd create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/Resources/iconsrc/PythonIcon.psd create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/Resources/iconsrc/PythonSource.psd create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/Resources/iconsrc/PythonWSource.psd create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/Tools/plistlib_generate_testdata.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Mac/Tools/pythonw.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Makefile.pre.in create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/ACKS create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/HISTORY create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.5.0.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.5.0a1.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.5.0a2.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.5.0a3.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.5.0a4.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.5.0b1.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.5.0b2.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.5.0b3.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.5.0b4.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.5.0rc1.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.5.0rc2.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.5.0rc3.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.5.0rc4.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.5.1.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.5.1rc1.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.5.2.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.5.2rc1.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.5.3.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.5.3rc1.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.0.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.0a1.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.0a2.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.0a3.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.0a4.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.0b1.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.0b2.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.0b3.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.0b4.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.0rc1.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.0rc2.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.1.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.1rc1.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.2.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.2rc1.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.2rc2.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.3.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.3rc1.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.4.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.4rc1.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.5.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.5rc1.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.6.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.6rc1.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.7.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.7rc1.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.7rc2.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.8.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/3.6.8rc1.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/next/C API/README.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/next/Core and Builtins/README.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/next/Documentation/README.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/next/IDLE/README.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/next/Library/README.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/next/Security/README.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/next/Tests/README.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/next/Tools-Demos/README.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/next/Windows/README.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/NEWS.d/next/macOS/README.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/Porting create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/README.AIX create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/README.coverity create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/README.valgrind create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/SpecialBuilds.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/coverity_model.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/gdbinit create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/indent.pro create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/python-config.in create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/python-config.sh.in create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/python-wing3.wpr create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/python-wing4.wpr create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/python-wing5.wpr create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/python.man create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/python.pc.in create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/svnmap.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/valgrind-python.supp create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Misc/vgrindefs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/Setup.config.in create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/Setup.dist create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_asynciomodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_bisectmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_blake2/blake2b2s.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_blake2/blake2b_impl.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_blake2/blake2module.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_blake2/blake2ns.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_blake2/blake2s_impl.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_blake2/clinic/blake2b_impl.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_blake2/clinic/blake2s_impl.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_blake2/impl/blake2-config.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_blake2/impl/blake2-impl.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_blake2/impl/blake2.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_blake2/impl/blake2b-load-sse2.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_blake2/impl/blake2b-load-sse41.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_blake2/impl/blake2b-ref.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_blake2/impl/blake2b-round.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_blake2/impl/blake2b.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_blake2/impl/blake2s-load-sse2.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_blake2/impl/blake2s-load-sse41.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_blake2/impl/blake2s-load-xop.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_blake2/impl/blake2s-ref.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_blake2/impl/blake2s-round.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_blake2/impl/blake2s.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_bz2module.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_codecsmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_collectionsmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_cryptmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_csv.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/_ctypes.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/_ctypes_test.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/_ctypes_test.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/callbacks.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/callproc.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/cfield.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/ctypes.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/ctypes_dlfcn.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/darwin/LICENSE create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/darwin/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/darwin/README.ctypes create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/darwin/dlfcn.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/darwin/dlfcn_simple.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi.diff create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/ChangeLog create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/ChangeLog.libffi create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/ChangeLog.libffi-3.1 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/ChangeLog.libgcj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/ChangeLog.v1 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/LICENSE create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/Makefile.am create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/Makefile.in create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/acinclude.m4 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/aclocal.m4 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/compile create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/config.guess create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/config.sub create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/configure create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/configure.ac create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/depcomp create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/doc/libffi.info create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/doc/libffi.texi create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/doc/stamp-vti create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/doc/version.texi create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/fficonfig.h.in create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/fficonfig.py.in create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/generate-darwin-source-and-headers.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/include/Makefile.am create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/include/Makefile.in create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/include/ffi.h.in create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/include/ffi_common.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/install-sh create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/libffi.pc.in create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/libffi.xcodeproj/project.pbxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/libtool-ldflags create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/libtool-version create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/ltmain.sh create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/m4/asmcfi.m4 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/m4/ax_append_flag.m4 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/m4/ax_cc_maxopt.m4 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/m4/ax_cflags_warn_all.m4 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/m4/ax_check_compile_flag.m4 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/m4/ax_compiler_vendor.m4 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/m4/ax_configure_args.m4 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/m4/ax_enable_builddir.m4 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/m4/ax_gcc_archflag.m4 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/m4/ax_gcc_x86_cpuid.m4 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/m4/libtool.m4 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/m4/ltoptions.m4 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/m4/ltsugar.m4 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/m4/ltversion.m4 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/m4/lt~obsolete.m4 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/man/Makefile.am create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/man/Makefile.in create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/man/ffi.3 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/man/ffi_call.3 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/man/ffi_prep_cif.3 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/man/ffi_prep_cif_var.3 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/mdate-sh create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/missing create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/msvcc.sh create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/aarch64/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/aarch64/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/aarch64/sysv.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/alpha/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/alpha/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/alpha/osf.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/arc/arcompact.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/arc/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/arc/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/arm/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/arm/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/arm/gentramp.sh create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/arm/sysv.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/arm/trampoline.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/avr32/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/avr32/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/avr32/sysv.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/bfin/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/bfin/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/bfin/sysv.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/closures.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/cris/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/cris/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/cris/sysv.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/debug.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/dlmalloc.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/frv/eabi.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/frv/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/frv/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/ia64/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/ia64/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/ia64/ia64_flags.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/ia64/unix.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/java_raw_api.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/m32r/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/m32r/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/m32r/sysv.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/m68k/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/m68k/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/m68k/sysv.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/m88k/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/m88k/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/m88k/obsd.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/metag/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/metag/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/metag/sysv.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/microblaze/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/microblaze/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/microblaze/sysv.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/mips/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/mips/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/mips/n32.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/mips/o32.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/moxie/eabi.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/moxie/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/moxie/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/nios2/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/nios2/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/nios2/sysv.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/pa/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/pa/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/pa/hpux32.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/pa/linux.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/powerpc/aix.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/powerpc/aix_closure.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/powerpc/asm.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/powerpc/darwin.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/powerpc/darwin_closure.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/powerpc/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/powerpc/ffi_linux64.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/powerpc/ffi_powerpc.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/powerpc/ffi_sysv.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/powerpc/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/powerpc/linux64.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/powerpc/linux64_closure.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/powerpc/ppc_closure.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/powerpc/sysv.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/prep_cif.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/raw_api.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/s390/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/s390/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/s390/sysv.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/sh/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/sh/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/sh/sysv.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/sh64/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/sh64/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/sh64/sysv.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/sparc/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/sparc/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/sparc/v8.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/sparc/v9.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/tile/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/tile/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/tile/tile.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/types.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/vax/elfbsd.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/vax/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/vax/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/x86/darwin.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/x86/darwin64.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/x86/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/x86/ffi64.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/x86/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/x86/freebsd.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/x86/sysv.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/x86/unix64.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/x86/win32.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/x86/win64.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/xtensa/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/xtensa/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/src/xtensa/sysv.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/Makefile.am create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/Makefile.in create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/config/default.exp create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/lib/libffi.exp create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/lib/target-libpath.exp create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/lib/wrapper.exp create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/call.exp create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/closure_fn0.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/closure_fn1.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/closure_fn2.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/closure_fn3.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/closure_fn4.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/closure_fn5.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/closure_fn6.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/closure_loc_fn0.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/closure_simple.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_12byte.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_16byte.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_18byte.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_19byte.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_1_1byte.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_20byte.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_20byte1.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_24byte.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_2byte.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_3_1byte.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_3byte1.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_3byte2.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_4_1byte.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_4byte.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_5_1_byte.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_5byte.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_64byte.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_6_1_byte.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_6byte.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_7_1_byte.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_7byte.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_8byte.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_9byte1.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_9byte2.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_double.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_float.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_longdouble.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_longdouble_split.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_pointer.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_sint16.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_sint32.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_sint64.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_uint16.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_uint32.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_uint64.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_dbls_struct.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_double.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_double_va.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_float.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_longdouble.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_longdouble_va.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_multi_schar.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_multi_sshort.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_multi_sshortchar.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_multi_uchar.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_multi_ushort.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_multi_ushortchar.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_pointer.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_pointer_stack.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_schar.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_sint.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_sshort.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_struct_va1.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_uchar.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_uchar_va.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_uint.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_uint_va.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_ulong_va.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_ulonglong.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_ushort.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/cls_ushort_va.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/err_bad_abi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/err_bad_typedef.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/ffitest.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/float.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/float1.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/float2.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/float3.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/float4.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/float_va.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/huge_struct.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/many.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/many2.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/negint.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct1.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct10.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct11.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct2.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct3.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct4.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct5.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct6.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct7.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct8.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct9.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/problem1.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/promotion.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/pyobjc-tc.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/return_dbl.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/return_dbl1.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/return_dbl2.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/return_fl.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/return_fl1.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/return_fl2.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/return_fl3.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/return_ldl.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/return_ll.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/return_ll1.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/return_sc.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/return_sl.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/return_uc.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/return_ul.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/stret_large.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/stret_large2.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/stret_medium.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/stret_medium2.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/strlen.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/strlen2.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/strlen3.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/strlen4.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/struct1.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/struct2.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/struct3.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/struct4.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/struct5.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/struct6.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/struct7.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/struct8.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/struct9.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/testclosure.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/uninitialized.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/unwindtest.cc create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/unwindtest_ffi_call.cc create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/va_1.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/va_struct1.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/va_struct2.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/testsuite/libffi.call/va_struct3.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi/texinfo.tex create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_msvc/LICENSE create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_msvc/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_msvc/README.ctypes create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_msvc/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_msvc/ffi.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_msvc/ffi_common.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_msvc/fficonfig.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_msvc/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_msvc/prep_cif.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_msvc/types.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_msvc/win32.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_msvc/win64.asm create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_osx/LICENSE create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_osx/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_osx/README.pyobjc create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_osx/ffi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_osx/include/ffi.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_osx/include/ffi_common.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_osx/include/fficonfig.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_osx/include/ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_osx/include/ppc-ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_osx/include/x86-ffitarget.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_osx/powerpc/ppc-darwin.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_osx/powerpc/ppc-darwin.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_osx/powerpc/ppc-darwin_closure.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_osx/powerpc/ppc64-darwin_closure.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_osx/types.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_osx/x86/darwin64.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_osx/x86/x86-darwin.S create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_osx/x86/x86-ffi64.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/libffi_osx/x86/x86-ffi_darwin.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/malloc_closure.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ctypes/stgdict.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_curses_panel.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_cursesmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_datetimemodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_dbmmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/README.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/_decimal.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/docstrings.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/README.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/basearith.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/basearith.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/bits.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/constants.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/constants.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/context.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/convolute.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/convolute.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/crt.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/crt.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/difradix2.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/difradix2.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/fnt.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/fnt.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/fourstep.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/fourstep.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/io.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/io.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/literature/REFERENCES.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/literature/bignum.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/literature/fnt.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/literature/matrix-transform.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/literature/mulmod-64.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/literature/mulmod-ppro.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/literature/six-step.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/literature/umodarith.lisp create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/memory.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/mpalloc.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/mpdecimal.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/mpdecimal.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/numbertheory.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/numbertheory.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/sixstep.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/sixstep.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/transpose.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/transpose.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/typearith.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/umodarith.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/vccompat.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/vcdiv64.asm create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/libmpdec/vcstdint.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/tests/README.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/tests/bench.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/tests/bignum.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/tests/deccheck.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/tests/formathelper.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/tests/randdec.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/tests/randfloat.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/tests/runall-memorydebugger.sh create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_decimal/tests/runall.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_elementtree.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_functoolsmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_gdbmmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_hashopenssl.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_heapqmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_io/_iomodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_io/_iomodule.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_io/bufferedio.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_io/bytesio.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_io/clinic/_iomodule.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_io/clinic/bufferedio.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_io/clinic/bytesio.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_io/clinic/fileio.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_io/clinic/iobase.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_io/clinic/stringio.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_io/clinic/textio.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_io/clinic/winconsoleio.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_io/fileio.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_io/iobase.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_io/stringio.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_io/textio.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_io/winconsoleio.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_json.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_localemodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_lsprof.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_lzmamodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_math.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_math.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_multiprocessing/multiprocessing.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_multiprocessing/multiprocessing.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_multiprocessing/semaphore.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_opcode.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_operator.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_pickle.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_posixsubprocess.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_randommodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_scproxy.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sha3/README.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sha3/cleanup.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sha3/clinic/sha3module.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sha3/kcp/KeccakHash.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sha3/kcp/KeccakHash.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sha3/kcp/KeccakP-1600-64.macros create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sha3/kcp/KeccakP-1600-SnP-opt32.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sha3/kcp/KeccakP-1600-SnP-opt64.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sha3/kcp/KeccakP-1600-SnP.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sha3/kcp/KeccakP-1600-inplace32BI.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sha3/kcp/KeccakP-1600-opt64-config.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sha3/kcp/KeccakP-1600-opt64.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sha3/kcp/KeccakP-1600-unrolling.macros create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sha3/kcp/KeccakSponge.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sha3/kcp/KeccakSponge.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sha3/kcp/KeccakSponge.inc create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sha3/kcp/PlSnP-Fallback.inc create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sha3/kcp/SnP-Relaned.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sha3/kcp/align.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sha3/sha3module.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sqlite/cache.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sqlite/cache.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sqlite/connection.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sqlite/connection.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sqlite/cursor.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sqlite/cursor.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sqlite/microprotocols.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sqlite/microprotocols.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sqlite/module.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sqlite/module.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sqlite/prepare_protocol.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sqlite/prepare_protocol.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sqlite/row.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sqlite/row.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sqlite/statement.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sqlite/statement.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sqlite/util.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sqlite/util.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_sre.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ssl.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_ssl_data.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_stat.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_struct.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_testbuffer.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_testcapimodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_testimportmultiple.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_testmultiphase.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_threadmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_tkinter.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_tracemalloc.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_weakref.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/_winapi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/addrinfo.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/ar_beos create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/arraymodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/atexitmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/audioop.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/binascii.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/cjkcodecs/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/cjkcodecs/_codecs_cn.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/cjkcodecs/_codecs_hk.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/cjkcodecs/_codecs_iso2022.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/cjkcodecs/_codecs_jp.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/cjkcodecs/_codecs_kr.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/cjkcodecs/_codecs_tw.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/cjkcodecs/alg_jisx0201.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/cjkcodecs/cjkcodecs.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/cjkcodecs/clinic/multibytecodec.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/cjkcodecs/emu_jisx0213_2000.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/cjkcodecs/mappings_cn.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/cjkcodecs/mappings_hk.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/cjkcodecs/mappings_jisx0213_pair.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/cjkcodecs/mappings_jp.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/cjkcodecs/mappings_kr.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/cjkcodecs/mappings_tw.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/cjkcodecs/multibytecodec.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/cjkcodecs/multibytecodec.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/_asynciomodule.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/_bz2module.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/_codecsmodule.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/_cryptmodule.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/_cursesmodule.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/_datetimemodule.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/_dbmmodule.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/_elementtree.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/_gdbmmodule.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/_hashopenssl.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/_lzmamodule.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/_opcode.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/_pickle.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/_sre.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/_ssl.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/_tkinter.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/_weakref.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/_winapi.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/arraymodule.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/audioop.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/binascii.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/cmathmodule.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/fcntlmodule.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/grpmodule.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/md5module.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/posixmodule.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/pwdmodule.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/pyexpat.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/sha1module.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/sha256module.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/sha512module.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/signalmodule.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/spwdmodule.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/unicodedata.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/clinic/zlibmodule.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/cmathmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/config.c.in create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/errnomodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/expat/COPYING create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/expat/ascii.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/expat/asciitab.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/expat/expat.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/expat/expat_config.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/expat/expat_external.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/expat/iasciitab.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/expat/internal.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/expat/latin1tab.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/expat/loadlibrary.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/expat/nametab.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/expat/pyexpatns.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/expat/siphash.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/expat/utf8tab.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/expat/winconfig.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/expat/xmlparse.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/expat/xmlrole.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/expat/xmlrole.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/expat/xmltok.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/expat/xmltok.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/expat/xmltok_impl.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/expat/xmltok_impl.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/expat/xmltok_ns.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/faulthandler.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/fcntlmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/fpectlmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/fpetestmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/gc_weakref.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/gcmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/getaddrinfo.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/getbuildinfo.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/getnameinfo.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/getpath.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/grpmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/hashlib.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/hashtable.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/hashtable.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/itertoolsmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/ld_so_aix.in create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/ld_so_beos create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/main.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/makesetup create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/makexp_aix create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/mathmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/md5module.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/mmapmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/nismodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/ossaudiodev.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/overlapped.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/parsermodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/posixmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/posixmodule.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/pwdmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/pyexpat.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/readline.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/resource.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/rotatingtree.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/rotatingtree.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/selectmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/sha1module.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/sha256module.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/sha512module.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/signalmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/socketmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/socketmodule.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/spwdmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/sre.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/sre_constants.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/sre_lib.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/symtablemodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/syslogmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/termios.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/testcapi_long.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/timemodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/tkappinit.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/tkinter.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/unicodedata.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/unicodedata_db.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/unicodename_db.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/winreparse.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/xxlimited.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/xxmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/xxsubtype.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zipimport.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/ChangeLog create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/FAQ create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/INDEX create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/Makefile.in create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/adler32.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/algorithm.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/compress.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/configure create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/crc32.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/crc32.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/deflate.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/deflate.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/example.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/gzclose.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/gzguts.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/gzlib.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/gzread.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/gzwrite.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/infback.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/inffast.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/inffast.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/inffixed.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/inflate.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/inflate.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/inftrees.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/inftrees.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/make_vms.com create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/minigzip.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/trees.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/trees.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/uncompr.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/zconf.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/zconf.h.cmakein create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/zconf.h.in create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/zlib.3 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/zlib.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/zlib.map create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/zlib.pc.in create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/zutil.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlib/zutil.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Modules/zlibmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/abstract.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/accu.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/boolobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/bytearrayobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/bytes_methods.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/bytesobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/capsule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/cellobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/classobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/clinic/bytearrayobject.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/clinic/bytesobject.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/clinic/dictobject.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/clinic/unicodeobject.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/codeobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/complexobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/descrobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/dict-common.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/dictnotes.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/dictobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/enumobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/exceptions.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/fileobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/floatobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/frameobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/funcobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/genobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/iterobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/listobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/listsort.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/lnotab_notes.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/longobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/memoryobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/methodobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/moduleobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/namespaceobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/object.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/obmalloc.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/odictobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/rangeobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/setobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/sliceobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/stringlib/README.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/stringlib/asciilib.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/stringlib/codecs.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/stringlib/count.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/stringlib/ctype.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/stringlib/eq.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/stringlib/fastsearch.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/stringlib/find.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/stringlib/find_max_char.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/stringlib/join.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/stringlib/localeutil.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/stringlib/partition.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/stringlib/replace.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/stringlib/split.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/stringlib/stringdefs.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/stringlib/transmogrify.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/stringlib/ucs1lib.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/stringlib/ucs2lib.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/stringlib/ucs4lib.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/stringlib/undef.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/stringlib/unicode_format.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/stringlib/unicodedefs.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/structseq.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/tupleobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/typeobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/typeslots.inc create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/typeslots.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/unicodectype.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/unicodeobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/unicodetype_db.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Objects/weakrefobject.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/WinMain.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/_findvs.cpp create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/_msi.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/_testconsole.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/bdist_wininst/PythonPowered.bmp create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/bdist_wininst/README.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/bdist_wininst/archive.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/bdist_wininst/bdist_wininst.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/bdist_wininst/bdist_wininst.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/bdist_wininst/build.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/bdist_wininst/extract.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/bdist_wininst/install.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/bdist_wininst/install.rc create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/bdist_wininst/resource.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/clinic/_testconsole.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/clinic/msvcrtmodule.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/clinic/winreg.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/clinic/winsound.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/config.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/dl_nt.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/dllbase_nt.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/empty.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/errmap.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/errmap.mak create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/external/Externals.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/external/include/Setup.Configuration.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/external/v140/amd64/Microsoft.VisualStudio.Setup.Configuration.Native.lib create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/external/v140/win32/Microsoft.VisualStudio.Setup.Configuration.Native.lib create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/external/v141/amd64/Microsoft.VisualStudio.Setup.Configuration.Native.lib create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/external/v141/win32/Microsoft.VisualStudio.Setup.Configuration.Native.lib create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/frozen_dllmain.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/generrmap.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/getpathp.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/icons/launcher.icns create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/icons/launcher.ico create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/icons/launcher.svg create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/icons/py.icns create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/icons/py.ico create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/icons/py.svg create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/icons/pyc.icns create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/icons/pyc.ico create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/icons/pyc.svg create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/icons/pyd.icns create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/icons/pyd.ico create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/icons/pyd.svg create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/icons/python.icns create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/icons/python.ico create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/icons/python.svg create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/icons/pythonw.icns create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/icons/pythonw.ico create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/icons/pythonw.svg create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/icons/setup.icns create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/icons/setup.ico create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/icons/setup.svg create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/invalid_parameter_handler.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/launcher.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/msvcrtmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/pylauncher.rc create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/pyshellext.cpp create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/pyshellext.def create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/pyshellext.idl create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/pyshellext.rc create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/pyshellext_d.def create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/python.manifest create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/python3.def create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/python3dll.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/python_exe.rc create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/python_nt.rc create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/python_ver_rc.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/pythonw_exe.rc create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/readme.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/sqlite3.rc create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/testpy.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/validate_ucrtbase.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/winreg.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PC/winsound.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_asyncio.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_asyncio.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_bz2.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_bz2.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_ctypes.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_ctypes.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_ctypes_test.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_ctypes_test.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_decimal.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_decimal.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_distutils_findvs.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_distutils_findvs.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_elementtree.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_elementtree.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_freeze_importlib.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_freeze_importlib.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_hashlib.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_hashlib.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_lzma.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_lzma.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_msi.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_msi.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_multiprocessing.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_multiprocessing.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_overlapped.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_overlapped.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_socket.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_socket.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_sqlite3.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_sqlite3.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_ssl.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_ssl.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_testbuffer.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_testbuffer.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_testcapi.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_testcapi.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_testconsole.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_testconsole.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_testembed.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_testembed.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_testimportmultiple.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_testimportmultiple.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_testmultiphase.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_testmultiphase.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_tkinter.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/_tkinter.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/build.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/build_env.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/clean.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/env.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/field3.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/find_msbuild.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/find_python.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/get_external.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/get_externals.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/idle.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/libeay.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/liblzma.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/openssl.props create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/pcbuild.proj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/pcbuild.sln create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/prepare_ssl.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/prepare_ssl.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/pyexpat.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/pyexpat.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/pylauncher.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/pylauncher.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/pyproject.props create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/pyshellext.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/pyshellext.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/python.props create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/python.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/python.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/python3dll.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/python3dll.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/pythoncore.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/pythoncore.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/pythonw.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/pythonw.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/pywlauncher.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/pywlauncher.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/readme.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/rmpyc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/rt.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/select.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/select.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/sqlite3.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/sqlite3.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/ssleay.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/tcl.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/tcltk.props create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/tix.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/tk.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/unicodedata.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/unicodedata.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/urlretrieve.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/winsound.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/winsound.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/xxlimited.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/PCbuild/xxlimited.vcxproj.filters create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Parser/Python.asdl create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Parser/acceler.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Parser/asdl.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Parser/asdl_c.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Parser/bitset.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Parser/firstsets.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Parser/grammar.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Parser/grammar1.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Parser/listnode.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Parser/metagrammar.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Parser/myreadline.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Parser/node.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Parser/parser.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Parser/parser.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Parser/parsetok.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Parser/parsetok_pgen.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Parser/pgen.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Parser/pgenmain.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Parser/printgrammar.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Parser/tokenizer.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Parser/tokenizer.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Parser/tokenizer_pgen.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Programs/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Programs/_freeze_importlib.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Programs/_testembed.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Programs/python.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/Python-ast.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/_warnings.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/asdl.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/ast.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/bltinmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/ceval.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/ceval_gil.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/clinic/bltinmodule.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/clinic/import.c.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/codecs.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/compile.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/condvar.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/dtoa.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/dup2.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/dynamic_annotations.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/dynload_aix.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/dynload_dl.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/dynload_hpux.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/dynload_next.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/dynload_shlib.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/dynload_stub.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/dynload_win.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/errors.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/fileutils.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/formatter_unicode.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/frozen.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/frozenmain.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/future.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/getargs.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/getcompiler.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/getcopyright.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/getopt.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/getplatform.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/getversion.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/graminit.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/import.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/importdl.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/importdl.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/importlib.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/importlib_external.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/makeopcodetargets.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/marshal.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/modsupport.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/mysnprintf.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/mystrtoul.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/opcode_targets.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/peephole.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/pyarena.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/pyctype.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/pyfpe.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/pyhash.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/pylifecycle.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/pymath.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/pystate.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/pystrcmp.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/pystrhex.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/pystrtod.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/pythonrun.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/pytime.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/random.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/sigcheck.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/strdup.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/structmember.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/symtable.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/sysmodule.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/thread.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/thread_foobar.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/thread_nt.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/thread_pthread.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/traceback.c create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Python/wordcode_helpers.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/README.rst create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/buildbot/build.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/buildbot/buildmsi.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/buildbot/clean.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/buildbot/test.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/ccbench/ccbench.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/clinic/clinic.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/clinic/clinic_test.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/clinic/cpp.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/demo/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/demo/beer.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/demo/eiffel.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/demo/hanoi.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/demo/life.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/demo/markov.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/demo/mcast.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/demo/queens.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/demo/redemo.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/demo/rpython.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/demo/rpythond.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/demo/sortvisu.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/demo/ss1.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/demo/vector.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/freeze/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/freeze/bkfile.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/freeze/checkextensions.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/freeze/checkextensions_win32.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/freeze/extensions_win32.ini create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/freeze/flag.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/freeze/freeze.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/freeze/hello.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/freeze/makeconfig.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/freeze/makefreeze.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/freeze/makemakefile.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/freeze/parsesetup.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/freeze/test/ok.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/freeze/win32.html create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/freeze/winmakemakefile.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/gdb/libpython.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/i18n/makelocalealias.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/i18n/msgfmt.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/i18n/pygettext.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/importbench/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/importbench/importbench.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/iobench/iobench.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/README.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/build.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/buildrelease.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/Default.thm create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/Default.wxl create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/SideBar.png create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/bootstrap/LICENSE.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/bootstrap/pch.cpp create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/bootstrap/pch.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/bootstrap/pythonba.cpp create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/bootstrap/pythonba.def create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/bootstrap/pythonba.sln create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/bootstrap/pythonba.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/bootstrap/resource.h create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/bundle.targets create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/bundle.wxl create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/bundle.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/full.wixproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/packagegroups/core.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/packagegroups/crt.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/packagegroups/dev.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/packagegroups/doc.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/packagegroups/exe.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/packagegroups/launcher.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/packagegroups/lib.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/packagegroups/packageinstall.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/packagegroups/pip.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/packagegroups/postinstall.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/packagegroups/tcltk.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/packagegroups/test.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/packagegroups/tools.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/releaselocal.wixproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/releaseweb.wixproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/bundle/snapshot.wixproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/common.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/common_en-US.wxl_template create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/csv_to_wxs.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/dev/dev.wixproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/dev/dev.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/dev/dev_d.wixproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/dev/dev_d.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/dev/dev_en-US.wxl create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/dev/dev_files.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/distutils.command.bdist_wininst.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/doc/doc.wixproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/doc/doc.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/doc/doc_en-US.wxl_template create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/doc/doc_files.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/doc/doc_no_files.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/exe/crtlicense.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/exe/exe.wixproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/exe/exe.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/exe/exe_d.wixproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/exe/exe_d.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/exe/exe_en-US.wxl_template create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/exe/exe_files.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/exe/exe_pdb.wixproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/exe/exe_pdb.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/exe/exe_reg.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/generate_md5.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/get_externals.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/launcher/launcher.wixproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/launcher/launcher.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/launcher/launcher_en-US.wxl create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/launcher/launcher_files.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/launcher/launcher_reg.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/lib/lib.wixproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/lib/lib.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/lib/lib_d.wixproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/lib/lib_d.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/lib/lib_en-US.wxl create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/lib/lib_files.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/lib/lib_pdb.wixproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/lib/lib_pdb.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/make_zip.proj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/make_zip.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/msi.props create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/msi.targets create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/path/path.wixproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/path/path.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/path/path_en-US.wxl create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/pip/pip.wixproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/pip/pip.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/pip/pip_en-US.wxl create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/purge.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/tcltk/tcltk.wixproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/tcltk/tcltk.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/tcltk/tcltk_d.wixproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/tcltk/tcltk_d.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/tcltk/tcltk_en-US.wxl_template create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/tcltk/tcltk_files.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/tcltk/tcltk_pdb.wixproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/tcltk/tcltk_pdb.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/tcltk/tcltk_reg.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/test/test.wixproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/test/test.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/test/test_d.wixproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/test/test_d.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/test/test_en-US.wxl create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/test/test_files.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/test/test_pdb.wixproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/test/test_pdb.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/testrelease.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/tools/tools.wixproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/tools/tools.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/tools/tools_en-US.wxl create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/tools/tools_files.wxs create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/uploadrelease.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/uploadrelease.proj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/msi/wix.props create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/nuget/build.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/nuget/make_pkg.proj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/nuget/python.nuspec create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/nuget/python.props create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/nuget/pythondaily.nuspec create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/nuget/pythonx86.nuspec create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/parser/unparse.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/Arithmetic.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/Calls.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/CommandLine.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/Constructs.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/Dict.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/Exceptions.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/Imports.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/Instances.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/LICENSE create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/Lists.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/Lookups.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/NewInstances.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/Numbers.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/Setup.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/Strings.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/Tuples.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/Unicode.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/With.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/clockres.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/package/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/package/submodule.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/pybench.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pybench/systimes.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pynche/ChipViewer.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pynche/ColorDB.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pynche/DetailsViewer.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pynche/ListViewer.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pynche/Main.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pynche/PyncheWidget.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pynche/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pynche/StripViewer.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pynche/Switchboard.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pynche/TextViewer.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pynche/TypeinViewer.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pynche/X/rgb.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pynche/X/xlicense.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pynche/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pynche/html40colors.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pynche/namedcolors.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pynche/pyColorChooser.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pynche/pynche create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pynche/pynche.pyw create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pynche/webcolors.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/pynche/websafe.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/2to3 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/abitype.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/analyze_dxp.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/byext.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/byteyears.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/checkpip.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/checkpyc.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/cleanfuture.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/combinerefs.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/copytime.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/crlf.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/db2pickle.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/diff.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/dutree.doc create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/dutree.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/eptags.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/find-uname.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/find_recursionlimit.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/finddiv.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/findlinksto.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/findnocoding.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/fixcid.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/fixdiv.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/fixheader.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/fixnotice.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/fixps.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/generate_opcode_h.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/get-remote-certificate.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/google.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/gprof2html.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/h2py.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/highlight.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/idle3 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/ifdef.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/import_diagnostics.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/lfcr.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/linktree.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/lll.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/mailerdaemon.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/make_ctype.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/md5sum.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/mkreal.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/ndiff.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/nm2def.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/objgraph.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/parse_html5_entities.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/parseentities.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/patchcheck.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/pathfix.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/pdeps.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/pickle2db.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/pindent.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/ptags.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/pydoc3 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/pysource.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/pyvenv create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/reindent-rst.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/reindent.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/rgrep.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/run_tests.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/serve.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/suff.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/svneol.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/texi2html.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/treesync.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/untabify.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/update_file.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/which.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/scripts/win_add2path.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/ssl/make_ssl_data.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/ssl/multissltests.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/ssl/sslspeed.vcxproj create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/stringbench/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/stringbench/stringbench.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/test2to3/README create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/test2to3/maintest.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/test2to3/setup.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/test2to3/test/runtests.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/test2to3/test/test_foo.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/test2to3/test2to3/__init__.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/test2to3/test2to3/hello.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/tz/zdump.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/unicode/comparecodecs.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/unicode/gencjkcodecs.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/unicode/gencodec.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/unicode/genwincodec.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/unicode/genwincodecs.bat create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/unicode/listcodecs.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/unicode/makeunicodedata.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/unicode/mkstringprep.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/unicode/python-mappings/CP1140.TXT create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/unicode/python-mappings/CP273.TXT create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/unicode/python-mappings/KOI8-U.TXT create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/unicode/python-mappings/TIS-620.TXT create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/unittestgui/README.txt create mode 100644 AppPkg/Applications/Python/Python-3.6.8/Tools/unittestgui/unittestgui.py create mode 100644 AppPkg/Applications/Python/Python-3.6.8/aclocal.m4 create mode 100644 AppPkg/Applications/Python/Python-3.6.8/config.guess create mode 100644 AppPkg/Applications/Python/Python-3.6.8/config.sub create mode 100644 AppPkg/Applications/Python/Python-3.6.8/configure create mode 100644 AppPkg/Applications/Python/Python-3.6.8/configure.ac create mode 100644 AppPkg/Applications/Python/Python-3.6.8/install-sh create mode 100644 AppPkg/Applications/Python/Python-3.6.8/pyconfig.h.in create mode 100644 AppPkg/Applications/Python/Python-3.6.8/setup.py -- 2.32.0.windows.2