├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── Templates ├── AndroidBoot.bt ├── AndroidVBMeta.bt ├── gpt.bt └── super_partition.bt ├── Tools ├── AdbWinApi.dll ├── AdbWinUsbApi.dll ├── adb.exe ├── fastboot.exe ├── libcrypto-1_1-x64.dll ├── libssl-1_1-x64.dll ├── libwinpthread-1.dll ├── md5sum.exe ├── nc.exe ├── openssl.cfg ├── openssl.cnf ├── openssl.exe ├── python37 │ ├── DLLs │ │ ├── libcrypto-1_1-x64.dll │ │ ├── libssl-1_1-x64.dll │ │ ├── py.ico │ │ ├── pyc.ico │ │ ├── pyd.ico │ │ ├── python_lib.cat │ │ ├── python_tools.cat │ │ ├── sqlite3.dll │ │ ├── tcl86t.dll │ │ └── tk86t.dll │ ├── Doc │ │ └── python373.chm │ ├── LICENSE.txt │ ├── Lib │ │ ├── __future__.py │ │ ├── __phello__.foo.py │ │ ├── _bootlocale.py │ │ ├── _collections_abc.py │ │ ├── _compat_pickle.py │ │ ├── _compression.py │ │ ├── _dummy_thread.py │ │ ├── _markupbase.py │ │ ├── _osx_support.py │ │ ├── _py_abc.py │ │ ├── _pydecimal.py │ │ ├── _pyio.py │ │ ├── _sitebuiltins.py │ │ ├── _strptime.py │ │ ├── _threading_local.py │ │ ├── _weakrefset.py │ │ ├── abc.py │ │ ├── aifc.py │ │ ├── antigravity.py │ │ ├── argparse.py │ │ ├── ast.py │ │ ├── asynchat.py │ │ ├── asyncio │ │ │ ├── __init__.py │ │ │ ├── base_events.py │ │ │ ├── base_futures.py │ │ │ ├── base_subprocess.py │ │ │ ├── base_tasks.py │ │ │ ├── constants.py │ │ │ ├── coroutines.py │ │ │ ├── events.py │ │ │ ├── format_helpers.py │ │ │ ├── futures.py │ │ │ ├── locks.py │ │ │ ├── log.py │ │ │ ├── proactor_events.py │ │ │ ├── protocols.py │ │ │ ├── queues.py │ │ │ ├── runners.py │ │ │ ├── selector_events.py │ │ │ ├── sslproto.py │ │ │ ├── streams.py │ │ │ ├── subprocess.py │ │ │ ├── tasks.py │ │ │ ├── transports.py │ │ │ ├── unix_events.py │ │ │ ├── windows_events.py │ │ │ └── windows_utils.py │ │ ├── asyncore.py │ │ ├── base64.py │ │ ├── bdb.py │ │ ├── binhex.py │ │ ├── bisect.py │ │ ├── bz2.py │ │ ├── cProfile.py │ │ ├── calendar.py │ │ ├── cgi.py │ │ ├── cgitb.py │ │ ├── chunk.py │ │ ├── cmd.py │ │ ├── code.py │ │ ├── codecs.py │ │ ├── codeop.py │ │ ├── collections │ │ │ ├── __init__.py │ │ │ └── abc.py │ │ ├── colorsys.py │ │ ├── compileall.py │ │ ├── concurrent │ │ │ ├── __init__.py │ │ │ └── futures │ │ │ │ ├── __init__.py │ │ │ │ ├── _base.py │ │ │ │ ├── process.py │ │ │ │ └── thread.py │ │ ├── configparser.py │ │ ├── contextlib.py │ │ ├── contextvars.py │ │ ├── copy.py │ │ ├── copyreg.py │ │ ├── crypt.py │ │ ├── csv.py │ │ ├── ctypes │ │ │ ├── __init__.py │ │ │ ├── _aix.py │ │ │ ├── _endian.py │ │ │ ├── macholib │ │ │ │ ├── README.ctypes │ │ │ │ ├── __init__.py │ │ │ │ ├── dyld.py │ │ │ │ ├── dylib.py │ │ │ │ ├── fetch_macholib │ │ │ │ ├── fetch_macholib.bat │ │ │ │ └── framework.py │ │ │ ├── test │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── test_anon.py │ │ │ │ ├── test_array_in_pointer.py │ │ │ │ ├── test_arrays.py │ │ │ │ ├── test_as_parameter.py │ │ │ │ ├── test_bitfields.py │ │ │ │ ├── test_buffers.py │ │ │ │ ├── test_bytes.py │ │ │ │ ├── test_byteswap.py │ │ │ │ ├── test_callbacks.py │ │ │ │ ├── test_cast.py │ │ │ │ ├── test_cfuncs.py │ │ │ │ ├── test_checkretval.py │ │ │ │ ├── test_delattr.py │ │ │ │ ├── test_errno.py │ │ │ │ ├── test_find.py │ │ │ │ ├── test_frombuffer.py │ │ │ │ ├── test_funcptr.py │ │ │ │ ├── test_functions.py │ │ │ │ ├── test_incomplete.py │ │ │ │ ├── test_init.py │ │ │ │ ├── test_internals.py │ │ │ │ ├── test_keeprefs.py │ │ │ │ ├── test_libc.py │ │ │ │ ├── test_loading.py │ │ │ │ ├── test_macholib.py │ │ │ │ ├── test_memfunctions.py │ │ │ │ ├── test_numbers.py │ │ │ │ ├── test_objects.py │ │ │ │ ├── test_parameters.py │ │ │ │ ├── test_pep3118.py │ │ │ │ ├── test_pickling.py │ │ │ │ ├── test_pointers.py │ │ │ │ ├── test_prototypes.py │ │ │ │ ├── test_python_api.py │ │ │ │ ├── test_random_things.py │ │ │ │ ├── test_refcounts.py │ │ │ │ ├── test_repr.py │ │ │ │ ├── test_returnfuncptrs.py │ │ │ │ ├── test_simplesubclasses.py │ │ │ │ ├── test_sizes.py │ │ │ │ ├── test_slicing.py │ │ │ │ ├── test_stringptr.py │ │ │ │ ├── test_strings.py │ │ │ │ ├── test_struct_fields.py │ │ │ │ ├── test_structures.py │ │ │ │ ├── test_unaligned_structures.py │ │ │ │ ├── test_unicode.py │ │ │ │ ├── test_values.py │ │ │ │ ├── test_varsize_struct.py │ │ │ │ ├── test_win32.py │ │ │ │ └── test_wintypes.py │ │ │ ├── util.py │ │ │ └── wintypes.py │ │ ├── curses │ │ │ ├── __init__.py │ │ │ ├── ascii.py │ │ │ ├── has_key.py │ │ │ ├── panel.py │ │ │ └── textpad.py │ │ ├── dataclasses.py │ │ ├── datetime.py │ │ ├── dbm │ │ │ ├── __init__.py │ │ │ ├── dumb.py │ │ │ ├── gnu.py │ │ │ └── ndbm.py │ │ ├── decimal.py │ │ ├── difflib.py │ │ ├── dis.py │ │ ├── distutils │ │ │ ├── README │ │ │ ├── __init__.py │ │ │ ├── _msvccompiler.py │ │ │ ├── archive_util.py │ │ │ ├── bcppcompiler.py │ │ │ ├── ccompiler.py │ │ │ ├── cmd.py │ │ │ ├── command │ │ │ │ ├── __init__.py │ │ │ │ ├── bdist.py │ │ │ │ ├── bdist_dumb.py │ │ │ │ ├── bdist_msi.py │ │ │ │ ├── bdist_rpm.py │ │ │ │ ├── bdist_wininst.py │ │ │ │ ├── build.py │ │ │ │ ├── build_clib.py │ │ │ │ ├── build_ext.py │ │ │ │ ├── build_py.py │ │ │ │ ├── build_scripts.py │ │ │ │ ├── check.py │ │ │ │ ├── clean.py │ │ │ │ ├── command_template │ │ │ │ ├── config.py │ │ │ │ ├── install.py │ │ │ │ ├── install_data.py │ │ │ │ ├── install_egg_info.py │ │ │ │ ├── install_headers.py │ │ │ │ ├── install_lib.py │ │ │ │ ├── install_scripts.py │ │ │ │ ├── register.py │ │ │ │ ├── sdist.py │ │ │ │ ├── upload.py │ │ │ │ ├── wininst-10.0-amd64.exe │ │ │ │ ├── wininst-10.0.exe │ │ │ │ ├── wininst-14.0-amd64.exe │ │ │ │ ├── wininst-14.0.exe │ │ │ │ ├── wininst-6.0.exe │ │ │ │ ├── wininst-7.1.exe │ │ │ │ ├── wininst-8.0.exe │ │ │ │ ├── wininst-9.0-amd64.exe │ │ │ │ └── wininst-9.0.exe │ │ │ ├── config.py │ │ │ ├── core.py │ │ │ ├── cygwinccompiler.py │ │ │ ├── debug.py │ │ │ ├── dep_util.py │ │ │ ├── dir_util.py │ │ │ ├── dist.py │ │ │ ├── errors.py │ │ │ ├── extension.py │ │ │ ├── fancy_getopt.py │ │ │ ├── file_util.py │ │ │ ├── filelist.py │ │ │ ├── log.py │ │ │ ├── msvc9compiler.py │ │ │ ├── msvccompiler.py │ │ │ ├── spawn.py │ │ │ ├── sysconfig.py │ │ │ ├── tests │ │ │ │ ├── Setup.sample │ │ │ │ ├── __init__.py │ │ │ │ ├── support.py │ │ │ │ ├── test_archive_util.py │ │ │ │ ├── test_bdist.py │ │ │ │ ├── test_bdist_dumb.py │ │ │ │ ├── test_bdist_msi.py │ │ │ │ ├── test_bdist_rpm.py │ │ │ │ ├── test_bdist_wininst.py │ │ │ │ ├── test_build.py │ │ │ │ ├── test_build_clib.py │ │ │ │ ├── test_build_ext.py │ │ │ │ ├── test_build_py.py │ │ │ │ ├── test_build_scripts.py │ │ │ │ ├── test_check.py │ │ │ │ ├── test_clean.py │ │ │ │ ├── test_cmd.py │ │ │ │ ├── test_config.py │ │ │ │ ├── test_config_cmd.py │ │ │ │ ├── test_core.py │ │ │ │ ├── test_cygwinccompiler.py │ │ │ │ ├── test_dep_util.py │ │ │ │ ├── test_dir_util.py │ │ │ │ ├── test_dist.py │ │ │ │ ├── test_extension.py │ │ │ │ ├── test_file_util.py │ │ │ │ ├── test_filelist.py │ │ │ │ ├── test_install.py │ │ │ │ ├── test_install_data.py │ │ │ │ ├── test_install_headers.py │ │ │ │ ├── test_install_lib.py │ │ │ │ ├── test_install_scripts.py │ │ │ │ ├── test_log.py │ │ │ │ ├── test_msvc9compiler.py │ │ │ │ ├── test_msvccompiler.py │ │ │ │ ├── test_register.py │ │ │ │ ├── test_sdist.py │ │ │ │ ├── test_spawn.py │ │ │ │ ├── test_sysconfig.py │ │ │ │ ├── test_text_file.py │ │ │ │ ├── test_unixccompiler.py │ │ │ │ ├── test_upload.py │ │ │ │ ├── test_util.py │ │ │ │ ├── test_version.py │ │ │ │ └── test_versionpredicate.py │ │ │ ├── text_file.py │ │ │ ├── unixccompiler.py │ │ │ ├── util.py │ │ │ ├── version.py │ │ │ └── versionpredicate.py │ │ ├── doctest.py │ │ ├── dummy_threading.py │ │ ├── email │ │ │ ├── __init__.py │ │ │ ├── _encoded_words.py │ │ │ ├── _header_value_parser.py │ │ │ ├── _parseaddr.py │ │ │ ├── _policybase.py │ │ │ ├── architecture.rst │ │ │ ├── base64mime.py │ │ │ ├── charset.py │ │ │ ├── contentmanager.py │ │ │ ├── encoders.py │ │ │ ├── errors.py │ │ │ ├── feedparser.py │ │ │ ├── generator.py │ │ │ ├── header.py │ │ │ ├── headerregistry.py │ │ │ ├── iterators.py │ │ │ ├── message.py │ │ │ ├── mime │ │ │ │ ├── __init__.py │ │ │ │ ├── application.py │ │ │ │ ├── audio.py │ │ │ │ ├── base.py │ │ │ │ ├── image.py │ │ │ │ ├── message.py │ │ │ │ ├── multipart.py │ │ │ │ ├── nonmultipart.py │ │ │ │ └── text.py │ │ │ ├── parser.py │ │ │ ├── policy.py │ │ │ ├── quoprimime.py │ │ │ └── utils.py │ │ ├── encodings │ │ │ ├── __init__.py │ │ │ ├── aliases.py │ │ │ ├── ascii.py │ │ │ ├── base64_codec.py │ │ │ ├── big5.py │ │ │ ├── big5hkscs.py │ │ │ ├── bz2_codec.py │ │ │ ├── charmap.py │ │ │ ├── cp037.py │ │ │ ├── cp1006.py │ │ │ ├── cp1026.py │ │ │ ├── cp1125.py │ │ │ ├── cp1140.py │ │ │ ├── cp1250.py │ │ │ ├── cp1251.py │ │ │ ├── cp1252.py │ │ │ ├── cp1253.py │ │ │ ├── cp1254.py │ │ │ ├── cp1255.py │ │ │ ├── cp1256.py │ │ │ ├── cp1257.py │ │ │ ├── cp1258.py │ │ │ ├── cp273.py │ │ │ ├── cp424.py │ │ │ ├── cp437.py │ │ │ ├── cp500.py │ │ │ ├── cp65001.py │ │ │ ├── cp720.py │ │ │ ├── cp737.py │ │ │ ├── cp775.py │ │ │ ├── cp850.py │ │ │ ├── cp852.py │ │ │ ├── cp855.py │ │ │ ├── cp856.py │ │ │ ├── cp857.py │ │ │ ├── cp858.py │ │ │ ├── cp860.py │ │ │ ├── cp861.py │ │ │ ├── cp862.py │ │ │ ├── cp863.py │ │ │ ├── cp864.py │ │ │ ├── cp865.py │ │ │ ├── cp866.py │ │ │ ├── cp869.py │ │ │ ├── cp874.py │ │ │ ├── cp875.py │ │ │ ├── cp932.py │ │ │ ├── cp949.py │ │ │ ├── cp950.py │ │ │ ├── euc_jis_2004.py │ │ │ ├── euc_jisx0213.py │ │ │ ├── euc_jp.py │ │ │ ├── euc_kr.py │ │ │ ├── gb18030.py │ │ │ ├── gb2312.py │ │ │ ├── gbk.py │ │ │ ├── hex_codec.py │ │ │ ├── hp_roman8.py │ │ │ ├── hz.py │ │ │ ├── idna.py │ │ │ ├── iso2022_jp.py │ │ │ ├── iso2022_jp_1.py │ │ │ ├── iso2022_jp_2.py │ │ │ ├── iso2022_jp_2004.py │ │ │ ├── iso2022_jp_3.py │ │ │ ├── iso2022_jp_ext.py │ │ │ ├── iso2022_kr.py │ │ │ ├── iso8859_1.py │ │ │ ├── iso8859_10.py │ │ │ ├── iso8859_11.py │ │ │ ├── iso8859_13.py │ │ │ ├── iso8859_14.py │ │ │ ├── iso8859_15.py │ │ │ ├── iso8859_16.py │ │ │ ├── iso8859_2.py │ │ │ ├── iso8859_3.py │ │ │ ├── iso8859_4.py │ │ │ ├── iso8859_5.py │ │ │ ├── iso8859_6.py │ │ │ ├── iso8859_7.py │ │ │ ├── iso8859_8.py │ │ │ ├── iso8859_9.py │ │ │ ├── johab.py │ │ │ ├── koi8_r.py │ │ │ ├── koi8_t.py │ │ │ ├── koi8_u.py │ │ │ ├── kz1048.py │ │ │ ├── latin_1.py │ │ │ ├── mac_arabic.py │ │ │ ├── mac_centeuro.py │ │ │ ├── mac_croatian.py │ │ │ ├── mac_cyrillic.py │ │ │ ├── mac_farsi.py │ │ │ ├── mac_greek.py │ │ │ ├── mac_iceland.py │ │ │ ├── mac_latin2.py │ │ │ ├── mac_roman.py │ │ │ ├── mac_romanian.py │ │ │ ├── mac_turkish.py │ │ │ ├── mbcs.py │ │ │ ├── oem.py │ │ │ ├── palmos.py │ │ │ ├── ptcp154.py │ │ │ ├── punycode.py │ │ │ ├── quopri_codec.py │ │ │ ├── raw_unicode_escape.py │ │ │ ├── rot_13.py │ │ │ ├── shift_jis.py │ │ │ ├── shift_jis_2004.py │ │ │ ├── shift_jisx0213.py │ │ │ ├── tis_620.py │ │ │ ├── undefined.py │ │ │ ├── unicode_escape.py │ │ │ ├── unicode_internal.py │ │ │ ├── utf_16.py │ │ │ ├── utf_16_be.py │ │ │ ├── utf_16_le.py │ │ │ ├── utf_32.py │ │ │ ├── utf_32_be.py │ │ │ ├── utf_32_le.py │ │ │ ├── utf_7.py │ │ │ ├── utf_8.py │ │ │ ├── utf_8_sig.py │ │ │ ├── uu_codec.py │ │ │ └── zlib_codec.py │ │ ├── ensurepip │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── _bundled │ │ │ │ ├── pip-19.0.3-py2.py3-none-any.whl │ │ │ │ └── setuptools-40.8.0-py2.py3-none-any.whl │ │ │ └── _uninstall.py │ │ ├── enum.py │ │ ├── filecmp.py │ │ ├── fileinput.py │ │ ├── fnmatch.py │ │ ├── formatter.py │ │ ├── fractions.py │ │ ├── ftplib.py │ │ ├── functools.py │ │ ├── genericpath.py │ │ ├── getopt.py │ │ ├── getpass.py │ │ ├── gettext.py │ │ ├── glob.py │ │ ├── gzip.py │ │ ├── hashlib.py │ │ ├── heapq.py │ │ ├── hmac.py │ │ ├── html │ │ │ ├── __init__.py │ │ │ ├── entities.py │ │ │ └── parser.py │ │ ├── http │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── cookiejar.py │ │ │ ├── cookies.py │ │ │ └── server.py │ │ ├── idlelib │ │ │ ├── CREDITS.txt │ │ │ ├── ChangeLog │ │ │ ├── HISTORY.txt │ │ │ ├── Icons │ │ │ │ ├── folder.gif │ │ │ │ ├── idle.icns │ │ │ │ ├── idle.ico │ │ │ │ ├── idle_16.gif │ │ │ │ ├── idle_16.png │ │ │ │ ├── idle_32.gif │ │ │ │ ├── idle_32.png │ │ │ │ ├── idle_48.gif │ │ │ │ ├── idle_48.png │ │ │ │ ├── minusnode.gif │ │ │ │ ├── openfolder.gif │ │ │ │ ├── plusnode.gif │ │ │ │ ├── python.gif │ │ │ │ └── tk.gif │ │ │ ├── NEWS.txt │ │ │ ├── NEWS2x.txt │ │ │ ├── README.txt │ │ │ ├── TODO.txt │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── autocomplete.py │ │ │ ├── autocomplete_w.py │ │ │ ├── autoexpand.py │ │ │ ├── browser.py │ │ │ ├── calltip.py │ │ │ ├── calltip_w.py │ │ │ ├── codecontext.py │ │ │ ├── colorizer.py │ │ │ ├── config-extensions.def │ │ │ ├── config-highlight.def │ │ │ ├── config-keys.def │ │ │ ├── config-main.def │ │ │ ├── config.py │ │ │ ├── config_key.py │ │ │ ├── configdialog.py │ │ │ ├── debugger.py │ │ │ ├── debugger_r.py │ │ │ ├── debugobj.py │ │ │ ├── debugobj_r.py │ │ │ ├── delegator.py │ │ │ ├── dynoption.py │ │ │ ├── editor.py │ │ │ ├── extend.txt │ │ │ ├── filelist.py │ │ │ ├── grep.py │ │ │ ├── help.html │ │ │ ├── help.py │ │ │ ├── help_about.py │ │ │ ├── history.py │ │ │ ├── hyperparser.py │ │ │ ├── idle.bat │ │ │ ├── idle.py │ │ │ ├── idle.pyw │ │ │ ├── idle_test │ │ │ │ ├── README.txt │ │ │ │ ├── __init__.py │ │ │ │ ├── htest.py │ │ │ │ ├── mock_idle.py │ │ │ │ ├── mock_tk.py │ │ │ │ ├── template.py │ │ │ │ ├── test_autocomplete.py │ │ │ │ ├── test_autocomplete_w.py │ │ │ │ ├── test_autoexpand.py │ │ │ │ ├── test_browser.py │ │ │ │ ├── test_calltip.py │ │ │ │ ├── test_calltip_w.py │ │ │ │ ├── test_codecontext.py │ │ │ │ ├── test_colorizer.py │ │ │ │ ├── test_config.py │ │ │ │ ├── test_config_key.py │ │ │ │ ├── test_configdialog.py │ │ │ │ ├── test_debugger.py │ │ │ │ ├── test_debugger_r.py │ │ │ │ ├── test_debugobj.py │ │ │ │ ├── test_debugobj_r.py │ │ │ │ ├── test_delegator.py │ │ │ │ ├── test_editmenu.py │ │ │ │ ├── test_editor.py │ │ │ │ ├── test_filelist.py │ │ │ │ ├── test_grep.py │ │ │ │ ├── test_help.py │ │ │ │ ├── test_help_about.py │ │ │ │ ├── test_history.py │ │ │ │ ├── test_hyperparser.py │ │ │ │ ├── test_iomenu.py │ │ │ │ ├── test_macosx.py │ │ │ │ ├── test_mainmenu.py │ │ │ │ ├── test_multicall.py │ │ │ │ ├── test_outwin.py │ │ │ │ ├── test_paragraph.py │ │ │ │ ├── test_parenmatch.py │ │ │ │ ├── test_pathbrowser.py │ │ │ │ ├── test_percolator.py │ │ │ │ ├── test_pyparse.py │ │ │ │ ├── test_pyshell.py │ │ │ │ ├── test_query.py │ │ │ │ ├── test_redirector.py │ │ │ │ ├── test_replace.py │ │ │ │ ├── test_rpc.py │ │ │ │ ├── test_rstrip.py │ │ │ │ ├── test_run.py │ │ │ │ ├── test_runscript.py │ │ │ │ ├── test_scrolledlist.py │ │ │ │ ├── test_search.py │ │ │ │ ├── test_searchbase.py │ │ │ │ ├── test_searchengine.py │ │ │ │ ├── test_squeezer.py │ │ │ │ ├── test_stackviewer.py │ │ │ │ ├── test_statusbar.py │ │ │ │ ├── test_text.py │ │ │ │ ├── test_textview.py │ │ │ │ ├── test_tooltip.py │ │ │ │ ├── test_tree.py │ │ │ │ ├── test_undo.py │ │ │ │ ├── test_warning.py │ │ │ │ ├── test_window.py │ │ │ │ └── test_zoomheight.py │ │ │ ├── iomenu.py │ │ │ ├── macosx.py │ │ │ ├── mainmenu.py │ │ │ ├── multicall.py │ │ │ ├── outwin.py │ │ │ ├── paragraph.py │ │ │ ├── parenmatch.py │ │ │ ├── pathbrowser.py │ │ │ ├── percolator.py │ │ │ ├── pyparse.py │ │ │ ├── pyshell.py │ │ │ ├── query.py │ │ │ ├── redirector.py │ │ │ ├── replace.py │ │ │ ├── rpc.py │ │ │ ├── rstrip.py │ │ │ ├── run.py │ │ │ ├── runscript.py │ │ │ ├── scrolledlist.py │ │ │ ├── search.py │ │ │ ├── searchbase.py │ │ │ ├── searchengine.py │ │ │ ├── squeezer.py │ │ │ ├── stackviewer.py │ │ │ ├── statusbar.py │ │ │ ├── textview.py │ │ │ ├── tooltip.py │ │ │ ├── tree.py │ │ │ ├── undo.py │ │ │ ├── window.py │ │ │ ├── zoomheight.py │ │ │ └── zzdummy.py │ │ ├── imaplib.py │ │ ├── imghdr.py │ │ ├── imp.py │ │ ├── importlib │ │ │ ├── __init__.py │ │ │ ├── _bootstrap.py │ │ │ ├── _bootstrap_external.py │ │ │ ├── abc.py │ │ │ ├── machinery.py │ │ │ ├── resources.py │ │ │ └── util.py │ │ ├── inspect.py │ │ ├── io.py │ │ ├── ipaddress.py │ │ ├── json │ │ │ ├── __init__.py │ │ │ ├── decoder.py │ │ │ ├── encoder.py │ │ │ ├── scanner.py │ │ │ └── tool.py │ │ ├── keyword.py │ │ ├── lib2to3 │ │ │ ├── Grammar.txt │ │ │ ├── Grammar3.7.0.final.0.pickle │ │ │ ├── Grammar3.7.3.final.0.pickle │ │ │ ├── PatternGrammar.txt │ │ │ ├── PatternGrammar3.7.0.final.0.pickle │ │ │ ├── PatternGrammar3.7.3.final.0.pickle │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── btm_matcher.py │ │ │ ├── btm_utils.py │ │ │ ├── fixer_base.py │ │ │ ├── fixer_util.py │ │ │ ├── fixes │ │ │ │ ├── __init__.py │ │ │ │ ├── fix_apply.py │ │ │ │ ├── fix_asserts.py │ │ │ │ ├── fix_basestring.py │ │ │ │ ├── fix_buffer.py │ │ │ │ ├── fix_dict.py │ │ │ │ ├── fix_except.py │ │ │ │ ├── fix_exec.py │ │ │ │ ├── fix_execfile.py │ │ │ │ ├── fix_exitfunc.py │ │ │ │ ├── fix_filter.py │ │ │ │ ├── fix_funcattrs.py │ │ │ │ ├── fix_future.py │ │ │ │ ├── fix_getcwdu.py │ │ │ │ ├── fix_has_key.py │ │ │ │ ├── fix_idioms.py │ │ │ │ ├── fix_import.py │ │ │ │ ├── fix_imports.py │ │ │ │ ├── fix_imports2.py │ │ │ │ ├── fix_input.py │ │ │ │ ├── fix_intern.py │ │ │ │ ├── fix_isinstance.py │ │ │ │ ├── fix_itertools.py │ │ │ │ ├── fix_itertools_imports.py │ │ │ │ ├── fix_long.py │ │ │ │ ├── fix_map.py │ │ │ │ ├── fix_metaclass.py │ │ │ │ ├── fix_methodattrs.py │ │ │ │ ├── fix_ne.py │ │ │ │ ├── fix_next.py │ │ │ │ ├── fix_nonzero.py │ │ │ │ ├── fix_numliterals.py │ │ │ │ ├── fix_operator.py │ │ │ │ ├── fix_paren.py │ │ │ │ ├── fix_print.py │ │ │ │ ├── fix_raise.py │ │ │ │ ├── fix_raw_input.py │ │ │ │ ├── fix_reduce.py │ │ │ │ ├── fix_reload.py │ │ │ │ ├── fix_renames.py │ │ │ │ ├── fix_repr.py │ │ │ │ ├── fix_set_literal.py │ │ │ │ ├── fix_standarderror.py │ │ │ │ ├── fix_sys_exc.py │ │ │ │ ├── fix_throw.py │ │ │ │ ├── fix_tuple_params.py │ │ │ │ ├── fix_types.py │ │ │ │ ├── fix_unicode.py │ │ │ │ ├── fix_urllib.py │ │ │ │ ├── fix_ws_comma.py │ │ │ │ ├── fix_xrange.py │ │ │ │ ├── fix_xreadlines.py │ │ │ │ └── fix_zip.py │ │ │ ├── main.py │ │ │ ├── patcomp.py │ │ │ ├── pgen2 │ │ │ │ ├── __init__.py │ │ │ │ ├── conv.py │ │ │ │ ├── driver.py │ │ │ │ ├── grammar.py │ │ │ │ ├── literals.py │ │ │ │ ├── parse.py │ │ │ │ ├── pgen.py │ │ │ │ ├── token.py │ │ │ │ └── tokenize.py │ │ │ ├── pygram.py │ │ │ ├── pytree.py │ │ │ ├── refactor.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── data │ │ │ │ ├── README │ │ │ │ ├── bom.py │ │ │ │ ├── crlf.py │ │ │ │ ├── different_encoding.py │ │ │ │ ├── false_encoding.py │ │ │ │ ├── fixers │ │ │ │ │ ├── bad_order.py │ │ │ │ │ ├── myfixes │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── fix_explicit.py │ │ │ │ │ │ ├── fix_first.py │ │ │ │ │ │ ├── fix_last.py │ │ │ │ │ │ ├── fix_parrot.py │ │ │ │ │ │ └── fix_preorder.py │ │ │ │ │ ├── no_fixer_cls.py │ │ │ │ │ └── parrot_example.py │ │ │ │ ├── infinite_recursion.py │ │ │ │ ├── py2_test_grammar.py │ │ │ │ └── py3_test_grammar.py │ │ │ │ ├── pytree_idempotency.py │ │ │ │ ├── support.py │ │ │ │ ├── test_all_fixers.py │ │ │ │ ├── test_fixers.py │ │ │ │ ├── test_main.py │ │ │ │ ├── test_parser.py │ │ │ │ ├── test_pytree.py │ │ │ │ ├── test_refactor.py │ │ │ │ └── test_util.py │ │ ├── linecache.py │ │ ├── locale.py │ │ ├── logging │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ └── handlers.py │ │ ├── lzma.py │ │ ├── macpath.py │ │ ├── mailbox.py │ │ ├── mailcap.py │ │ ├── mimetypes.py │ │ ├── modulefinder.py │ │ ├── msilib │ │ │ ├── __init__.py │ │ │ ├── schema.py │ │ │ ├── sequence.py │ │ │ └── text.py │ │ ├── multiprocessing │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ ├── context.py │ │ │ ├── dummy │ │ │ │ ├── __init__.py │ │ │ │ └── connection.py │ │ │ ├── forkserver.py │ │ │ ├── heap.py │ │ │ ├── managers.py │ │ │ ├── pool.py │ │ │ ├── popen_fork.py │ │ │ ├── popen_forkserver.py │ │ │ ├── popen_spawn_posix.py │ │ │ ├── popen_spawn_win32.py │ │ │ ├── process.py │ │ │ ├── queues.py │ │ │ ├── reduction.py │ │ │ ├── resource_sharer.py │ │ │ ├── semaphore_tracker.py │ │ │ ├── sharedctypes.py │ │ │ ├── spawn.py │ │ │ ├── synchronize.py │ │ │ └── util.py │ │ ├── netrc.py │ │ ├── nntplib.py │ │ ├── ntpath.py │ │ ├── nturl2path.py │ │ ├── numbers.py │ │ ├── opcode.py │ │ ├── operator.py │ │ ├── optparse.py │ │ ├── os.py │ │ ├── pathlib.py │ │ ├── pdb.py │ │ ├── pickle.py │ │ ├── pickletools.py │ │ ├── pipes.py │ │ ├── pkgutil.py │ │ ├── platform.py │ │ ├── plistlib.py │ │ ├── poplib.py │ │ ├── posixpath.py │ │ ├── pprint.py │ │ ├── profile.py │ │ ├── pstats.py │ │ ├── pty.py │ │ ├── py_compile.py │ │ ├── pyclbr.py │ │ ├── pydoc.py │ │ ├── pydoc_data │ │ │ ├── __init__.py │ │ │ ├── _pydoc.css │ │ │ └── topics.py │ │ ├── queue.py │ │ ├── quopri.py │ │ ├── random.py │ │ ├── re.py │ │ ├── reprlib.py │ │ ├── rlcompleter.py │ │ ├── runpy.py │ │ ├── sched.py │ │ ├── secrets.py │ │ ├── selectors.py │ │ ├── shelve.py │ │ ├── shlex.py │ │ ├── shutil.py │ │ ├── signal.py │ │ ├── site-packages │ │ │ ├── Click-7.0.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ └── top_level.txt │ │ │ ├── Crypto │ │ │ │ ├── Cipher │ │ │ │ │ ├── AES.py │ │ │ │ │ ├── AES.pyi │ │ │ │ │ ├── ARC2.py │ │ │ │ │ ├── ARC2.pyi │ │ │ │ │ ├── ARC4.py │ │ │ │ │ ├── ARC4.pyi │ │ │ │ │ ├── Blowfish.py │ │ │ │ │ ├── Blowfish.pyi │ │ │ │ │ ├── CAST.py │ │ │ │ │ ├── CAST.pyi │ │ │ │ │ ├── ChaCha20.py │ │ │ │ │ ├── ChaCha20.pyi │ │ │ │ │ ├── ChaCha20_Poly1305.py │ │ │ │ │ ├── ChaCha20_Poly1305.pyi │ │ │ │ │ ├── DES.py │ │ │ │ │ ├── DES.pyi │ │ │ │ │ ├── DES3.py │ │ │ │ │ ├── DES3.pyi │ │ │ │ │ ├── PKCS1_OAEP.py │ │ │ │ │ ├── PKCS1_OAEP.pyi │ │ │ │ │ ├── PKCS1_v1_5.py │ │ │ │ │ ├── PKCS1_v1_5.pyi │ │ │ │ │ ├── Salsa20.py │ │ │ │ │ ├── Salsa20.pyi │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _mode_cbc.py │ │ │ │ │ ├── _mode_cbc.pyi │ │ │ │ │ ├── _mode_ccm.py │ │ │ │ │ ├── _mode_ccm.pyi │ │ │ │ │ ├── _mode_cfb.py │ │ │ │ │ ├── _mode_cfb.pyi │ │ │ │ │ ├── _mode_ctr.py │ │ │ │ │ ├── _mode_ctr.pyi │ │ │ │ │ ├── _mode_eax.py │ │ │ │ │ ├── _mode_eax.pyi │ │ │ │ │ ├── _mode_ecb.py │ │ │ │ │ ├── _mode_ecb.pyi │ │ │ │ │ ├── _mode_gcm.py │ │ │ │ │ ├── _mode_gcm.pyi │ │ │ │ │ ├── _mode_ocb.py │ │ │ │ │ ├── _mode_ocb.pyi │ │ │ │ │ ├── _mode_ofb.py │ │ │ │ │ ├── _mode_ofb.pyi │ │ │ │ │ ├── _mode_openpgp.py │ │ │ │ │ ├── _mode_openpgp.pyi │ │ │ │ │ ├── _mode_siv.py │ │ │ │ │ └── _mode_siv.pyi │ │ │ │ ├── Hash │ │ │ │ │ ├── BLAKE2b.py │ │ │ │ │ ├── BLAKE2b.pyi │ │ │ │ │ ├── BLAKE2s.py │ │ │ │ │ ├── BLAKE2s.pyi │ │ │ │ │ ├── CMAC.py │ │ │ │ │ ├── CMAC.pyi │ │ │ │ │ ├── HMAC.py │ │ │ │ │ ├── HMAC.pyi │ │ │ │ │ ├── MD2.py │ │ │ │ │ ├── MD2.pyi │ │ │ │ │ ├── MD4.py │ │ │ │ │ ├── MD4.pyi │ │ │ │ │ ├── MD5.py │ │ │ │ │ ├── MD5.pyi │ │ │ │ │ ├── Poly1305.py │ │ │ │ │ ├── Poly1305.pyi │ │ │ │ │ ├── RIPEMD.py │ │ │ │ │ ├── RIPEMD.pyi │ │ │ │ │ ├── RIPEMD160.py │ │ │ │ │ ├── RIPEMD160.pyi │ │ │ │ │ ├── SHA.py │ │ │ │ │ ├── SHA.pyi │ │ │ │ │ ├── SHA1.py │ │ │ │ │ ├── SHA1.pyi │ │ │ │ │ ├── SHA224.py │ │ │ │ │ ├── SHA224.pyi │ │ │ │ │ ├── SHA256.py │ │ │ │ │ ├── SHA256.pyi │ │ │ │ │ ├── SHA384.py │ │ │ │ │ ├── SHA384.pyi │ │ │ │ │ ├── SHA3_224.py │ │ │ │ │ ├── SHA3_224.pyi │ │ │ │ │ ├── SHA3_256.py │ │ │ │ │ ├── SHA3_256.pyi │ │ │ │ │ ├── SHA3_384.py │ │ │ │ │ ├── SHA3_384.pyi │ │ │ │ │ ├── SHA3_512.py │ │ │ │ │ ├── SHA3_512.pyi │ │ │ │ │ ├── SHA512.py │ │ │ │ │ ├── SHA512.pyi │ │ │ │ │ ├── SHAKE128.py │ │ │ │ │ ├── SHAKE128.pyi │ │ │ │ │ ├── SHAKE256.py │ │ │ │ │ ├── SHAKE256.pyi │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── keccak.py │ │ │ │ │ └── keccak.pyi │ │ │ │ ├── IO │ │ │ │ │ ├── PEM.py │ │ │ │ │ ├── PEM.pyi │ │ │ │ │ ├── PKCS8.py │ │ │ │ │ ├── PKCS8.pyi │ │ │ │ │ ├── _PBES.py │ │ │ │ │ ├── _PBES.pyi │ │ │ │ │ └── __init__.py │ │ │ │ ├── Math │ │ │ │ │ ├── Numbers.py │ │ │ │ │ ├── Numbers.pyi │ │ │ │ │ ├── Primality.py │ │ │ │ │ ├── Primality.pyi │ │ │ │ │ ├── _IntegerBase.py │ │ │ │ │ ├── _IntegerBase.pyi │ │ │ │ │ ├── _IntegerCustom.py │ │ │ │ │ ├── _IntegerCustom.pyi │ │ │ │ │ ├── _IntegerGMP.py │ │ │ │ │ ├── _IntegerGMP.pyi │ │ │ │ │ ├── _IntegerNative.py │ │ │ │ │ ├── _IntegerNative.pyi │ │ │ │ │ └── __init__.py │ │ │ │ ├── Protocol │ │ │ │ │ ├── KDF.py │ │ │ │ │ ├── KDF.pyi │ │ │ │ │ ├── SecretSharing.py │ │ │ │ │ ├── SecretSharing.pyi │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── PublicKey │ │ │ │ │ ├── DSA.py │ │ │ │ │ ├── DSA.pyi │ │ │ │ │ ├── ECC.py │ │ │ │ │ ├── ECC.pyi │ │ │ │ │ ├── ElGamal.py │ │ │ │ │ ├── ElGamal.pyi │ │ │ │ │ ├── RSA.py │ │ │ │ │ ├── RSA.pyi │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── Random │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── random.py │ │ │ │ │ └── random.pyi │ │ │ │ ├── SelfTest │ │ │ │ │ ├── Cipher │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── common.py │ │ │ │ │ │ ├── test_AES.py │ │ │ │ │ │ ├── test_ARC2.py │ │ │ │ │ │ ├── test_ARC4.py │ │ │ │ │ │ ├── test_Blowfish.py │ │ │ │ │ │ ├── test_CAST.py │ │ │ │ │ │ ├── test_CBC.py │ │ │ │ │ │ ├── test_CCM.py │ │ │ │ │ │ ├── test_CFB.py │ │ │ │ │ │ ├── test_CTR.py │ │ │ │ │ │ ├── test_ChaCha20.py │ │ │ │ │ │ ├── test_ChaCha20_Poly1305.py │ │ │ │ │ │ ├── test_DES.py │ │ │ │ │ │ ├── test_DES3.py │ │ │ │ │ │ ├── test_EAX.py │ │ │ │ │ │ ├── test_GCM.py │ │ │ │ │ │ ├── test_OCB.py │ │ │ │ │ │ ├── test_OFB.py │ │ │ │ │ │ ├── test_OpenPGP.py │ │ │ │ │ │ ├── test_SIV.py │ │ │ │ │ │ ├── test_Salsa20.py │ │ │ │ │ │ ├── test_pkcs1_15.py │ │ │ │ │ │ ├── test_pkcs1_oaep.py │ │ │ │ │ │ └── test_vectors │ │ │ │ │ │ │ ├── AES │ │ │ │ │ │ │ ├── CBCGFSbox128.rsp │ │ │ │ │ │ │ ├── CBCGFSbox192.rsp │ │ │ │ │ │ │ ├── CBCGFSbox256.rsp │ │ │ │ │ │ │ ├── CBCKeySbox128.rsp │ │ │ │ │ │ │ ├── CBCKeySbox192.rsp │ │ │ │ │ │ │ ├── CBCKeySbox256.rsp │ │ │ │ │ │ │ ├── CBCMCT128.rsp │ │ │ │ │ │ │ ├── CBCMCT192.rsp │ │ │ │ │ │ │ ├── CBCMCT256.rsp │ │ │ │ │ │ │ ├── CBCMMT128.rsp │ │ │ │ │ │ │ ├── CBCMMT192.rsp │ │ │ │ │ │ │ ├── CBCMMT256.rsp │ │ │ │ │ │ │ ├── CBCVarKey128.rsp │ │ │ │ │ │ │ ├── CBCVarKey192.rsp │ │ │ │ │ │ │ ├── CBCVarKey256.rsp │ │ │ │ │ │ │ ├── CBCVarTxt128.rsp │ │ │ │ │ │ │ ├── CBCVarTxt192.rsp │ │ │ │ │ │ │ ├── CBCVarTxt256.rsp │ │ │ │ │ │ │ ├── CFB128GFSbox128.rsp │ │ │ │ │ │ │ ├── CFB128GFSbox192.rsp │ │ │ │ │ │ │ ├── CFB128GFSbox256.rsp │ │ │ │ │ │ │ ├── CFB128KeySbox128.rsp │ │ │ │ │ │ │ ├── CFB128KeySbox192.rsp │ │ │ │ │ │ │ ├── CFB128KeySbox256.rsp │ │ │ │ │ │ │ ├── CFB128MCT128.rsp │ │ │ │ │ │ │ ├── CFB128MCT192.rsp │ │ │ │ │ │ │ ├── CFB128MCT256.rsp │ │ │ │ │ │ │ ├── CFB128MMT128.rsp │ │ │ │ │ │ │ ├── CFB128MMT192.rsp │ │ │ │ │ │ │ ├── CFB128MMT256.rsp │ │ │ │ │ │ │ ├── CFB128VarKey128.rsp │ │ │ │ │ │ │ ├── CFB128VarKey192.rsp │ │ │ │ │ │ │ ├── CFB128VarKey256.rsp │ │ │ │ │ │ │ ├── CFB128VarTxt128.rsp │ │ │ │ │ │ │ ├── CFB128VarTxt192.rsp │ │ │ │ │ │ │ ├── CFB128VarTxt256.rsp │ │ │ │ │ │ │ ├── CFB8GFSbox128.rsp │ │ │ │ │ │ │ ├── CFB8GFSbox192.rsp │ │ │ │ │ │ │ ├── CFB8GFSbox256.rsp │ │ │ │ │ │ │ ├── CFB8KeySbox128.rsp │ │ │ │ │ │ │ ├── CFB8KeySbox192.rsp │ │ │ │ │ │ │ ├── CFB8KeySbox256.rsp │ │ │ │ │ │ │ ├── CFB8MCT128.rsp │ │ │ │ │ │ │ ├── CFB8MCT192.rsp │ │ │ │ │ │ │ ├── CFB8MCT256.rsp │ │ │ │ │ │ │ ├── CFB8MMT128.rsp │ │ │ │ │ │ │ ├── CFB8MMT192.rsp │ │ │ │ │ │ │ ├── CFB8MMT256.rsp │ │ │ │ │ │ │ ├── CFB8VarKey128.rsp │ │ │ │ │ │ │ ├── CFB8VarKey192.rsp │ │ │ │ │ │ │ ├── CFB8VarKey256.rsp │ │ │ │ │ │ │ ├── CFB8VarTxt128.rsp │ │ │ │ │ │ │ ├── CFB8VarTxt192.rsp │ │ │ │ │ │ │ ├── CFB8VarTxt256.rsp │ │ │ │ │ │ │ ├── OFBGFSbox128.rsp │ │ │ │ │ │ │ ├── OFBGFSbox192.rsp │ │ │ │ │ │ │ ├── OFBGFSbox256.rsp │ │ │ │ │ │ │ ├── OFBKeySbox128.rsp │ │ │ │ │ │ │ ├── OFBKeySbox192.rsp │ │ │ │ │ │ │ ├── OFBKeySbox256.rsp │ │ │ │ │ │ │ ├── OFBMCT128.rsp │ │ │ │ │ │ │ ├── OFBMCT192.rsp │ │ │ │ │ │ │ ├── OFBMCT256.rsp │ │ │ │ │ │ │ ├── OFBMMT128.rsp │ │ │ │ │ │ │ ├── OFBMMT192.rsp │ │ │ │ │ │ │ ├── OFBMMT256.rsp │ │ │ │ │ │ │ ├── OFBVarKey128.rsp │ │ │ │ │ │ │ ├── OFBVarKey192.rsp │ │ │ │ │ │ │ ├── OFBVarKey256.rsp │ │ │ │ │ │ │ ├── OFBVarTxt128.rsp │ │ │ │ │ │ │ ├── OFBVarTxt192.rsp │ │ │ │ │ │ │ ├── OFBVarTxt256.rsp │ │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ │ ├── gcmDecrypt128.rsp │ │ │ │ │ │ │ └── gcmEncryptExtIV128.rsp │ │ │ │ │ │ │ ├── TDES │ │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ │ ├── TCBCMMT2.rsp │ │ │ │ │ │ │ ├── TCBCMMT3.rsp │ │ │ │ │ │ │ ├── TCBCinvperm.rsp │ │ │ │ │ │ │ ├── TCBCpermop.rsp │ │ │ │ │ │ │ ├── TCBCsubtab.rsp │ │ │ │ │ │ │ ├── TCBCvarkey.rsp │ │ │ │ │ │ │ ├── TCBCvartext.rsp │ │ │ │ │ │ │ ├── TCFB64MMT2.rsp │ │ │ │ │ │ │ ├── TCFB64MMT3.rsp │ │ │ │ │ │ │ ├── TCFB64invperm.rsp │ │ │ │ │ │ │ ├── TCFB64permop.rsp │ │ │ │ │ │ │ ├── TCFB64subtab.rsp │ │ │ │ │ │ │ ├── TCFB64varkey.rsp │ │ │ │ │ │ │ ├── TCFB64vartext.rsp │ │ │ │ │ │ │ ├── TCFB8MMT2.rsp │ │ │ │ │ │ │ ├── TCFB8MMT3.rsp │ │ │ │ │ │ │ ├── TCFB8invperm.rsp │ │ │ │ │ │ │ ├── TCFB8permop.rsp │ │ │ │ │ │ │ ├── TCFB8subtab.rsp │ │ │ │ │ │ │ ├── TCFB8varkey.rsp │ │ │ │ │ │ │ ├── TCFB8vartext.rsp │ │ │ │ │ │ │ ├── TECBMMT2.rsp │ │ │ │ │ │ │ ├── TECBMMT3.rsp │ │ │ │ │ │ │ ├── TOFBMMT2.rsp │ │ │ │ │ │ │ ├── TOFBMMT3.rsp │ │ │ │ │ │ │ ├── TOFBinvperm.rsp │ │ │ │ │ │ │ ├── TOFBpermop.rsp │ │ │ │ │ │ │ ├── TOFBsubtab.rsp │ │ │ │ │ │ │ ├── TOFBvarkey.rsp │ │ │ │ │ │ │ └── TOFBvartext.rsp │ │ │ │ │ │ │ └── wycheproof │ │ │ │ │ │ │ ├── aes_eax_test.json │ │ │ │ │ │ │ ├── aes_gcm_test.json │ │ │ │ │ │ │ ├── aes_siv_cmac_test.json │ │ │ │ │ │ │ └── chacha20_poly1305_test.json │ │ │ │ │ ├── Hash │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── common.py │ │ │ │ │ │ ├── test_BLAKE2.py │ │ │ │ │ │ ├── test_CMAC.py │ │ │ │ │ │ ├── test_HMAC.py │ │ │ │ │ │ ├── test_MD2.py │ │ │ │ │ │ ├── test_MD4.py │ │ │ │ │ │ ├── test_MD5.py │ │ │ │ │ │ ├── test_Poly1305.py │ │ │ │ │ │ ├── test_RIPEMD160.py │ │ │ │ │ │ ├── test_SHA1.py │ │ │ │ │ │ ├── test_SHA224.py │ │ │ │ │ │ ├── test_SHA256.py │ │ │ │ │ │ ├── test_SHA384.py │ │ │ │ │ │ ├── test_SHA3_224.py │ │ │ │ │ │ ├── test_SHA3_256.py │ │ │ │ │ │ ├── test_SHA3_384.py │ │ │ │ │ │ ├── test_SHA3_512.py │ │ │ │ │ │ ├── test_SHA512.py │ │ │ │ │ │ ├── test_SHAKE.py │ │ │ │ │ │ ├── test_keccak.py │ │ │ │ │ │ └── test_vectors │ │ │ │ │ │ │ ├── BLAKE2b │ │ │ │ │ │ │ ├── blake2b-test.txt │ │ │ │ │ │ │ ├── tv1.txt │ │ │ │ │ │ │ └── tv2.txt │ │ │ │ │ │ │ ├── BLAKE2s │ │ │ │ │ │ │ ├── blake2s-test.txt │ │ │ │ │ │ │ ├── tv1.txt │ │ │ │ │ │ │ └── tv2.txt │ │ │ │ │ │ │ ├── SHA1 │ │ │ │ │ │ │ └── SHA1ShortMsg.rsp │ │ │ │ │ │ │ ├── SHA2 │ │ │ │ │ │ │ ├── SHA512ShortMsg.rsp │ │ │ │ │ │ │ ├── SHA512_224ShortMsg.rsp │ │ │ │ │ │ │ └── SHA512_256ShortMsg.rsp │ │ │ │ │ │ │ ├── SHA3 │ │ │ │ │ │ │ ├── ShortMsgKAT_SHA3-224.txt │ │ │ │ │ │ │ ├── ShortMsgKAT_SHA3-256.txt │ │ │ │ │ │ │ ├── ShortMsgKAT_SHA3-384.txt │ │ │ │ │ │ │ ├── ShortMsgKAT_SHA3-512.txt │ │ │ │ │ │ │ ├── ShortMsgKAT_SHAKE128.txt │ │ │ │ │ │ │ └── ShortMsgKAT_SHAKE256.txt │ │ │ │ │ │ │ ├── keccak │ │ │ │ │ │ │ ├── ExtremelyLongMsgKAT_224.txt │ │ │ │ │ │ │ ├── ExtremelyLongMsgKAT_256.txt │ │ │ │ │ │ │ ├── ExtremelyLongMsgKAT_384.txt │ │ │ │ │ │ │ ├── ExtremelyLongMsgKAT_512.txt │ │ │ │ │ │ │ ├── LongMsgKAT_224.txt │ │ │ │ │ │ │ ├── LongMsgKAT_256.txt │ │ │ │ │ │ │ ├── LongMsgKAT_384.txt │ │ │ │ │ │ │ ├── LongMsgKAT_512.txt │ │ │ │ │ │ │ ├── ShortMsgKAT_224.txt │ │ │ │ │ │ │ ├── ShortMsgKAT_256.txt │ │ │ │ │ │ │ ├── ShortMsgKAT_384.txt │ │ │ │ │ │ │ ├── ShortMsgKAT_512.txt │ │ │ │ │ │ │ └── readme.txt │ │ │ │ │ │ │ └── wycheproof │ │ │ │ │ │ │ └── aes_cmac_test.json │ │ │ │ │ ├── IO │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_PBES.py │ │ │ │ │ │ └── test_PKCS8.py │ │ │ │ │ ├── Math │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_Numbers.py │ │ │ │ │ │ ├── test_Primality.py │ │ │ │ │ │ └── test_modexp.py │ │ │ │ │ ├── Protocol │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_KDF.py │ │ │ │ │ │ ├── test_SecretSharing.py │ │ │ │ │ │ └── test_rfc1751.py │ │ │ │ │ ├── PublicKey │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_DSA.py │ │ │ │ │ │ ├── test_ECC.py │ │ │ │ │ │ ├── test_ElGamal.py │ │ │ │ │ │ ├── test_RSA.py │ │ │ │ │ │ ├── test_import_DSA.py │ │ │ │ │ │ ├── test_import_ECC.py │ │ │ │ │ │ ├── test_import_RSA.py │ │ │ │ │ │ └── test_vectors │ │ │ │ │ │ │ └── ECC │ │ │ │ │ │ │ ├── ecc_p256.txt │ │ │ │ │ │ │ ├── ecc_p256_private.der │ │ │ │ │ │ │ ├── ecc_p256_private.pem │ │ │ │ │ │ │ ├── ecc_p256_private_ecparams.pem │ │ │ │ │ │ │ ├── ecc_p256_private_enc_aes128.pem │ │ │ │ │ │ │ ├── ecc_p256_private_enc_aes192.pem │ │ │ │ │ │ │ ├── ecc_p256_private_enc_aes256_gcm.pem │ │ │ │ │ │ │ ├── ecc_p256_private_enc_des3.pem │ │ │ │ │ │ │ ├── ecc_p256_private_p8.der │ │ │ │ │ │ │ ├── ecc_p256_private_p8.pem │ │ │ │ │ │ │ ├── ecc_p256_private_p8_clear.der │ │ │ │ │ │ │ ├── ecc_p256_private_p8_clear.pem │ │ │ │ │ │ │ ├── ecc_p256_public.der │ │ │ │ │ │ │ ├── ecc_p256_public.pem │ │ │ │ │ │ │ ├── ecc_p256_public_compressed.der │ │ │ │ │ │ │ ├── ecc_p256_public_compressed.pem │ │ │ │ │ │ │ ├── ecc_p256_public_openssh.txt │ │ │ │ │ │ │ ├── ecc_p256_x509.der │ │ │ │ │ │ │ ├── ecc_p256_x509.pem │ │ │ │ │ │ │ ├── ecc_p384.txt │ │ │ │ │ │ │ ├── ecc_p384_private.der │ │ │ │ │ │ │ ├── ecc_p384_private.pem │ │ │ │ │ │ │ ├── ecc_p384_private_enc_aes128.pem │ │ │ │ │ │ │ ├── ecc_p384_private_enc_aes192.pem │ │ │ │ │ │ │ ├── ecc_p384_private_enc_aes256_gcm.pem │ │ │ │ │ │ │ ├── ecc_p384_private_enc_des3.pem │ │ │ │ │ │ │ ├── ecc_p384_private_p8.der │ │ │ │ │ │ │ ├── ecc_p384_private_p8.pem │ │ │ │ │ │ │ ├── ecc_p384_private_p8_clear.der │ │ │ │ │ │ │ ├── ecc_p384_private_p8_clear.pem │ │ │ │ │ │ │ ├── ecc_p384_public.der │ │ │ │ │ │ │ ├── ecc_p384_public.pem │ │ │ │ │ │ │ ├── ecc_p384_public_compressed.der │ │ │ │ │ │ │ ├── ecc_p384_public_compressed.pem │ │ │ │ │ │ │ ├── ecc_p384_public_openssh.txt │ │ │ │ │ │ │ ├── ecc_p384_x509.der │ │ │ │ │ │ │ ├── ecc_p384_x509.pem │ │ │ │ │ │ │ ├── ecc_p521.txt │ │ │ │ │ │ │ ├── ecc_p521_private.der │ │ │ │ │ │ │ ├── ecc_p521_private.pem │ │ │ │ │ │ │ ├── ecc_p521_private_enc_aes128.pem │ │ │ │ │ │ │ ├── ecc_p521_private_enc_aes192.pem │ │ │ │ │ │ │ ├── ecc_p521_private_enc_aes256_gcm.pem │ │ │ │ │ │ │ ├── ecc_p521_private_enc_des3.pem │ │ │ │ │ │ │ ├── ecc_p521_private_p8.der │ │ │ │ │ │ │ ├── ecc_p521_private_p8.pem │ │ │ │ │ │ │ ├── ecc_p521_private_p8_clear.der │ │ │ │ │ │ │ ├── ecc_p521_private_p8_clear.pem │ │ │ │ │ │ │ ├── ecc_p521_public.der │ │ │ │ │ │ │ ├── ecc_p521_public.pem │ │ │ │ │ │ │ ├── ecc_p521_public_compressed.der │ │ │ │ │ │ │ ├── ecc_p521_public_compressed.pem │ │ │ │ │ │ │ ├── ecc_p521_public_openssh.txt │ │ │ │ │ │ │ ├── ecc_p521_x509.der │ │ │ │ │ │ │ ├── ecc_p521_x509.pem │ │ │ │ │ │ │ ├── gen_ecc_p256.sh │ │ │ │ │ │ │ ├── gen_ecc_p384.sh │ │ │ │ │ │ │ ├── gen_ecc_p521.sh │ │ │ │ │ │ │ ├── openssl_version.txt │ │ │ │ │ │ │ ├── openssl_version_p384.txt │ │ │ │ │ │ │ ├── openssl_version_p521.txt │ │ │ │ │ │ │ ├── point-at-infinity.org-P256.txt │ │ │ │ │ │ │ ├── point-at-infinity.org-P384.txt │ │ │ │ │ │ │ └── point-at-infinity.org-P521.txt │ │ │ │ │ ├── Random │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── test_random.py │ │ │ │ │ ├── Signature │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_dss.py │ │ │ │ │ │ ├── test_pkcs1_15.py │ │ │ │ │ │ ├── test_pss.py │ │ │ │ │ │ └── test_vectors │ │ │ │ │ │ │ ├── DSA │ │ │ │ │ │ │ ├── FIPS_186_3_SigGen.txt │ │ │ │ │ │ │ └── FIPS_186_3_SigVer.rsp │ │ │ │ │ │ │ ├── ECDSA │ │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ │ ├── SigGen.txt │ │ │ │ │ │ │ └── SigVer.rsp │ │ │ │ │ │ │ ├── PKCS1-PSS │ │ │ │ │ │ │ ├── SigGenPSS_186-2.txt │ │ │ │ │ │ │ ├── SigGenPSS_186-3.txt │ │ │ │ │ │ │ └── SigVerPSS_186-3.rsp │ │ │ │ │ │ │ ├── PKCS1-v1.5 │ │ │ │ │ │ │ ├── SigGen15_186-2.txt │ │ │ │ │ │ │ ├── SigGen15_186-3.txt │ │ │ │ │ │ │ └── SigVer15_186-3.rsp │ │ │ │ │ │ │ └── wycheproof │ │ │ │ │ │ │ ├── dsa_test.json │ │ │ │ │ │ │ ├── ecdsa_secp256r1_sha256_test.json │ │ │ │ │ │ │ ├── ecdsa_secp256r1_sha512_test.json │ │ │ │ │ │ │ ├── ecdsa_secp384r1_sha384_test.json │ │ │ │ │ │ │ ├── ecdsa_secp384r1_sha512_test.json │ │ │ │ │ │ │ ├── ecdsa_secp521r1_sha512_test.json │ │ │ │ │ │ │ ├── ecdsa_test.json │ │ │ │ │ │ │ ├── rsa_pss_2048_sha1_mgf1_20_test.json │ │ │ │ │ │ │ ├── rsa_pss_2048_sha256_mgf1_0_test.json │ │ │ │ │ │ │ ├── rsa_pss_2048_sha256_mgf1_32_test.json │ │ │ │ │ │ │ ├── rsa_pss_3072_sha256_mgf1_32_test.json │ │ │ │ │ │ │ ├── rsa_pss_4096_sha256_mgf1_32_test.json │ │ │ │ │ │ │ ├── rsa_pss_4096_sha512_mgf1_32_test.json │ │ │ │ │ │ │ ├── rsa_pss_misc_test.json │ │ │ │ │ │ │ ├── rsa_signature_2048_sha224_test.json │ │ │ │ │ │ │ ├── rsa_signature_2048_sha256_test.json │ │ │ │ │ │ │ ├── rsa_signature_2048_sha512_test.json │ │ │ │ │ │ │ ├── rsa_signature_3072_sha256_test.json │ │ │ │ │ │ │ ├── rsa_signature_3072_sha384_test.json │ │ │ │ │ │ │ ├── rsa_signature_3072_sha512_test.json │ │ │ │ │ │ │ ├── rsa_signature_4096_sha384_test.json │ │ │ │ │ │ │ ├── rsa_signature_4096_sha512_test.json │ │ │ │ │ │ │ └── rsa_signature_test.json │ │ │ │ │ ├── Util │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_Counter.py │ │ │ │ │ │ ├── test_Padding.py │ │ │ │ │ │ ├── test_asn1.py │ │ │ │ │ │ ├── test_number.py │ │ │ │ │ │ └── test_strxor.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── loader.py │ │ │ │ │ └── st_common.py │ │ │ │ ├── Signature │ │ │ │ │ ├── DSS.py │ │ │ │ │ ├── DSS.pyi │ │ │ │ │ ├── PKCS1_PSS.py │ │ │ │ │ ├── PKCS1_PSS.pyi │ │ │ │ │ ├── PKCS1_v1_5.py │ │ │ │ │ ├── PKCS1_v1_5.pyi │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── pkcs1_15.py │ │ │ │ │ ├── pkcs1_15.pyi │ │ │ │ │ ├── pss.py │ │ │ │ │ └── pss.pyi │ │ │ │ ├── Util │ │ │ │ │ ├── Counter.py │ │ │ │ │ ├── Counter.pyi │ │ │ │ │ ├── Padding.py │ │ │ │ │ ├── Padding.pyi │ │ │ │ │ ├── RFC1751.py │ │ │ │ │ ├── RFC1751.pyi │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _cpu_features.py │ │ │ │ │ ├── _cpu_features.pyi │ │ │ │ │ ├── _file_system.py │ │ │ │ │ ├── _file_system.pyi │ │ │ │ │ ├── _raw_api.py │ │ │ │ │ ├── _raw_api.pyi │ │ │ │ │ ├── asn1.py │ │ │ │ │ ├── asn1.pyi │ │ │ │ │ ├── number.py │ │ │ │ │ ├── number.pyi │ │ │ │ │ ├── py3compat.py │ │ │ │ │ ├── py3compat.pyi │ │ │ │ │ ├── strxor.py │ │ │ │ │ └── strxor.pyi │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyi │ │ │ │ └── py.typed │ │ │ ├── Flask-1.0.2.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── entry_points.txt │ │ │ │ └── top_level.txt │ │ │ ├── Jinja2-2.10.dist-info │ │ │ │ ├── DESCRIPTION.rst │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── entry_points.txt │ │ │ │ ├── metadata.json │ │ │ │ └── top_level.txt │ │ │ ├── Mako-1.0.7.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── entry_points.txt │ │ │ │ └── top_level.txt │ │ │ ├── MarkupSafe-1.0.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ └── top_level.txt │ │ │ ├── Pygments-2.2.0.dist-info │ │ │ │ ├── DESCRIPTION.rst │ │ │ │ ├── INSTALLER │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── entry_points.txt │ │ │ │ ├── metadata.json │ │ │ │ └── top_level.txt │ │ │ ├── README.txt │ │ │ ├── SQLAlchemy-1.2.12.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ └── top_level.txt │ │ │ ├── Werkzeug-0.14.1.dist-info │ │ │ │ ├── DESCRIPTION.rst │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── metadata.json │ │ │ │ └── top_level.txt │ │ │ ├── alembic-1.0.0.dist-info │ │ │ │ ├── DESCRIPTION.rst │ │ │ │ ├── INSTALLER │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── entry_points.txt │ │ │ │ ├── metadata.json │ │ │ │ └── top_level.txt │ │ │ ├── alembic │ │ │ │ ├── __init__.py │ │ │ │ ├── autogenerate │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── api.py │ │ │ │ │ ├── compare.py │ │ │ │ │ ├── render.py │ │ │ │ │ └── rewriter.py │ │ │ │ ├── command.py │ │ │ │ ├── config.py │ │ │ │ ├── context.py │ │ │ │ ├── ddl │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── impl.py │ │ │ │ │ ├── mssql.py │ │ │ │ │ ├── mysql.py │ │ │ │ │ ├── oracle.py │ │ │ │ │ ├── postgresql.py │ │ │ │ │ └── sqlite.py │ │ │ │ ├── op.py │ │ │ │ ├── operations │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── batch.py │ │ │ │ │ ├── ops.py │ │ │ │ │ ├── schemaobj.py │ │ │ │ │ └── toimpl.py │ │ │ │ ├── runtime │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── environment.py │ │ │ │ │ └── migration.py │ │ │ │ ├── script │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ └── revision.py │ │ │ │ ├── templates │ │ │ │ │ ├── generic │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── alembic.ini.mako │ │ │ │ │ │ ├── env.py │ │ │ │ │ │ └── script.py.mako │ │ │ │ │ ├── multidb │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── alembic.ini.mako │ │ │ │ │ │ ├── env.py │ │ │ │ │ │ └── script.py.mako │ │ │ │ │ └── pylons │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── alembic.ini.mako │ │ │ │ │ │ ├── env.py │ │ │ │ │ │ └── script.py.mako │ │ │ │ ├── testing │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── assertions.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── config.py │ │ │ │ │ ├── engines.py │ │ │ │ │ ├── env.py │ │ │ │ │ ├── exclusions.py │ │ │ │ │ ├── fixtures.py │ │ │ │ │ ├── mock.py │ │ │ │ │ ├── plugin │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── bootstrap.py │ │ │ │ │ │ ├── noseplugin.py │ │ │ │ │ │ ├── plugin_base.py │ │ │ │ │ │ └── pytestplugin.py │ │ │ │ │ ├── provision.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ ├── runner.py │ │ │ │ │ ├── util.py │ │ │ │ │ └── warnings.py │ │ │ │ └── util │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── exc.py │ │ │ │ │ ├── langhelpers.py │ │ │ │ │ ├── messaging.py │ │ │ │ │ ├── pyfiles.py │ │ │ │ │ └── sqla_compat.py │ │ │ ├── banal-0.3.7.dist-info │ │ │ │ ├── DESCRIPTION.rst │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── metadata.json │ │ │ │ ├── namespace_packages.txt │ │ │ │ └── top_level.txt │ │ │ ├── banal │ │ │ │ ├── __init__.py │ │ │ │ ├── bools.py │ │ │ │ ├── cache.py │ │ │ │ ├── dicts.py │ │ │ │ ├── filesystem.py │ │ │ │ └── lists.py │ │ │ ├── chardet-3.0.4.dist-info │ │ │ │ ├── DESCRIPTION.rst │ │ │ │ ├── INSTALLER │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── entry_points.txt │ │ │ │ ├── metadata.json │ │ │ │ └── top_level.txt │ │ │ ├── chardet │ │ │ │ ├── __init__.py │ │ │ │ ├── big5freq.py │ │ │ │ ├── big5prober.py │ │ │ │ ├── chardistribution.py │ │ │ │ ├── charsetgroupprober.py │ │ │ │ ├── charsetprober.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── chardetect.py │ │ │ │ ├── codingstatemachine.py │ │ │ │ ├── compat.py │ │ │ │ ├── cp949prober.py │ │ │ │ ├── enums.py │ │ │ │ ├── escprober.py │ │ │ │ ├── escsm.py │ │ │ │ ├── eucjpprober.py │ │ │ │ ├── euckrfreq.py │ │ │ │ ├── euckrprober.py │ │ │ │ ├── euctwfreq.py │ │ │ │ ├── euctwprober.py │ │ │ │ ├── gb2312freq.py │ │ │ │ ├── gb2312prober.py │ │ │ │ ├── hebrewprober.py │ │ │ │ ├── jisfreq.py │ │ │ │ ├── jpcntx.py │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ ├── langgreekmodel.py │ │ │ │ ├── langhebrewmodel.py │ │ │ │ ├── langhungarianmodel.py │ │ │ │ ├── langthaimodel.py │ │ │ │ ├── langturkishmodel.py │ │ │ │ ├── latin1prober.py │ │ │ │ ├── mbcharsetprober.py │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ ├── mbcssm.py │ │ │ │ ├── sbcharsetprober.py │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ ├── sjisprober.py │ │ │ │ ├── universaldetector.py │ │ │ │ ├── utf8prober.py │ │ │ │ └── version.py │ │ │ ├── click │ │ │ │ ├── __init__.py │ │ │ │ ├── _bashcomplete.py │ │ │ │ ├── _compat.py │ │ │ │ ├── _termui_impl.py │ │ │ │ ├── _textwrap.py │ │ │ │ ├── _unicodefun.py │ │ │ │ ├── _winconsole.py │ │ │ │ ├── core.py │ │ │ │ ├── decorators.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── formatting.py │ │ │ │ ├── globals.py │ │ │ │ ├── parser.py │ │ │ │ ├── termui.py │ │ │ │ ├── testing.py │ │ │ │ ├── types.py │ │ │ │ └── utils.py │ │ │ ├── colorama-0.3.9.dist-info │ │ │ │ ├── DESCRIPTION.rst │ │ │ │ ├── INSTALLER │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── metadata.json │ │ │ │ ├── pbr.json │ │ │ │ └── top_level.txt │ │ │ ├── colorama │ │ │ │ ├── __init__.py │ │ │ │ ├── ansi.py │ │ │ │ ├── ansitowin32.py │ │ │ │ ├── initialise.py │ │ │ │ ├── win32.py │ │ │ │ └── winterm.py │ │ │ ├── dataset-1.1.0.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── namespace_packages.txt │ │ │ │ └── top_level.txt │ │ │ ├── dataset │ │ │ │ ├── __init__.py │ │ │ │ ├── chunked.py │ │ │ │ ├── database.py │ │ │ │ ├── table.py │ │ │ │ ├── types.py │ │ │ │ └── util.py │ │ │ ├── dateutil │ │ │ │ ├── __init__.py │ │ │ │ ├── _common.py │ │ │ │ ├── _version.py │ │ │ │ ├── easter.py │ │ │ │ ├── parser │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _parser.py │ │ │ │ │ └── isoparser.py │ │ │ │ ├── relativedelta.py │ │ │ │ ├── rrule.py │ │ │ │ ├── tz │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _common.py │ │ │ │ │ ├── _factories.py │ │ │ │ │ ├── tz.py │ │ │ │ │ └── win.py │ │ │ │ ├── tzwin.py │ │ │ │ ├── utils.py │ │ │ │ └── zoneinfo │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── dateutil-zoneinfo.tar.gz │ │ │ │ │ └── rebuild.py │ │ │ ├── easy-install.pth │ │ │ ├── easy_install.py │ │ │ ├── editor.py │ │ │ ├── flask │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── _compat.py │ │ │ │ ├── app.py │ │ │ │ ├── blueprints.py │ │ │ │ ├── cli.py │ │ │ │ ├── config.py │ │ │ │ ├── ctx.py │ │ │ │ ├── debughelpers.py │ │ │ │ ├── globals.py │ │ │ │ ├── helpers.py │ │ │ │ ├── json │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── tag.py │ │ │ │ ├── logging.py │ │ │ │ ├── sessions.py │ │ │ │ ├── signals.py │ │ │ │ ├── templating.py │ │ │ │ ├── testing.py │ │ │ │ ├── views.py │ │ │ │ └── wrappers.py │ │ │ ├── frida-12.1.2.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── top_level.txt │ │ │ │ └── zip-safe │ │ │ ├── frida │ │ │ │ ├── __init__.py │ │ │ │ └── core.py │ │ │ ├── frida_tools-1.2.1.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── entry_points.txt │ │ │ │ ├── top_level.txt │ │ │ │ └── zip-safe │ │ │ ├── frida_tools │ │ │ │ ├── __init__.py │ │ │ │ ├── application.py │ │ │ │ ├── discoverer.py │ │ │ │ ├── kill.py │ │ │ │ ├── lsd.py │ │ │ │ ├── model.py │ │ │ │ ├── ps.py │ │ │ │ ├── repl.py │ │ │ │ └── tracer.py │ │ │ ├── itsdangerous-0.24.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ └── top_level.txt │ │ │ ├── itsdangerous.py │ │ │ ├── jinja2 │ │ │ │ ├── __init__.py │ │ │ │ ├── _compat.py │ │ │ │ ├── _identifier.py │ │ │ │ ├── asyncfilters.py │ │ │ │ ├── asyncsupport.py │ │ │ │ ├── bccache.py │ │ │ │ ├── compiler.py │ │ │ │ ├── constants.py │ │ │ │ ├── debug.py │ │ │ │ ├── defaults.py │ │ │ │ ├── environment.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── ext.py │ │ │ │ ├── filters.py │ │ │ │ ├── idtracking.py │ │ │ │ ├── lexer.py │ │ │ │ ├── loaders.py │ │ │ │ ├── meta.py │ │ │ │ ├── nativetypes.py │ │ │ │ ├── nodes.py │ │ │ │ ├── optimizer.py │ │ │ │ ├── parser.py │ │ │ │ ├── runtime.py │ │ │ │ ├── sandbox.py │ │ │ │ ├── tests.py │ │ │ │ ├── utils.py │ │ │ │ └── visitor.py │ │ │ ├── keystone │ │ │ │ ├── __init__.py │ │ │ │ ├── arm64_const.py │ │ │ │ ├── arm_const.py │ │ │ │ ├── evm_const.py │ │ │ │ ├── hexagon_const.py │ │ │ │ ├── keystone.dll │ │ │ │ ├── keystone.py │ │ │ │ ├── keystone_const.py │ │ │ │ ├── mips_const.py │ │ │ │ ├── ppc_const.py │ │ │ │ ├── sparc_const.py │ │ │ │ ├── systemz_const.py │ │ │ │ └── x86_const.py │ │ │ ├── keystone_engine-0.9.1_3-py3.7.egg-info │ │ │ ├── lz4-2.1.10.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ └── top_level.txt │ │ │ ├── lz4 │ │ │ │ ├── __init__.py │ │ │ │ ├── block │ │ │ │ │ └── __init__.py │ │ │ │ ├── frame │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── _compression.py │ │ │ │ └── version.py │ │ │ ├── mako │ │ │ │ ├── __init__.py │ │ │ │ ├── _ast_util.py │ │ │ │ ├── ast.py │ │ │ │ ├── cache.py │ │ │ │ ├── cmd.py │ │ │ │ ├── codegen.py │ │ │ │ ├── compat.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── ext │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── autohandler.py │ │ │ │ │ ├── babelplugin.py │ │ │ │ │ ├── beaker_cache.py │ │ │ │ │ ├── extract.py │ │ │ │ │ ├── linguaplugin.py │ │ │ │ │ ├── preprocessors.py │ │ │ │ │ ├── pygmentplugin.py │ │ │ │ │ └── turbogears.py │ │ │ │ ├── filters.py │ │ │ │ ├── lexer.py │ │ │ │ ├── lookup.py │ │ │ │ ├── parsetree.py │ │ │ │ ├── pygen.py │ │ │ │ ├── pyparser.py │ │ │ │ ├── runtime.py │ │ │ │ ├── template.py │ │ │ │ └── util.py │ │ │ ├── markupsafe │ │ │ │ ├── __init__.py │ │ │ │ ├── _compat.py │ │ │ │ ├── _constants.py │ │ │ │ ├── _native.py │ │ │ │ └── _speedups.c │ │ │ ├── normality-0.6.1.dist-info │ │ │ │ ├── DESCRIPTION.rst │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── metadata.json │ │ │ │ ├── namespace_packages.txt │ │ │ │ ├── top_level.txt │ │ │ │ └── zip-safe │ │ │ ├── normality │ │ │ │ ├── __init__.py │ │ │ │ ├── cleaning.py │ │ │ │ ├── constants.py │ │ │ │ ├── encoding.py │ │ │ │ ├── paths.py │ │ │ │ ├── ranges.py │ │ │ │ ├── stringify.py │ │ │ │ └── transliteration.py │ │ │ ├── pip-10.0.1.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── entry_points.txt │ │ │ │ └── top_level.txt │ │ │ ├── pip-19.0.3.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── entry_points.txt │ │ │ │ └── top_level.txt │ │ │ ├── pip │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── _internal │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── basecommand.py │ │ │ │ │ ├── baseparser.py │ │ │ │ │ ├── build_env.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── cli │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── autocompletion.py │ │ │ │ │ │ ├── base_command.py │ │ │ │ │ │ ├── cmdoptions.py │ │ │ │ │ │ ├── main_parser.py │ │ │ │ │ │ ├── parser.py │ │ │ │ │ │ └── status_codes.py │ │ │ │ │ ├── cmdoptions.py │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── check.py │ │ │ │ │ │ ├── completion.py │ │ │ │ │ │ ├── configuration.py │ │ │ │ │ │ ├── download.py │ │ │ │ │ │ ├── freeze.py │ │ │ │ │ │ ├── hash.py │ │ │ │ │ │ ├── help.py │ │ │ │ │ │ ├── install.py │ │ │ │ │ │ ├── list.py │ │ │ │ │ │ ├── search.py │ │ │ │ │ │ ├── show.py │ │ │ │ │ │ ├── uninstall.py │ │ │ │ │ │ └── wheel.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── configuration.py │ │ │ │ │ ├── download.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── index.py │ │ │ │ │ ├── locations.py │ │ │ │ │ ├── models │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── candidate.py │ │ │ │ │ │ ├── format_control.py │ │ │ │ │ │ ├── index.py │ │ │ │ │ │ └── link.py │ │ │ │ │ ├── operations │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── check.py │ │ │ │ │ │ ├── freeze.py │ │ │ │ │ │ └── prepare.py │ │ │ │ │ ├── pep425tags.py │ │ │ │ │ ├── pyproject.py │ │ │ │ │ ├── req │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── constructors.py │ │ │ │ │ │ ├── req_file.py │ │ │ │ │ │ ├── req_install.py │ │ │ │ │ │ ├── req_set.py │ │ │ │ │ │ ├── req_tracker.py │ │ │ │ │ │ └── req_uninstall.py │ │ │ │ │ ├── resolve.py │ │ │ │ │ ├── status_codes.py │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── appdirs.py │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ ├── deprecation.py │ │ │ │ │ │ ├── encoding.py │ │ │ │ │ │ ├── filesystem.py │ │ │ │ │ │ ├── glibc.py │ │ │ │ │ │ ├── hashes.py │ │ │ │ │ │ ├── logging.py │ │ │ │ │ │ ├── misc.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ ├── outdated.py │ │ │ │ │ │ ├── packaging.py │ │ │ │ │ │ ├── setuptools_build.py │ │ │ │ │ │ ├── temp_dir.py │ │ │ │ │ │ ├── typing.py │ │ │ │ │ │ └── ui.py │ │ │ │ │ ├── vcs │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── bazaar.py │ │ │ │ │ │ ├── git.py │ │ │ │ │ │ ├── mercurial.py │ │ │ │ │ │ └── subversion.py │ │ │ │ │ └── wheel.py │ │ │ │ └── _vendor │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── appdirs.py │ │ │ │ │ ├── cachecontrol │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _cmd.py │ │ │ │ │ ├── adapter.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── caches │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── file_cache.py │ │ │ │ │ │ └── redis_cache.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── controller.py │ │ │ │ │ ├── filewrapper.py │ │ │ │ │ ├── heuristics.py │ │ │ │ │ ├── serialize.py │ │ │ │ │ └── wrapper.py │ │ │ │ │ ├── certifi │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── cacert.pem │ │ │ │ │ └── core.py │ │ │ │ │ ├── chardet │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── big5freq.py │ │ │ │ │ ├── big5prober.py │ │ │ │ │ ├── chardistribution.py │ │ │ │ │ ├── charsetgroupprober.py │ │ │ │ │ ├── charsetprober.py │ │ │ │ │ ├── cli │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── chardetect.py │ │ │ │ │ ├── codingstatemachine.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── cp949prober.py │ │ │ │ │ ├── enums.py │ │ │ │ │ ├── escprober.py │ │ │ │ │ ├── escsm.py │ │ │ │ │ ├── eucjpprober.py │ │ │ │ │ ├── euckrfreq.py │ │ │ │ │ ├── euckrprober.py │ │ │ │ │ ├── euctwfreq.py │ │ │ │ │ ├── euctwprober.py │ │ │ │ │ ├── gb2312freq.py │ │ │ │ │ ├── gb2312prober.py │ │ │ │ │ ├── hebrewprober.py │ │ │ │ │ ├── jisfreq.py │ │ │ │ │ ├── jpcntx.py │ │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ │ ├── langgreekmodel.py │ │ │ │ │ ├── langhebrewmodel.py │ │ │ │ │ ├── langhungarianmodel.py │ │ │ │ │ ├── langthaimodel.py │ │ │ │ │ ├── langturkishmodel.py │ │ │ │ │ ├── latin1prober.py │ │ │ │ │ ├── mbcharsetprober.py │ │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ │ ├── mbcssm.py │ │ │ │ │ ├── sbcharsetprober.py │ │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ │ ├── sjisprober.py │ │ │ │ │ ├── universaldetector.py │ │ │ │ │ ├── utf8prober.py │ │ │ │ │ └── version.py │ │ │ │ │ ├── colorama │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ansi.py │ │ │ │ │ ├── ansitowin32.py │ │ │ │ │ ├── initialise.py │ │ │ │ │ ├── win32.py │ │ │ │ │ └── winterm.py │ │ │ │ │ ├── distlib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _backport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── misc.py │ │ │ │ │ │ ├── shutil.py │ │ │ │ │ │ ├── sysconfig.cfg │ │ │ │ │ │ ├── sysconfig.py │ │ │ │ │ │ └── tarfile.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── database.py │ │ │ │ │ ├── index.py │ │ │ │ │ ├── locators.py │ │ │ │ │ ├── manifest.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── metadata.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── scripts.py │ │ │ │ │ ├── t32.exe │ │ │ │ │ ├── t64.exe │ │ │ │ │ ├── util.py │ │ │ │ │ ├── version.py │ │ │ │ │ ├── w32.exe │ │ │ │ │ ├── w64.exe │ │ │ │ │ └── wheel.py │ │ │ │ │ ├── distro.py │ │ │ │ │ ├── html5lib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _ihatexml.py │ │ │ │ │ ├── _inputstream.py │ │ │ │ │ ├── _tokenizer.py │ │ │ │ │ ├── _trie │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _base.py │ │ │ │ │ │ ├── datrie.py │ │ │ │ │ │ └── py.py │ │ │ │ │ ├── _utils.py │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── filters │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── inject_meta_charset.py │ │ │ │ │ │ ├── lint.py │ │ │ │ │ │ ├── optionaltags.py │ │ │ │ │ │ ├── sanitizer.py │ │ │ │ │ │ └── whitespace.py │ │ │ │ │ ├── html5parser.py │ │ │ │ │ ├── serializer.py │ │ │ │ │ ├── treeadapters │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── genshi.py │ │ │ │ │ │ └── sax.py │ │ │ │ │ ├── treebuilders │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── dom.py │ │ │ │ │ │ ├── etree.py │ │ │ │ │ │ └── etree_lxml.py │ │ │ │ │ └── treewalkers │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── dom.py │ │ │ │ │ │ ├── etree.py │ │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ │ └── genshi.py │ │ │ │ │ ├── idna │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── codec.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── core.py │ │ │ │ │ ├── idnadata.py │ │ │ │ │ ├── intranges.py │ │ │ │ │ ├── package_data.py │ │ │ │ │ └── uts46data.py │ │ │ │ │ ├── ipaddress.py │ │ │ │ │ ├── lockfile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── linklockfile.py │ │ │ │ │ ├── mkdirlockfile.py │ │ │ │ │ ├── pidlockfile.py │ │ │ │ │ ├── sqlitelockfile.py │ │ │ │ │ └── symlinklockfile.py │ │ │ │ │ ├── msgpack │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _version.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ └── fallback.py │ │ │ │ │ ├── packaging │ │ │ │ │ ├── __about__.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _compat.py │ │ │ │ │ ├── _structures.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ ├── specifiers.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── version.py │ │ │ │ │ ├── pep517 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _in_process.py │ │ │ │ │ ├── build.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── colorlog.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── envbuild.py │ │ │ │ │ └── wrappers.py │ │ │ │ │ ├── pkg_resources │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── py31compat.py │ │ │ │ │ ├── progress │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bar.py │ │ │ │ │ ├── counter.py │ │ │ │ │ ├── helpers.py │ │ │ │ │ └── spinner.py │ │ │ │ │ ├── pyparsing.py │ │ │ │ │ ├── pytoml │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── core.py │ │ │ │ │ ├── parser.py │ │ │ │ │ ├── test.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── writer.py │ │ │ │ │ ├── requests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __version__.py │ │ │ │ │ ├── _internal_utils.py │ │ │ │ │ ├── adapters.py │ │ │ │ │ ├── api.py │ │ │ │ │ ├── auth.py │ │ │ │ │ ├── certs.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── cookies.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── help.py │ │ │ │ │ ├── hooks.py │ │ │ │ │ ├── models.py │ │ │ │ │ ├── packages.py │ │ │ │ │ ├── sessions.py │ │ │ │ │ ├── status_codes.py │ │ │ │ │ ├── structures.py │ │ │ │ │ └── utils.py │ │ │ │ │ ├── retrying.py │ │ │ │ │ ├── six.py │ │ │ │ │ ├── urllib3 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _collections.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── connectionpool.py │ │ │ │ │ ├── contrib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _appengine_environ.py │ │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── bindings.py │ │ │ │ │ │ │ └── low_level.py │ │ │ │ │ │ ├── appengine.py │ │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ │ ├── securetransport.py │ │ │ │ │ │ └── socks.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── fields.py │ │ │ │ │ ├── filepost.py │ │ │ │ │ ├── packages │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── backports │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── makefile.py │ │ │ │ │ │ ├── ordered_dict.py │ │ │ │ │ │ ├── six.py │ │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── _implementation.py │ │ │ │ │ ├── poolmanager.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ └── util │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ ├── queue.py │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ ├── retry.py │ │ │ │ │ │ ├── selectors.py │ │ │ │ │ │ ├── ssl_.py │ │ │ │ │ │ ├── timeout.py │ │ │ │ │ │ ├── url.py │ │ │ │ │ │ └── wait.py │ │ │ │ │ └── webencodings │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── mklabels.py │ │ │ │ │ ├── tests.py │ │ │ │ │ └── x_user_defined.py │ │ │ ├── pkg_resources │ │ │ │ ├── __init__.py │ │ │ │ ├── _vendor │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── appdirs.py │ │ │ │ │ ├── packaging │ │ │ │ │ │ ├── __about__.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _compat.py │ │ │ │ │ │ ├── _structures.py │ │ │ │ │ │ ├── markers.py │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ ├── specifiers.py │ │ │ │ │ │ ├── utils.py │ │ │ │ │ │ └── version.py │ │ │ │ │ ├── pyparsing.py │ │ │ │ │ └── six.py │ │ │ │ ├── extern │ │ │ │ │ └── __init__.py │ │ │ │ └── py31compat.py │ │ │ ├── prompt_toolkit-1.0.15.dist-info │ │ │ │ ├── DESCRIPTION.rst │ │ │ │ ├── INSTALLER │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── metadata.json │ │ │ │ └── top_level.txt │ │ │ ├── prompt_toolkit │ │ │ │ ├── __init__.py │ │ │ │ ├── application.py │ │ │ │ ├── auto_suggest.py │ │ │ │ ├── buffer.py │ │ │ │ ├── buffer_mapping.py │ │ │ │ ├── cache.py │ │ │ │ ├── clipboard │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── in_memory.py │ │ │ │ │ └── pyperclip.py │ │ │ │ ├── completion.py │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── completers │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── filesystem.py │ │ │ │ │ │ └── system.py │ │ │ │ │ ├── regular_languages │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── compiler.py │ │ │ │ │ │ ├── completion.py │ │ │ │ │ │ ├── lexer.py │ │ │ │ │ │ ├── regex_parser.py │ │ │ │ │ │ └── validation.py │ │ │ │ │ ├── telnet │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── application.py │ │ │ │ │ │ ├── log.py │ │ │ │ │ │ ├── protocol.py │ │ │ │ │ │ └── server.py │ │ │ │ │ └── validators │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── base.py │ │ │ │ ├── document.py │ │ │ │ ├── enums.py │ │ │ │ ├── eventloop │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── asyncio_base.py │ │ │ │ │ ├── asyncio_posix.py │ │ │ │ │ ├── asyncio_win32.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── callbacks.py │ │ │ │ │ ├── inputhook.py │ │ │ │ │ ├── posix.py │ │ │ │ │ ├── posix_utils.py │ │ │ │ │ ├── select.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── win32.py │ │ │ │ ├── filters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── cli.py │ │ │ │ │ ├── types.py │ │ │ │ │ └── utils.py │ │ │ │ ├── history.py │ │ │ │ ├── input.py │ │ │ │ ├── interface.py │ │ │ │ ├── key_binding │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bindings │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── basic.py │ │ │ │ │ │ ├── completion.py │ │ │ │ │ │ ├── emacs.py │ │ │ │ │ │ ├── named_commands.py │ │ │ │ │ │ ├── scroll.py │ │ │ │ │ │ └── vi.py │ │ │ │ │ ├── defaults.py │ │ │ │ │ ├── digraphs.py │ │ │ │ │ ├── input_processor.py │ │ │ │ │ ├── manager.py │ │ │ │ │ ├── registry.py │ │ │ │ │ └── vi_state.py │ │ │ │ ├── keys.py │ │ │ │ ├── layout │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── containers.py │ │ │ │ │ ├── controls.py │ │ │ │ │ ├── dimension.py │ │ │ │ │ ├── lexers.py │ │ │ │ │ ├── margins.py │ │ │ │ │ ├── menus.py │ │ │ │ │ ├── mouse_handlers.py │ │ │ │ │ ├── processors.py │ │ │ │ │ ├── prompt.py │ │ │ │ │ ├── screen.py │ │ │ │ │ ├── toolbars.py │ │ │ │ │ └── utils.py │ │ │ │ ├── mouse_events.py │ │ │ │ ├── output.py │ │ │ │ ├── reactive.py │ │ │ │ ├── renderer.py │ │ │ │ ├── search_state.py │ │ │ │ ├── selection.py │ │ │ │ ├── shortcuts.py │ │ │ │ ├── styles │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── defaults.py │ │ │ │ │ ├── from_dict.py │ │ │ │ │ ├── from_pygments.py │ │ │ │ │ └── utils.py │ │ │ │ ├── terminal │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── conemu_output.py │ │ │ │ │ ├── vt100_input.py │ │ │ │ │ ├── vt100_output.py │ │ │ │ │ ├── win32_input.py │ │ │ │ │ └── win32_output.py │ │ │ │ ├── token.py │ │ │ │ ├── utils.py │ │ │ │ ├── validation.py │ │ │ │ └── win32_types.py │ │ │ ├── pycryptodome-3.8.2.dist-info │ │ │ │ ├── AUTHORS.rst │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE.rst │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ └── top_level.txt │ │ │ ├── pygments │ │ │ │ ├── __init__.py │ │ │ │ ├── cmdline.py │ │ │ │ ├── console.py │ │ │ │ ├── filter.py │ │ │ │ ├── filters │ │ │ │ │ └── __init__.py │ │ │ │ ├── formatter.py │ │ │ │ ├── formatters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _mapping.py │ │ │ │ │ ├── bbcode.py │ │ │ │ │ ├── html.py │ │ │ │ │ ├── img.py │ │ │ │ │ ├── irc.py │ │ │ │ │ ├── latex.py │ │ │ │ │ ├── other.py │ │ │ │ │ ├── rtf.py │ │ │ │ │ ├── svg.py │ │ │ │ │ ├── terminal.py │ │ │ │ │ └── terminal256.py │ │ │ │ ├── lexer.py │ │ │ │ ├── lexers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _asy_builtins.py │ │ │ │ │ ├── _cl_builtins.py │ │ │ │ │ ├── _cocoa_builtins.py │ │ │ │ │ ├── _csound_builtins.py │ │ │ │ │ ├── _lasso_builtins.py │ │ │ │ │ ├── _lua_builtins.py │ │ │ │ │ ├── _mapping.py │ │ │ │ │ ├── _mql_builtins.py │ │ │ │ │ ├── _openedge_builtins.py │ │ │ │ │ ├── _php_builtins.py │ │ │ │ │ ├── _postgres_builtins.py │ │ │ │ │ ├── _scilab_builtins.py │ │ │ │ │ ├── _sourcemod_builtins.py │ │ │ │ │ ├── _stan_builtins.py │ │ │ │ │ ├── _stata_builtins.py │ │ │ │ │ ├── _tsql_builtins.py │ │ │ │ │ ├── _vim_builtins.py │ │ │ │ │ ├── actionscript.py │ │ │ │ │ ├── agile.py │ │ │ │ │ ├── algebra.py │ │ │ │ │ ├── ambient.py │ │ │ │ │ ├── ampl.py │ │ │ │ │ ├── apl.py │ │ │ │ │ ├── archetype.py │ │ │ │ │ ├── asm.py │ │ │ │ │ ├── automation.py │ │ │ │ │ ├── basic.py │ │ │ │ │ ├── bibtex.py │ │ │ │ │ ├── business.py │ │ │ │ │ ├── c_cpp.py │ │ │ │ │ ├── c_like.py │ │ │ │ │ ├── capnproto.py │ │ │ │ │ ├── chapel.py │ │ │ │ │ ├── clean.py │ │ │ │ │ ├── compiled.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── console.py │ │ │ │ │ ├── crystal.py │ │ │ │ │ ├── csound.py │ │ │ │ │ ├── css.py │ │ │ │ │ ├── d.py │ │ │ │ │ ├── dalvik.py │ │ │ │ │ ├── data.py │ │ │ │ │ ├── diff.py │ │ │ │ │ ├── dotnet.py │ │ │ │ │ ├── dsls.py │ │ │ │ │ ├── dylan.py │ │ │ │ │ ├── ecl.py │ │ │ │ │ ├── eiffel.py │ │ │ │ │ ├── elm.py │ │ │ │ │ ├── erlang.py │ │ │ │ │ ├── esoteric.py │ │ │ │ │ ├── ezhil.py │ │ │ │ │ ├── factor.py │ │ │ │ │ ├── fantom.py │ │ │ │ │ ├── felix.py │ │ │ │ │ ├── forth.py │ │ │ │ │ ├── fortran.py │ │ │ │ │ ├── foxpro.py │ │ │ │ │ ├── functional.py │ │ │ │ │ ├── go.py │ │ │ │ │ ├── grammar_notation.py │ │ │ │ │ ├── graph.py │ │ │ │ │ ├── graphics.py │ │ │ │ │ ├── haskell.py │ │ │ │ │ ├── haxe.py │ │ │ │ │ ├── hdl.py │ │ │ │ │ ├── hexdump.py │ │ │ │ │ ├── html.py │ │ │ │ │ ├── idl.py │ │ │ │ │ ├── igor.py │ │ │ │ │ ├── inferno.py │ │ │ │ │ ├── installers.py │ │ │ │ │ ├── int_fiction.py │ │ │ │ │ ├── iolang.py │ │ │ │ │ ├── j.py │ │ │ │ │ ├── javascript.py │ │ │ │ │ ├── julia.py │ │ │ │ │ ├── jvm.py │ │ │ │ │ ├── lisp.py │ │ │ │ │ ├── make.py │ │ │ │ │ ├── markup.py │ │ │ │ │ ├── math.py │ │ │ │ │ ├── matlab.py │ │ │ │ │ ├── ml.py │ │ │ │ │ ├── modeling.py │ │ │ │ │ ├── modula2.py │ │ │ │ │ ├── monte.py │ │ │ │ │ ├── ncl.py │ │ │ │ │ ├── nimrod.py │ │ │ │ │ ├── nit.py │ │ │ │ │ ├── nix.py │ │ │ │ │ ├── oberon.py │ │ │ │ │ ├── objective.py │ │ │ │ │ ├── ooc.py │ │ │ │ │ ├── other.py │ │ │ │ │ ├── parasail.py │ │ │ │ │ ├── parsers.py │ │ │ │ │ ├── pascal.py │ │ │ │ │ ├── pawn.py │ │ │ │ │ ├── perl.py │ │ │ │ │ ├── php.py │ │ │ │ │ ├── praat.py │ │ │ │ │ ├── prolog.py │ │ │ │ │ ├── python.py │ │ │ │ │ ├── qvt.py │ │ │ │ │ ├── r.py │ │ │ │ │ ├── rdf.py │ │ │ │ │ ├── rebol.py │ │ │ │ │ ├── resource.py │ │ │ │ │ ├── rnc.py │ │ │ │ │ ├── roboconf.py │ │ │ │ │ ├── robotframework.py │ │ │ │ │ ├── ruby.py │ │ │ │ │ ├── rust.py │ │ │ │ │ ├── sas.py │ │ │ │ │ ├── scripting.py │ │ │ │ │ ├── shell.py │ │ │ │ │ ├── smalltalk.py │ │ │ │ │ ├── smv.py │ │ │ │ │ ├── snobol.py │ │ │ │ │ ├── special.py │ │ │ │ │ ├── sql.py │ │ │ │ │ ├── stata.py │ │ │ │ │ ├── supercollider.py │ │ │ │ │ ├── tcl.py │ │ │ │ │ ├── templates.py │ │ │ │ │ ├── testing.py │ │ │ │ │ ├── text.py │ │ │ │ │ ├── textedit.py │ │ │ │ │ ├── textfmts.py │ │ │ │ │ ├── theorem.py │ │ │ │ │ ├── trafficscript.py │ │ │ │ │ ├── typoscript.py │ │ │ │ │ ├── urbi.py │ │ │ │ │ ├── varnish.py │ │ │ │ │ ├── verification.py │ │ │ │ │ ├── web.py │ │ │ │ │ ├── webmisc.py │ │ │ │ │ ├── whiley.py │ │ │ │ │ └── x10.py │ │ │ │ ├── modeline.py │ │ │ │ ├── plugin.py │ │ │ │ ├── regexopt.py │ │ │ │ ├── scanner.py │ │ │ │ ├── sphinxext.py │ │ │ │ ├── style.py │ │ │ │ ├── styles │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── abap.py │ │ │ │ │ ├── algol.py │ │ │ │ │ ├── algol_nu.py │ │ │ │ │ ├── arduino.py │ │ │ │ │ ├── autumn.py │ │ │ │ │ ├── borland.py │ │ │ │ │ ├── bw.py │ │ │ │ │ ├── colorful.py │ │ │ │ │ ├── default.py │ │ │ │ │ ├── emacs.py │ │ │ │ │ ├── friendly.py │ │ │ │ │ ├── fruity.py │ │ │ │ │ ├── igor.py │ │ │ │ │ ├── lovelace.py │ │ │ │ │ ├── manni.py │ │ │ │ │ ├── monokai.py │ │ │ │ │ ├── murphy.py │ │ │ │ │ ├── native.py │ │ │ │ │ ├── paraiso_dark.py │ │ │ │ │ ├── paraiso_light.py │ │ │ │ │ ├── pastie.py │ │ │ │ │ ├── perldoc.py │ │ │ │ │ ├── rainbow_dash.py │ │ │ │ │ ├── rrt.py │ │ │ │ │ ├── sas.py │ │ │ │ │ ├── stata.py │ │ │ │ │ ├── tango.py │ │ │ │ │ ├── trac.py │ │ │ │ │ ├── vim.py │ │ │ │ │ ├── vs.py │ │ │ │ │ └── xcode.py │ │ │ │ ├── token.py │ │ │ │ ├── unistring.py │ │ │ │ └── util.py │ │ │ ├── pyserial-3.4.dist-info │ │ │ │ ├── DESCRIPTION.rst │ │ │ │ ├── INSTALLER │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── metadata.json │ │ │ │ └── top_level.txt │ │ │ ├── python_dateutil-2.7.3.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── top_level.txt │ │ │ │ └── zip-safe │ │ │ ├── python_editor-1.0.3.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ └── top_level.txt │ │ │ ├── pyusb-1.0.2.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ └── top_level.txt │ │ │ ├── serial │ │ │ │ ├── __init__.py │ │ │ │ ├── aio.py │ │ │ │ ├── rfc2217.py │ │ │ │ ├── rs485.py │ │ │ │ ├── serialcli.py │ │ │ │ ├── serialjava.py │ │ │ │ ├── serialposix.py │ │ │ │ ├── serialutil.py │ │ │ │ ├── serialwin32.py │ │ │ │ ├── threaded │ │ │ │ │ └── __init__.py │ │ │ │ ├── tools │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── hexlify_codec.py │ │ │ │ │ ├── list_ports.py │ │ │ │ │ ├── list_ports_common.py │ │ │ │ │ ├── list_ports_linux.py │ │ │ │ │ ├── list_ports_osx.py │ │ │ │ │ ├── list_ports_posix.py │ │ │ │ │ ├── list_ports_windows.py │ │ │ │ │ └── miniterm.py │ │ │ │ ├── urlhandler │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── protocol_alt.py │ │ │ │ │ ├── protocol_hwgrep.py │ │ │ │ │ ├── protocol_loop.py │ │ │ │ │ ├── protocol_rfc2217.py │ │ │ │ │ ├── protocol_serve-rfc2217.py │ │ │ │ │ ├── protocol_socket.py │ │ │ │ │ └── protocol_spy.py │ │ │ │ └── win32.py │ │ │ ├── setuptools-40.0.0.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── dependency_links.txt │ │ │ │ ├── entry_points.txt │ │ │ │ ├── top_level.txt │ │ │ │ └── zip-safe │ │ │ ├── setuptools-40.8.0.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── dependency_links.txt │ │ │ │ ├── entry_points.txt │ │ │ │ ├── top_level.txt │ │ │ │ └── zip-safe │ │ │ ├── setuptools │ │ │ │ ├── __init__.py │ │ │ │ ├── _deprecation_warning.py │ │ │ │ ├── _vendor │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── packaging │ │ │ │ │ │ ├── __about__.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _compat.py │ │ │ │ │ │ ├── _structures.py │ │ │ │ │ │ ├── markers.py │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ ├── specifiers.py │ │ │ │ │ │ ├── utils.py │ │ │ │ │ │ └── version.py │ │ │ │ │ ├── pyparsing.py │ │ │ │ │ └── six.py │ │ │ │ ├── archive_util.py │ │ │ │ ├── build_meta.py │ │ │ │ ├── cli-32.exe │ │ │ │ ├── cli-64.exe │ │ │ │ ├── cli.exe │ │ │ │ ├── command │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── alias.py │ │ │ │ │ ├── bdist_egg.py │ │ │ │ │ ├── bdist_rpm.py │ │ │ │ │ ├── bdist_wininst.py │ │ │ │ │ ├── build_clib.py │ │ │ │ │ ├── build_ext.py │ │ │ │ │ ├── build_py.py │ │ │ │ │ ├── develop.py │ │ │ │ │ ├── dist_info.py │ │ │ │ │ ├── easy_install.py │ │ │ │ │ ├── egg_info.py │ │ │ │ │ ├── install.py │ │ │ │ │ ├── install_egg_info.py │ │ │ │ │ ├── install_lib.py │ │ │ │ │ ├── install_scripts.py │ │ │ │ │ ├── launcher manifest.xml │ │ │ │ │ ├── py36compat.py │ │ │ │ │ ├── register.py │ │ │ │ │ ├── rotate.py │ │ │ │ │ ├── saveopts.py │ │ │ │ │ ├── sdist.py │ │ │ │ │ ├── setopt.py │ │ │ │ │ ├── test.py │ │ │ │ │ ├── upload.py │ │ │ │ │ └── upload_docs.py │ │ │ │ ├── config.py │ │ │ │ ├── dep_util.py │ │ │ │ ├── depends.py │ │ │ │ ├── dist.py │ │ │ │ ├── extension.py │ │ │ │ ├── extern │ │ │ │ │ └── __init__.py │ │ │ │ ├── glibc.py │ │ │ │ ├── glob.py │ │ │ │ ├── gui-32.exe │ │ │ │ ├── gui-64.exe │ │ │ │ ├── gui.exe │ │ │ │ ├── launch.py │ │ │ │ ├── lib2to3_ex.py │ │ │ │ ├── monkey.py │ │ │ │ ├── msvc.py │ │ │ │ ├── namespaces.py │ │ │ │ ├── package_index.py │ │ │ │ ├── pep425tags.py │ │ │ │ ├── py27compat.py │ │ │ │ ├── py31compat.py │ │ │ │ ├── py33compat.py │ │ │ │ ├── py36compat.py │ │ │ │ ├── sandbox.py │ │ │ │ ├── script (dev).tmpl │ │ │ │ ├── script.tmpl │ │ │ │ ├── site-patch.py │ │ │ │ ├── ssl_support.py │ │ │ │ ├── unicode_utils.py │ │ │ │ ├── version.py │ │ │ │ ├── wheel.py │ │ │ │ └── windows_support.py │ │ │ ├── six-1.11.0.dist-info │ │ │ │ ├── DESCRIPTION.rst │ │ │ │ ├── INSTALLER │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── metadata.json │ │ │ │ └── top_level.txt │ │ │ ├── six.py │ │ │ ├── sqlalchemy │ │ │ │ ├── __init__.py │ │ │ │ ├── connectors │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── mxodbc.py │ │ │ │ │ ├── pyodbc.py │ │ │ │ │ └── zxJDBC.py │ │ │ │ ├── databases │ │ │ │ │ └── __init__.py │ │ │ │ ├── dialects │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── firebird │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── fdb.py │ │ │ │ │ │ └── kinterbasdb.py │ │ │ │ │ ├── mssql │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── adodbapi.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── information_schema.py │ │ │ │ │ │ ├── mxodbc.py │ │ │ │ │ │ ├── pymssql.py │ │ │ │ │ │ ├── pyodbc.py │ │ │ │ │ │ └── zxjdbc.py │ │ │ │ │ ├── mysql │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── cymysql.py │ │ │ │ │ │ ├── dml.py │ │ │ │ │ │ ├── enumerated.py │ │ │ │ │ │ ├── gaerdbms.py │ │ │ │ │ │ ├── json.py │ │ │ │ │ │ ├── mysqlconnector.py │ │ │ │ │ │ ├── mysqldb.py │ │ │ │ │ │ ├── oursql.py │ │ │ │ │ │ ├── pymysql.py │ │ │ │ │ │ ├── pyodbc.py │ │ │ │ │ │ ├── reflection.py │ │ │ │ │ │ ├── types.py │ │ │ │ │ │ └── zxjdbc.py │ │ │ │ │ ├── oracle │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── cx_oracle.py │ │ │ │ │ │ └── zxjdbc.py │ │ │ │ │ ├── postgresql │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── array.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── dml.py │ │ │ │ │ │ ├── ext.py │ │ │ │ │ │ ├── hstore.py │ │ │ │ │ │ ├── json.py │ │ │ │ │ │ ├── pg8000.py │ │ │ │ │ │ ├── psycopg2.py │ │ │ │ │ │ ├── psycopg2cffi.py │ │ │ │ │ │ ├── pygresql.py │ │ │ │ │ │ ├── pypostgresql.py │ │ │ │ │ │ ├── ranges.py │ │ │ │ │ │ └── zxjdbc.py │ │ │ │ │ ├── sqlite │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── pysqlcipher.py │ │ │ │ │ │ └── pysqlite.py │ │ │ │ │ └── sybase │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── mxodbc.py │ │ │ │ │ │ ├── pyodbc.py │ │ │ │ │ │ └── pysybase.py │ │ │ │ ├── engine │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── default.py │ │ │ │ │ ├── interfaces.py │ │ │ │ │ ├── reflection.py │ │ │ │ │ ├── result.py │ │ │ │ │ ├── strategies.py │ │ │ │ │ ├── threadlocal.py │ │ │ │ │ ├── url.py │ │ │ │ │ └── util.py │ │ │ │ ├── event │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── api.py │ │ │ │ │ ├── attr.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── legacy.py │ │ │ │ │ └── registry.py │ │ │ │ ├── events.py │ │ │ │ ├── exc.py │ │ │ │ ├── ext │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── associationproxy.py │ │ │ │ │ ├── automap.py │ │ │ │ │ ├── baked.py │ │ │ │ │ ├── compiler.py │ │ │ │ │ ├── declarative │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── api.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ └── clsregistry.py │ │ │ │ │ ├── horizontal_shard.py │ │ │ │ │ ├── hybrid.py │ │ │ │ │ ├── indexable.py │ │ │ │ │ ├── instrumentation.py │ │ │ │ │ ├── mutable.py │ │ │ │ │ ├── orderinglist.py │ │ │ │ │ └── serializer.py │ │ │ │ ├── inspection.py │ │ │ │ ├── interfaces.py │ │ │ │ ├── log.py │ │ │ │ ├── orm │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── attributes.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── collections.py │ │ │ │ │ ├── dependency.py │ │ │ │ │ ├── deprecated_interfaces.py │ │ │ │ │ ├── descriptor_props.py │ │ │ │ │ ├── dynamic.py │ │ │ │ │ ├── evaluator.py │ │ │ │ │ ├── events.py │ │ │ │ │ ├── exc.py │ │ │ │ │ ├── identity.py │ │ │ │ │ ├── instrumentation.py │ │ │ │ │ ├── interfaces.py │ │ │ │ │ ├── loading.py │ │ │ │ │ ├── mapper.py │ │ │ │ │ ├── path_registry.py │ │ │ │ │ ├── persistence.py │ │ │ │ │ ├── properties.py │ │ │ │ │ ├── query.py │ │ │ │ │ ├── relationships.py │ │ │ │ │ ├── scoping.py │ │ │ │ │ ├── session.py │ │ │ │ │ ├── state.py │ │ │ │ │ ├── strategies.py │ │ │ │ │ ├── strategy_options.py │ │ │ │ │ ├── sync.py │ │ │ │ │ ├── unitofwork.py │ │ │ │ │ └── util.py │ │ │ │ ├── pool.py │ │ │ │ ├── processors.py │ │ │ │ ├── schema.py │ │ │ │ ├── sql │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── annotation.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── compiler.py │ │ │ │ │ ├── crud.py │ │ │ │ │ ├── ddl.py │ │ │ │ │ ├── default_comparator.py │ │ │ │ │ ├── dml.py │ │ │ │ │ ├── elements.py │ │ │ │ │ ├── expression.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── naming.py │ │ │ │ │ ├── operators.py │ │ │ │ │ ├── schema.py │ │ │ │ │ ├── selectable.py │ │ │ │ │ ├── sqltypes.py │ │ │ │ │ ├── type_api.py │ │ │ │ │ ├── util.py │ │ │ │ │ └── visitors.py │ │ │ │ ├── testing │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── assertions.py │ │ │ │ │ ├── assertsql.py │ │ │ │ │ ├── config.py │ │ │ │ │ ├── engines.py │ │ │ │ │ ├── entities.py │ │ │ │ │ ├── exclusions.py │ │ │ │ │ ├── fixtures.py │ │ │ │ │ ├── mock.py │ │ │ │ │ ├── pickleable.py │ │ │ │ │ ├── plugin │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── bootstrap.py │ │ │ │ │ │ ├── noseplugin.py │ │ │ │ │ │ ├── plugin_base.py │ │ │ │ │ │ └── pytestplugin.py │ │ │ │ │ ├── profiling.py │ │ │ │ │ ├── provision.py │ │ │ │ │ ├── replay_fixture.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ ├── runner.py │ │ │ │ │ ├── schema.py │ │ │ │ │ ├── suite │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_cte.py │ │ │ │ │ │ ├── test_ddl.py │ │ │ │ │ │ ├── test_dialect.py │ │ │ │ │ │ ├── test_insert.py │ │ │ │ │ │ ├── test_reflection.py │ │ │ │ │ │ ├── test_results.py │ │ │ │ │ │ ├── test_select.py │ │ │ │ │ │ ├── test_sequence.py │ │ │ │ │ │ ├── test_types.py │ │ │ │ │ │ └── test_update_delete.py │ │ │ │ │ ├── util.py │ │ │ │ │ └── warnings.py │ │ │ │ ├── types.py │ │ │ │ └── util │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _collections.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── deprecations.py │ │ │ │ │ ├── langhelpers.py │ │ │ │ │ ├── queue.py │ │ │ │ │ └── topological.py │ │ │ ├── termcolor-1.1.0.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ └── top_level.txt │ │ │ ├── termcolor.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_normality.py │ │ │ │ └── test_paths.py │ │ │ ├── usb │ │ │ │ ├── __init__.py │ │ │ │ ├── _debug.py │ │ │ │ ├── _interop.py │ │ │ │ ├── _lookup.py │ │ │ │ ├── _objfinalizer.py │ │ │ │ ├── backend │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── libusb0.py │ │ │ │ │ ├── libusb1.py │ │ │ │ │ └── openusb.py │ │ │ │ ├── control.py │ │ │ │ ├── core.py │ │ │ │ ├── legacy.py │ │ │ │ ├── libloader.py │ │ │ │ └── util.py │ │ │ ├── wcwidth-0.1.7.dist-info │ │ │ │ ├── DESCRIPTION.rst │ │ │ │ ├── INSTALLER │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── metadata.json │ │ │ │ ├── top_level.txt │ │ │ │ └── zip-safe │ │ │ ├── wcwidth │ │ │ │ ├── __init__.py │ │ │ │ ├── table_wide.py │ │ │ │ ├── table_zero.py │ │ │ │ ├── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_core.py │ │ │ │ └── wcwidth.py │ │ │ ├── werkzeug │ │ │ │ ├── __init__.py │ │ │ │ ├── _compat.py │ │ │ │ ├── _internal.py │ │ │ │ ├── _reloader.py │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── atom.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── fixers.py │ │ │ │ │ ├── iterio.py │ │ │ │ │ ├── jsrouting.py │ │ │ │ │ ├── limiter.py │ │ │ │ │ ├── lint.py │ │ │ │ │ ├── profiler.py │ │ │ │ │ ├── securecookie.py │ │ │ │ │ ├── sessions.py │ │ │ │ │ ├── testtools.py │ │ │ │ │ └── wrappers.py │ │ │ │ ├── datastructures.py │ │ │ │ ├── debug │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── console.py │ │ │ │ │ ├── repr.py │ │ │ │ │ ├── shared │ │ │ │ │ │ ├── FONT_LICENSE │ │ │ │ │ │ ├── console.png │ │ │ │ │ │ ├── debugger.js │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── less.png │ │ │ │ │ │ ├── more.png │ │ │ │ │ │ ├── source.png │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ └── ubuntu.ttf │ │ │ │ │ └── tbtools.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── formparser.py │ │ │ │ ├── http.py │ │ │ │ ├── local.py │ │ │ │ ├── posixemulation.py │ │ │ │ ├── routing.py │ │ │ │ ├── script.py │ │ │ │ ├── security.py │ │ │ │ ├── serving.py │ │ │ │ ├── test.py │ │ │ │ ├── testapp.py │ │ │ │ ├── urls.py │ │ │ │ ├── useragents.py │ │ │ │ ├── utils.py │ │ │ │ ├── websocket.py │ │ │ │ ├── wrappers.py │ │ │ │ └── wsgi.py │ │ │ ├── wheel-0.31.1.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── entry_points.txt │ │ │ │ └── top_level.txt │ │ │ └── wheel │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── archive.py │ │ │ │ ├── bdist_wheel.py │ │ │ │ ├── egg2wheel.py │ │ │ │ ├── install.py │ │ │ │ ├── metadata.py │ │ │ │ ├── paths.py │ │ │ │ ├── pep425tags.py │ │ │ │ ├── pkginfo.py │ │ │ │ ├── signatures │ │ │ │ ├── __init__.py │ │ │ │ ├── djbec.py │ │ │ │ ├── ed25519py.py │ │ │ │ └── keys.py │ │ │ │ ├── tool │ │ │ │ └── __init__.py │ │ │ │ ├── util.py │ │ │ │ └── wininst2wheel.py │ │ ├── site.py │ │ ├── smtpd.py │ │ ├── smtplib.py │ │ ├── sndhdr.py │ │ ├── socket.py │ │ ├── socketserver.py │ │ ├── sqlite3 │ │ │ ├── __init__.py │ │ │ ├── dbapi2.py │ │ │ ├── dump.py │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ ├── backup.py │ │ │ │ ├── dbapi.py │ │ │ │ ├── dump.py │ │ │ │ ├── factory.py │ │ │ │ ├── hooks.py │ │ │ │ ├── regression.py │ │ │ │ ├── transactions.py │ │ │ │ ├── types.py │ │ │ │ └── userfunctions.py │ │ ├── sre_compile.py │ │ ├── sre_constants.py │ │ ├── sre_parse.py │ │ ├── ssl.py │ │ ├── stat.py │ │ ├── statistics.py │ │ ├── string.py │ │ ├── stringprep.py │ │ ├── struct.py │ │ ├── subprocess.py │ │ ├── sunau.py │ │ ├── symbol.py │ │ ├── symtable.py │ │ ├── sysconfig.py │ │ ├── tabnanny.py │ │ ├── tarfile.py │ │ ├── telnetlib.py │ │ ├── tempfile.py │ │ ├── test │ │ │ ├── Sine-1000Hz-300ms.aif │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── _test_multiprocessing.py │ │ │ ├── allsans.pem │ │ │ ├── ann_module.py │ │ │ ├── ann_module2.py │ │ │ ├── ann_module3.py │ │ │ ├── audiodata │ │ │ │ ├── pluck-alaw.aifc │ │ │ │ ├── pluck-pcm16.aiff │ │ │ │ ├── pluck-pcm16.au │ │ │ │ ├── pluck-pcm16.wav │ │ │ │ ├── pluck-pcm24.aiff │ │ │ │ ├── pluck-pcm24.au │ │ │ │ ├── pluck-pcm24.wav │ │ │ │ ├── pluck-pcm32.aiff │ │ │ │ ├── pluck-pcm32.au │ │ │ │ ├── pluck-pcm32.wav │ │ │ │ ├── pluck-pcm8.aiff │ │ │ │ ├── pluck-pcm8.au │ │ │ │ ├── pluck-pcm8.wav │ │ │ │ ├── pluck-ulaw.aifc │ │ │ │ └── pluck-ulaw.au │ │ │ ├── audiotest.au │ │ │ ├── audiotests.py │ │ │ ├── autotest.py │ │ │ ├── bad_coding.py │ │ │ ├── bad_coding2.py │ │ │ ├── bad_getattr.py │ │ │ ├── bad_getattr2.py │ │ │ ├── bad_getattr3.py │ │ │ ├── badcert.pem │ │ │ ├── badkey.pem │ │ │ ├── badsyntax_3131.py │ │ │ ├── badsyntax_future10.py │ │ │ ├── badsyntax_future3.py │ │ │ ├── badsyntax_future4.py │ │ │ ├── badsyntax_future5.py │ │ │ ├── badsyntax_future6.py │ │ │ ├── badsyntax_future7.py │ │ │ ├── badsyntax_future8.py │ │ │ ├── badsyntax_future9.py │ │ │ ├── badsyntax_pep3120.py │ │ │ ├── bisect_cmd.py │ │ │ ├── bytecode_helper.py │ │ │ ├── capath │ │ │ │ ├── 4e1295a3.0 │ │ │ │ ├── 5ed36f99.0 │ │ │ │ ├── 6e88d7b8.0 │ │ │ │ ├── 99d0fa06.0 │ │ │ │ ├── b1930218.0 │ │ │ │ └── ceff1710.0 │ │ │ ├── cfgparser.1 │ │ │ ├── cfgparser.2 │ │ │ ├── cfgparser.3 │ │ │ ├── cjkencodings │ │ │ │ ├── big5-utf8.txt │ │ │ │ ├── big5.txt │ │ │ │ ├── big5hkscs-utf8.txt │ │ │ │ ├── big5hkscs.txt │ │ │ │ ├── cp949-utf8.txt │ │ │ │ ├── cp949.txt │ │ │ │ ├── euc_jisx0213-utf8.txt │ │ │ │ ├── euc_jisx0213.txt │ │ │ │ ├── euc_jp-utf8.txt │ │ │ │ ├── euc_jp.txt │ │ │ │ ├── euc_kr-utf8.txt │ │ │ │ ├── euc_kr.txt │ │ │ │ ├── gb18030-utf8.txt │ │ │ │ ├── gb18030.txt │ │ │ │ ├── gb2312-utf8.txt │ │ │ │ ├── gb2312.txt │ │ │ │ ├── gbk-utf8.txt │ │ │ │ ├── gbk.txt │ │ │ │ ├── hz-utf8.txt │ │ │ │ ├── hz.txt │ │ │ │ ├── iso2022_jp-utf8.txt │ │ │ │ ├── iso2022_jp.txt │ │ │ │ ├── iso2022_kr-utf8.txt │ │ │ │ ├── iso2022_kr.txt │ │ │ │ ├── johab-utf8.txt │ │ │ │ ├── johab.txt │ │ │ │ ├── shift_jis-utf8.txt │ │ │ │ ├── shift_jis.txt │ │ │ │ ├── shift_jisx0213-utf8.txt │ │ │ │ └── shift_jisx0213.txt │ │ │ ├── clinic.test │ │ │ ├── cmath_testcases.txt │ │ │ ├── coding20731.py │ │ │ ├── crashers │ │ │ │ ├── README │ │ │ │ ├── bogus_code_obj.py │ │ │ │ ├── gc_inspection.py │ │ │ │ ├── infinite_loop_re.py │ │ │ │ ├── mutation_inside_cyclegc.py │ │ │ │ ├── recursive_call.py │ │ │ │ ├── trace_at_recursion_limit.py │ │ │ │ └── underlying_dict.py │ │ │ ├── curses_tests.py │ │ │ ├── data │ │ │ │ └── README │ │ │ ├── dataclass_module_1.py │ │ │ ├── dataclass_module_1_str.py │ │ │ ├── dataclass_module_2.py │ │ │ ├── dataclass_module_2_str.py │ │ │ ├── datetimetester.py │ │ │ ├── decimaltestdata │ │ │ │ ├── abs.decTest │ │ │ │ ├── add.decTest │ │ │ │ ├── and.decTest │ │ │ │ ├── base.decTest │ │ │ │ ├── clamp.decTest │ │ │ │ ├── class.decTest │ │ │ │ ├── compare.decTest │ │ │ │ ├── comparetotal.decTest │ │ │ │ ├── comparetotmag.decTest │ │ │ │ ├── copy.decTest │ │ │ │ ├── copyabs.decTest │ │ │ │ ├── copynegate.decTest │ │ │ │ ├── copysign.decTest │ │ │ │ ├── ddAbs.decTest │ │ │ │ ├── ddAdd.decTest │ │ │ │ ├── ddAnd.decTest │ │ │ │ ├── ddBase.decTest │ │ │ │ ├── ddCanonical.decTest │ │ │ │ ├── ddClass.decTest │ │ │ │ ├── ddCompare.decTest │ │ │ │ ├── ddCompareSig.decTest │ │ │ │ ├── ddCompareTotal.decTest │ │ │ │ ├── ddCompareTotalMag.decTest │ │ │ │ ├── ddCopy.decTest │ │ │ │ ├── ddCopyAbs.decTest │ │ │ │ ├── ddCopyNegate.decTest │ │ │ │ ├── ddCopySign.decTest │ │ │ │ ├── ddDivide.decTest │ │ │ │ ├── ddDivideInt.decTest │ │ │ │ ├── ddEncode.decTest │ │ │ │ ├── ddFMA.decTest │ │ │ │ ├── ddInvert.decTest │ │ │ │ ├── ddLogB.decTest │ │ │ │ ├── ddMax.decTest │ │ │ │ ├── ddMaxMag.decTest │ │ │ │ ├── ddMin.decTest │ │ │ │ ├── ddMinMag.decTest │ │ │ │ ├── ddMinus.decTest │ │ │ │ ├── ddMultiply.decTest │ │ │ │ ├── ddNextMinus.decTest │ │ │ │ ├── ddNextPlus.decTest │ │ │ │ ├── ddNextToward.decTest │ │ │ │ ├── ddOr.decTest │ │ │ │ ├── ddPlus.decTest │ │ │ │ ├── ddQuantize.decTest │ │ │ │ ├── ddReduce.decTest │ │ │ │ ├── ddRemainder.decTest │ │ │ │ ├── ddRemainderNear.decTest │ │ │ │ ├── ddRotate.decTest │ │ │ │ ├── ddSameQuantum.decTest │ │ │ │ ├── ddScaleB.decTest │ │ │ │ ├── ddShift.decTest │ │ │ │ ├── ddSubtract.decTest │ │ │ │ ├── ddToIntegral.decTest │ │ │ │ ├── ddXor.decTest │ │ │ │ ├── decDouble.decTest │ │ │ │ ├── decQuad.decTest │ │ │ │ ├── decSingle.decTest │ │ │ │ ├── divide.decTest │ │ │ │ ├── divideint.decTest │ │ │ │ ├── dqAbs.decTest │ │ │ │ ├── dqAdd.decTest │ │ │ │ ├── dqAnd.decTest │ │ │ │ ├── dqBase.decTest │ │ │ │ ├── dqCanonical.decTest │ │ │ │ ├── dqClass.decTest │ │ │ │ ├── dqCompare.decTest │ │ │ │ ├── dqCompareSig.decTest │ │ │ │ ├── dqCompareTotal.decTest │ │ │ │ ├── dqCompareTotalMag.decTest │ │ │ │ ├── dqCopy.decTest │ │ │ │ ├── dqCopyAbs.decTest │ │ │ │ ├── dqCopyNegate.decTest │ │ │ │ ├── dqCopySign.decTest │ │ │ │ ├── dqDivide.decTest │ │ │ │ ├── dqDivideInt.decTest │ │ │ │ ├── dqEncode.decTest │ │ │ │ ├── dqFMA.decTest │ │ │ │ ├── dqInvert.decTest │ │ │ │ ├── dqLogB.decTest │ │ │ │ ├── dqMax.decTest │ │ │ │ ├── dqMaxMag.decTest │ │ │ │ ├── dqMin.decTest │ │ │ │ ├── dqMinMag.decTest │ │ │ │ ├── dqMinus.decTest │ │ │ │ ├── dqMultiply.decTest │ │ │ │ ├── dqNextMinus.decTest │ │ │ │ ├── dqNextPlus.decTest │ │ │ │ ├── dqNextToward.decTest │ │ │ │ ├── dqOr.decTest │ │ │ │ ├── dqPlus.decTest │ │ │ │ ├── dqQuantize.decTest │ │ │ │ ├── dqReduce.decTest │ │ │ │ ├── dqRemainder.decTest │ │ │ │ ├── dqRemainderNear.decTest │ │ │ │ ├── dqRotate.decTest │ │ │ │ ├── dqSameQuantum.decTest │ │ │ │ ├── dqScaleB.decTest │ │ │ │ ├── dqShift.decTest │ │ │ │ ├── dqSubtract.decTest │ │ │ │ ├── dqToIntegral.decTest │ │ │ │ ├── dqXor.decTest │ │ │ │ ├── dsBase.decTest │ │ │ │ ├── dsEncode.decTest │ │ │ │ ├── exp.decTest │ │ │ │ ├── extra.decTest │ │ │ │ ├── fma.decTest │ │ │ │ ├── inexact.decTest │ │ │ │ ├── invert.decTest │ │ │ │ ├── ln.decTest │ │ │ │ ├── log10.decTest │ │ │ │ ├── logb.decTest │ │ │ │ ├── max.decTest │ │ │ │ ├── maxmag.decTest │ │ │ │ ├── min.decTest │ │ │ │ ├── minmag.decTest │ │ │ │ ├── minus.decTest │ │ │ │ ├── multiply.decTest │ │ │ │ ├── nextminus.decTest │ │ │ │ ├── nextplus.decTest │ │ │ │ ├── nexttoward.decTest │ │ │ │ ├── or.decTest │ │ │ │ ├── plus.decTest │ │ │ │ ├── power.decTest │ │ │ │ ├── powersqrt.decTest │ │ │ │ ├── quantize.decTest │ │ │ │ ├── randomBound32.decTest │ │ │ │ ├── randoms.decTest │ │ │ │ ├── reduce.decTest │ │ │ │ ├── remainder.decTest │ │ │ │ ├── remainderNear.decTest │ │ │ │ ├── rescale.decTest │ │ │ │ ├── rotate.decTest │ │ │ │ ├── rounding.decTest │ │ │ │ ├── samequantum.decTest │ │ │ │ ├── scaleb.decTest │ │ │ │ ├── shift.decTest │ │ │ │ ├── squareroot.decTest │ │ │ │ ├── subtract.decTest │ │ │ │ ├── testall.decTest │ │ │ │ ├── tointegral.decTest │ │ │ │ ├── tointegralx.decTest │ │ │ │ └── xor.decTest │ │ │ ├── dis_module.py │ │ │ ├── doctest_aliases.py │ │ │ ├── double_const.py │ │ │ ├── dtracedata │ │ │ │ ├── assert_usable.d │ │ │ │ ├── assert_usable.stp │ │ │ │ ├── call_stack.d │ │ │ │ ├── call_stack.d.expected │ │ │ │ ├── call_stack.py │ │ │ │ ├── call_stack.stp │ │ │ │ ├── call_stack.stp.expected │ │ │ │ ├── gc.d │ │ │ │ ├── gc.d.expected │ │ │ │ ├── gc.py │ │ │ │ ├── gc.stp │ │ │ │ ├── gc.stp.expected │ │ │ │ ├── instance.py │ │ │ │ ├── line.d │ │ │ │ ├── line.d.expected │ │ │ │ └── line.py │ │ │ ├── eintrdata │ │ │ │ └── eintr_tester.py │ │ │ ├── empty.vbs │ │ │ ├── encoded_modules │ │ │ │ ├── __init__.py │ │ │ │ ├── module_iso_8859_1.py │ │ │ │ └── module_koi8_r.py │ │ │ ├── exception_hierarchy.txt │ │ │ ├── ffdh3072.pem │ │ │ ├── final_a.py │ │ │ ├── final_b.py │ │ │ ├── floating_points.txt │ │ │ ├── fork_wait.py │ │ │ ├── formatfloat_testcases.txt │ │ │ ├── future_test1.py │ │ │ ├── future_test2.py │ │ │ ├── gdb_sample.py │ │ │ ├── good_getattr.py │ │ │ ├── idnsans.pem │ │ │ ├── ieee754.txt │ │ │ ├── imghdrdata │ │ │ │ ├── python.bmp │ │ │ │ ├── python.exr │ │ │ │ ├── python.gif │ │ │ │ ├── python.jpg │ │ │ │ ├── python.pbm │ │ │ │ ├── python.pgm │ │ │ │ ├── python.png │ │ │ │ ├── python.ppm │ │ │ │ ├── python.ras │ │ │ │ ├── python.sgi │ │ │ │ ├── python.tiff │ │ │ │ ├── python.webp │ │ │ │ └── python.xbm │ │ │ ├── imp_dummy.py │ │ │ ├── inspect_fodder.py │ │ │ ├── inspect_fodder2.py │ │ │ ├── keycert.passwd.pem │ │ │ ├── keycert.pem │ │ │ ├── keycert2.pem │ │ │ ├── keycert3.pem │ │ │ ├── keycert4.pem │ │ │ ├── keycertecc.pem │ │ │ ├── leakers │ │ │ │ ├── README.txt │ │ │ │ ├── __init__.py │ │ │ │ ├── test_ctypes.py │ │ │ │ └── test_selftype.py │ │ │ ├── libregrtest │ │ │ │ ├── __init__.py │ │ │ │ ├── cmdline.py │ │ │ │ ├── main.py │ │ │ │ ├── refleak.py │ │ │ │ ├── runtest.py │ │ │ │ ├── runtest_mp.py │ │ │ │ ├── save_env.py │ │ │ │ ├── setup.py │ │ │ │ └── utils.py │ │ │ ├── list_tests.py │ │ │ ├── lock_tests.py │ │ │ ├── mailcap.txt │ │ │ ├── make_ssl_certs.py │ │ │ ├── mapping_tests.py │ │ │ ├── math_testcases.txt │ │ │ ├── memory_watchdog.py │ │ │ ├── mime.types │ │ │ ├── mock_socket.py │ │ │ ├── mod_generics_cache.py │ │ │ ├── mp_fork_bomb.py │ │ │ ├── mp_preload.py │ │ │ ├── multibytecodec_support.py │ │ │ ├── nokia.pem │ │ │ ├── nullbytecert.pem │ │ │ ├── nullcert.pem │ │ │ ├── outstanding_bugs.py │ │ │ ├── pickletester.py │ │ │ ├── profilee.py │ │ │ ├── pstats.pck │ │ │ ├── pycacert.pem │ │ │ ├── pycakey.pem │ │ │ ├── pyclbr_input.py │ │ │ ├── pydoc_mod.py │ │ │ ├── pydocfodder.py │ │ │ ├── pythoninfo.py │ │ │ ├── randv2_32.pck │ │ │ ├── randv2_64.pck │ │ │ ├── randv3.pck │ │ │ ├── re_tests.py │ │ │ ├── regrtest.py │ │ │ ├── relimport.py │ │ │ ├── reperf.py │ │ │ ├── revocation.crl │ │ │ ├── sample_doctest.py │ │ │ ├── sample_doctest_no_docstrings.py │ │ │ ├── sample_doctest_no_doctests.py │ │ │ ├── secp384r1.pem │ │ │ ├── selfsigned_pythontestdotnet.pem │ │ │ ├── seq_tests.py │ │ │ ├── sgml_input.html │ │ │ ├── signalinterproctester.py │ │ │ ├── sndhdrdata │ │ │ │ ├── README │ │ │ │ ├── sndhdr.8svx │ │ │ │ ├── sndhdr.aifc │ │ │ │ ├── sndhdr.aiff │ │ │ │ ├── sndhdr.au │ │ │ │ ├── sndhdr.hcom │ │ │ │ ├── sndhdr.sndt │ │ │ │ ├── sndhdr.voc │ │ │ │ └── sndhdr.wav │ │ │ ├── sortperf.py │ │ │ ├── ssl_cert.pem │ │ │ ├── ssl_key.passwd.pem │ │ │ ├── ssl_key.pem │ │ │ ├── ssl_servers.py │ │ │ ├── ssltests.py │ │ │ ├── string_tests.py │ │ │ ├── subprocessdata │ │ │ │ ├── fd_status.py │ │ │ │ ├── input_reader.py │ │ │ │ ├── qcat.py │ │ │ │ ├── qgrep.py │ │ │ │ └── sigchild_ignore.py │ │ │ ├── support │ │ │ │ ├── __init__.py │ │ │ │ ├── script_helper.py │ │ │ │ └── testresult.py │ │ │ ├── talos-2019-0758.pem │ │ │ ├── test___all__.py │ │ │ ├── test___future__.py │ │ │ ├── test__locale.py │ │ │ ├── test__opcode.py │ │ │ ├── test__osx_support.py │ │ │ ├── test_abc.py │ │ │ ├── test_abstract_numbers.py │ │ │ ├── test_aifc.py │ │ │ ├── test_argparse.py │ │ │ ├── test_array.py │ │ │ ├── test_asdl_parser.py │ │ │ ├── test_ast.py │ │ │ ├── test_asyncgen.py │ │ │ ├── test_asynchat.py │ │ │ ├── test_asyncio │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── echo.py │ │ │ │ ├── echo2.py │ │ │ │ ├── echo3.py │ │ │ │ ├── functional.py │ │ │ │ ├── test_base_events.py │ │ │ │ ├── test_buffered_proto.py │ │ │ │ ├── test_context.py │ │ │ │ ├── test_events.py │ │ │ │ ├── test_futures.py │ │ │ │ ├── test_locks.py │ │ │ │ ├── test_pep492.py │ │ │ │ ├── test_proactor_events.py │ │ │ │ ├── test_queues.py │ │ │ │ ├── test_runners.py │ │ │ │ ├── test_selector_events.py │ │ │ │ ├── test_server.py │ │ │ │ ├── test_sslproto.py │ │ │ │ ├── test_streams.py │ │ │ │ ├── test_subprocess.py │ │ │ │ ├── test_tasks.py │ │ │ │ ├── test_transports.py │ │ │ │ ├── test_unix_events.py │ │ │ │ ├── test_windows_events.py │ │ │ │ ├── test_windows_utils.py │ │ │ │ └── utils.py │ │ │ ├── test_asyncore.py │ │ │ ├── test_atexit.py │ │ │ ├── test_audioop.py │ │ │ ├── test_augassign.py │ │ │ ├── test_base64.py │ │ │ ├── test_baseexception.py │ │ │ ├── test_bdb.py │ │ │ ├── test_bigaddrspace.py │ │ │ ├── test_bigmem.py │ │ │ ├── test_binascii.py │ │ │ ├── test_binhex.py │ │ │ ├── test_binop.py │ │ │ ├── test_bisect.py │ │ │ ├── test_bool.py │ │ │ ├── test_buffer.py │ │ │ ├── test_bufio.py │ │ │ ├── test_builtin.py │ │ │ ├── test_bytes.py │ │ │ ├── test_bz2.py │ │ │ ├── test_c_locale_coercion.py │ │ │ ├── test_calendar.py │ │ │ ├── test_call.py │ │ │ ├── test_capi.py │ │ │ ├── test_cgi.py │ │ │ ├── test_cgitb.py │ │ │ ├── test_charmapcodec.py │ │ │ ├── test_class.py │ │ │ ├── test_clinic.py │ │ │ ├── test_cmath.py │ │ │ ├── test_cmd.py │ │ │ ├── test_cmd_line.py │ │ │ ├── test_cmd_line_script.py │ │ │ ├── test_code.py │ │ │ ├── test_code_module.py │ │ │ ├── test_codeccallbacks.py │ │ │ ├── test_codecencodings_cn.py │ │ │ ├── test_codecencodings_hk.py │ │ │ ├── test_codecencodings_iso2022.py │ │ │ ├── test_codecencodings_jp.py │ │ │ ├── test_codecencodings_kr.py │ │ │ ├── test_codecencodings_tw.py │ │ │ ├── test_codecmaps_cn.py │ │ │ ├── test_codecmaps_hk.py │ │ │ ├── test_codecmaps_jp.py │ │ │ ├── test_codecmaps_kr.py │ │ │ ├── test_codecmaps_tw.py │ │ │ ├── test_codecs.py │ │ │ ├── test_codeop.py │ │ │ ├── test_collections.py │ │ │ ├── test_colorsys.py │ │ │ ├── test_compare.py │ │ │ ├── test_compile.py │ │ │ ├── test_compileall.py │ │ │ ├── test_complex.py │ │ │ ├── test_concurrent_futures.py │ │ │ ├── test_configparser.py │ │ │ ├── test_contains.py │ │ │ ├── test_context.py │ │ │ ├── test_contextlib.py │ │ │ ├── test_contextlib_async.py │ │ │ ├── test_copy.py │ │ │ ├── test_copyreg.py │ │ │ ├── test_coroutines.py │ │ │ ├── test_cprofile.py │ │ │ ├── test_crashers.py │ │ │ ├── test_crypt.py │ │ │ ├── test_csv.py │ │ │ ├── test_ctypes.py │ │ │ ├── test_curses.py │ │ │ ├── test_dataclasses.py │ │ │ ├── test_datetime.py │ │ │ ├── test_dbm.py │ │ │ ├── test_dbm_dumb.py │ │ │ ├── test_dbm_gnu.py │ │ │ ├── test_dbm_ndbm.py │ │ │ ├── test_decimal.py │ │ │ ├── test_decorators.py │ │ │ ├── test_defaultdict.py │ │ │ ├── test_deque.py │ │ │ ├── test_descr.py │ │ │ ├── test_descrtut.py │ │ │ ├── test_devpoll.py │ │ │ ├── test_dict.py │ │ │ ├── test_dict_version.py │ │ │ ├── test_dictcomps.py │ │ │ ├── test_dictviews.py │ │ │ ├── test_difflib.py │ │ │ ├── test_difflib_expect.html │ │ │ ├── test_dis.py │ │ │ ├── test_distutils.py │ │ │ ├── test_doctest.py │ │ │ ├── test_doctest.txt │ │ │ ├── test_doctest2.py │ │ │ ├── test_doctest2.txt │ │ │ ├── test_doctest3.txt │ │ │ ├── test_doctest4.txt │ │ │ ├── test_docxmlrpc.py │ │ │ ├── test_dtrace.py │ │ │ ├── test_dummy_thread.py │ │ │ ├── test_dummy_threading.py │ │ │ ├── test_dynamic.py │ │ │ ├── test_dynamicclassattribute.py │ │ │ ├── test_eintr.py │ │ │ ├── test_email │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── data │ │ │ │ │ ├── PyBanner048.gif │ │ │ │ │ ├── audiotest.au │ │ │ │ │ ├── msg_01.txt │ │ │ │ │ ├── msg_02.txt │ │ │ │ │ ├── msg_03.txt │ │ │ │ │ ├── msg_04.txt │ │ │ │ │ ├── msg_05.txt │ │ │ │ │ ├── msg_06.txt │ │ │ │ │ ├── msg_07.txt │ │ │ │ │ ├── msg_08.txt │ │ │ │ │ ├── msg_09.txt │ │ │ │ │ ├── msg_10.txt │ │ │ │ │ ├── msg_11.txt │ │ │ │ │ ├── msg_12.txt │ │ │ │ │ ├── msg_12a.txt │ │ │ │ │ ├── msg_13.txt │ │ │ │ │ ├── msg_14.txt │ │ │ │ │ ├── msg_15.txt │ │ │ │ │ ├── msg_16.txt │ │ │ │ │ ├── msg_17.txt │ │ │ │ │ ├── msg_18.txt │ │ │ │ │ ├── msg_19.txt │ │ │ │ │ ├── msg_20.txt │ │ │ │ │ ├── msg_21.txt │ │ │ │ │ ├── msg_22.txt │ │ │ │ │ ├── msg_23.txt │ │ │ │ │ ├── msg_24.txt │ │ │ │ │ ├── msg_25.txt │ │ │ │ │ ├── msg_26.txt │ │ │ │ │ ├── msg_27.txt │ │ │ │ │ ├── msg_28.txt │ │ │ │ │ ├── msg_29.txt │ │ │ │ │ ├── msg_30.txt │ │ │ │ │ ├── msg_31.txt │ │ │ │ │ ├── msg_32.txt │ │ │ │ │ ├── msg_33.txt │ │ │ │ │ ├── msg_34.txt │ │ │ │ │ ├── msg_35.txt │ │ │ │ │ ├── msg_36.txt │ │ │ │ │ ├── msg_37.txt │ │ │ │ │ ├── msg_38.txt │ │ │ │ │ ├── msg_39.txt │ │ │ │ │ ├── msg_40.txt │ │ │ │ │ ├── msg_41.txt │ │ │ │ │ ├── msg_42.txt │ │ │ │ │ ├── msg_43.txt │ │ │ │ │ ├── msg_44.txt │ │ │ │ │ ├── msg_45.txt │ │ │ │ │ └── msg_46.txt │ │ │ │ ├── test__encoded_words.py │ │ │ │ ├── test__header_value_parser.py │ │ │ │ ├── test_asian_codecs.py │ │ │ │ ├── test_contentmanager.py │ │ │ │ ├── test_defect_handling.py │ │ │ │ ├── test_email.py │ │ │ │ ├── test_generator.py │ │ │ │ ├── test_headerregistry.py │ │ │ │ ├── test_inversion.py │ │ │ │ ├── test_message.py │ │ │ │ ├── test_parser.py │ │ │ │ ├── test_pickleable.py │ │ │ │ ├── test_policy.py │ │ │ │ ├── test_utils.py │ │ │ │ └── torture_test.py │ │ │ ├── test_embed.py │ │ │ ├── test_ensurepip.py │ │ │ ├── test_enum.py │ │ │ ├── test_enumerate.py │ │ │ ├── test_eof.py │ │ │ ├── test_epoll.py │ │ │ ├── test_errno.py │ │ │ ├── test_exception_hierarchy.py │ │ │ ├── test_exception_variations.py │ │ │ ├── test_exceptions.py │ │ │ ├── test_extcall.py │ │ │ ├── test_faulthandler.py │ │ │ ├── test_fcntl.py │ │ │ ├── test_file.py │ │ │ ├── test_file_eintr.py │ │ │ ├── test_filecmp.py │ │ │ ├── test_fileinput.py │ │ │ ├── test_fileio.py │ │ │ ├── test_finalization.py │ │ │ ├── test_float.py │ │ │ ├── test_flufl.py │ │ │ ├── test_fnmatch.py │ │ │ ├── test_fork1.py │ │ │ ├── test_format.py │ │ │ ├── test_fractions.py │ │ │ ├── test_frame.py │ │ │ ├── test_frozen.py │ │ │ ├── test_fstring.py │ │ │ ├── test_ftplib.py │ │ │ ├── test_funcattrs.py │ │ │ ├── test_functools.py │ │ │ ├── test_future.py │ │ │ ├── test_future3.py │ │ │ ├── test_future4.py │ │ │ ├── test_future5.py │ │ │ ├── test_gc.py │ │ │ ├── test_gdb.py │ │ │ ├── test_generator_stop.py │ │ │ ├── test_generators.py │ │ │ ├── test_genericclass.py │ │ │ ├── test_genericpath.py │ │ │ ├── test_genexps.py │ │ │ ├── test_getargs2.py │ │ │ ├── test_getopt.py │ │ │ ├── test_getpass.py │ │ │ ├── test_gettext.py │ │ │ ├── test_glob.py │ │ │ ├── test_global.py │ │ │ ├── test_grammar.py │ │ │ ├── test_grp.py │ │ │ ├── test_gzip.py │ │ │ ├── test_hash.py │ │ │ ├── test_hashlib.py │ │ │ ├── test_heapq.py │ │ │ ├── test_hmac.py │ │ │ ├── test_html.py │ │ │ ├── test_htmlparser.py │ │ │ ├── test_http_cookiejar.py │ │ │ ├── test_http_cookies.py │ │ │ ├── test_httplib.py │ │ │ ├── test_httpservers.py │ │ │ ├── test_idle.py │ │ │ ├── test_imaplib.py │ │ │ ├── test_imghdr.py │ │ │ ├── test_imp.py │ │ │ ├── test_import │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── data │ │ │ │ │ ├── circular_imports │ │ │ │ │ ├── basic.py │ │ │ │ │ ├── basic2.py │ │ │ │ │ ├── binding.py │ │ │ │ │ ├── binding2.py │ │ │ │ │ ├── indirect.py │ │ │ │ │ ├── rebinding.py │ │ │ │ │ ├── rebinding2.py │ │ │ │ │ ├── subpackage.py │ │ │ │ │ ├── subpkg │ │ │ │ │ │ ├── subpackage2.py │ │ │ │ │ │ └── util.py │ │ │ │ │ └── util.py │ │ │ │ │ ├── package │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── submodule.py │ │ │ │ │ └── package2 │ │ │ │ │ ├── submodule1.py │ │ │ │ │ └── submodule2.py │ │ │ ├── test_importlib │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── abc.py │ │ │ │ ├── builtin │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── test_finder.py │ │ │ │ │ └── test_loader.py │ │ │ │ ├── data01 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── binary.file │ │ │ │ │ ├── subdirectory │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── binary.file │ │ │ │ │ ├── utf-16.file │ │ │ │ │ └── utf-8.file │ │ │ │ ├── data02 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── one │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── resource1.txt │ │ │ │ │ └── two │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── resource2.txt │ │ │ │ ├── data03 │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── namespace │ │ │ │ │ │ ├── portion1 │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ ├── portion2 │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ └── resource1.txt │ │ │ │ ├── extension │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── test_case_sensitivity.py │ │ │ │ │ ├── test_finder.py │ │ │ │ │ ├── test_loader.py │ │ │ │ │ └── test_path_hook.py │ │ │ │ ├── frozen │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── test_finder.py │ │ │ │ │ └── test_loader.py │ │ │ │ ├── import_ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── test___loader__.py │ │ │ │ │ ├── test___package__.py │ │ │ │ │ ├── test_api.py │ │ │ │ │ ├── test_caching.py │ │ │ │ │ ├── test_fromlist.py │ │ │ │ │ ├── test_meta_path.py │ │ │ │ │ ├── test_packages.py │ │ │ │ │ ├── test_path.py │ │ │ │ │ └── test_relative_imports.py │ │ │ │ ├── namespace_pkgs │ │ │ │ │ ├── both_portions │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ ├── one.py │ │ │ │ │ │ │ └── two.py │ │ │ │ │ ├── missing_directory.zip │ │ │ │ │ ├── module_and_namespace_package │ │ │ │ │ │ ├── a_test.py │ │ │ │ │ │ └── a_test │ │ │ │ │ │ │ └── empty │ │ │ │ │ ├── nested_portion1.zip │ │ │ │ │ ├── not_a_namespace_pkg │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── one.py │ │ │ │ │ ├── portion1 │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ └── one.py │ │ │ │ │ ├── portion2 │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ └── two.py │ │ │ │ │ ├── project1 │ │ │ │ │ │ └── parent │ │ │ │ │ │ │ └── child │ │ │ │ │ │ │ └── one.py │ │ │ │ │ ├── project2 │ │ │ │ │ │ └── parent │ │ │ │ │ │ │ └── child │ │ │ │ │ │ │ └── two.py │ │ │ │ │ ├── project3 │ │ │ │ │ │ └── parent │ │ │ │ │ │ │ └── child │ │ │ │ │ │ │ └── three.py │ │ │ │ │ └── top_level_portion1.zip │ │ │ │ ├── source │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── test_case_sensitivity.py │ │ │ │ │ ├── test_file_loader.py │ │ │ │ │ ├── test_finder.py │ │ │ │ │ ├── test_path_hook.py │ │ │ │ │ └── test_source_encoding.py │ │ │ │ ├── test_abc.py │ │ │ │ ├── test_api.py │ │ │ │ ├── test_lazy.py │ │ │ │ ├── test_locks.py │ │ │ │ ├── test_namespace_pkgs.py │ │ │ │ ├── test_open.py │ │ │ │ ├── test_path.py │ │ │ │ ├── test_read.py │ │ │ │ ├── test_resource.py │ │ │ │ ├── test_spec.py │ │ │ │ ├── test_util.py │ │ │ │ ├── test_windows.py │ │ │ │ ├── util.py │ │ │ │ ├── zipdata01 │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── ziptestdata.zip │ │ │ │ └── zipdata02 │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── ziptestdata.zip │ │ │ ├── test_index.py │ │ │ ├── test_inspect.py │ │ │ ├── test_int.py │ │ │ ├── test_int_literal.py │ │ │ ├── test_io.py │ │ │ ├── test_ioctl.py │ │ │ ├── test_ipaddress.py │ │ │ ├── test_isinstance.py │ │ │ ├── test_iter.py │ │ │ ├── test_iterlen.py │ │ │ ├── test_itertools.py │ │ │ ├── test_json │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── test_decode.py │ │ │ │ ├── test_default.py │ │ │ │ ├── test_dump.py │ │ │ │ ├── test_encode_basestring_ascii.py │ │ │ │ ├── test_enum.py │ │ │ │ ├── test_fail.py │ │ │ │ ├── test_float.py │ │ │ │ ├── test_indent.py │ │ │ │ ├── test_pass1.py │ │ │ │ ├── test_pass2.py │ │ │ │ ├── test_pass3.py │ │ │ │ ├── test_recursion.py │ │ │ │ ├── test_scanstring.py │ │ │ │ ├── test_separators.py │ │ │ │ ├── test_speedups.py │ │ │ │ ├── test_tool.py │ │ │ │ └── test_unicode.py │ │ │ ├── test_keyword.py │ │ │ ├── test_keywordonlyarg.py │ │ │ ├── test_kqueue.py │ │ │ ├── test_largefile.py │ │ │ ├── test_lib2to3.py │ │ │ ├── test_linecache.py │ │ │ ├── test_list.py │ │ │ ├── test_listcomps.py │ │ │ ├── test_locale.py │ │ │ ├── test_logging.py │ │ │ ├── test_long.py │ │ │ ├── test_longexp.py │ │ │ ├── test_lzma.py │ │ │ ├── test_macpath.py │ │ │ ├── test_mailbox.py │ │ │ ├── test_mailcap.py │ │ │ ├── test_marshal.py │ │ │ ├── test_math.py │ │ │ ├── test_memoryio.py │ │ │ ├── test_memoryview.py │ │ │ ├── test_metaclass.py │ │ │ ├── test_mimetypes.py │ │ │ ├── test_minidom.py │ │ │ ├── test_mmap.py │ │ │ ├── test_module.py │ │ │ ├── test_modulefinder.py │ │ │ ├── test_msilib.py │ │ │ ├── test_multibytecodec.py │ │ │ ├── test_multiprocessing_fork.py │ │ │ ├── test_multiprocessing_forkserver.py │ │ │ ├── test_multiprocessing_main_handling.py │ │ │ ├── test_multiprocessing_spawn.py │ │ │ ├── test_netrc.py │ │ │ ├── test_nis.py │ │ │ ├── test_nntplib.py │ │ │ ├── test_normalization.py │ │ │ ├── test_ntpath.py │ │ │ ├── test_numeric_tower.py │ │ │ ├── test_opcodes.py │ │ │ ├── test_openpty.py │ │ │ ├── test_operator.py │ │ │ ├── test_optparse.py │ │ │ ├── test_ordered_dict.py │ │ │ ├── test_os.py │ │ │ ├── test_ossaudiodev.py │ │ │ ├── test_osx_env.py │ │ │ ├── test_parser.py │ │ │ ├── test_pathlib.py │ │ │ ├── test_pdb.py │ │ │ ├── test_peepholer.py │ │ │ ├── test_pickle.py │ │ │ ├── test_pickletools.py │ │ │ ├── test_pipes.py │ │ │ ├── test_pkg.py │ │ │ ├── test_pkgimport.py │ │ │ ├── test_pkgutil.py │ │ │ ├── test_platform.py │ │ │ ├── test_plistlib.py │ │ │ ├── test_poll.py │ │ │ ├── test_popen.py │ │ │ ├── test_poplib.py │ │ │ ├── test_posix.py │ │ │ ├── test_posixpath.py │ │ │ ├── test_pow.py │ │ │ ├── test_pprint.py │ │ │ ├── test_print.py │ │ │ ├── test_profile.py │ │ │ ├── test_property.py │ │ │ ├── test_pstats.py │ │ │ ├── test_pty.py │ │ │ ├── test_pulldom.py │ │ │ ├── test_pwd.py │ │ │ ├── test_py_compile.py │ │ │ ├── test_pyclbr.py │ │ │ ├── test_pydoc.py │ │ │ ├── test_pyexpat.py │ │ │ ├── test_queue.py │ │ │ ├── test_quopri.py │ │ │ ├── test_raise.py │ │ │ ├── test_random.py │ │ │ ├── test_range.py │ │ │ ├── test_re.py │ │ │ ├── test_readline.py │ │ │ ├── test_regrtest.py │ │ │ ├── test_repl.py │ │ │ ├── test_reprlib.py │ │ │ ├── test_resource.py │ │ │ ├── test_richcmp.py │ │ │ ├── test_rlcompleter.py │ │ │ ├── test_robotparser.py │ │ │ ├── test_runpy.py │ │ │ ├── test_sax.py │ │ │ ├── test_sched.py │ │ │ ├── test_scope.py │ │ │ ├── test_script_helper.py │ │ │ ├── test_secrets.py │ │ │ ├── test_select.py │ │ │ ├── test_selectors.py │ │ │ ├── test_set.py │ │ │ ├── test_setcomps.py │ │ │ ├── test_shelve.py │ │ │ ├── test_shlex.py │ │ │ ├── test_shutil.py │ │ │ ├── test_signal.py │ │ │ ├── test_site.py │ │ │ ├── test_slice.py │ │ │ ├── test_smtpd.py │ │ │ ├── test_smtplib.py │ │ │ ├── test_smtpnet.py │ │ │ ├── test_sndhdr.py │ │ │ ├── test_socket.py │ │ │ ├── test_socketserver.py │ │ │ ├── test_sort.py │ │ │ ├── test_source_encoding.py │ │ │ ├── test_spwd.py │ │ │ ├── test_sqlite.py │ │ │ ├── test_ssl.py │ │ │ ├── test_startfile.py │ │ │ ├── test_stat.py │ │ │ ├── test_statistics.py │ │ │ ├── test_strftime.py │ │ │ ├── test_string.py │ │ │ ├── test_string_literals.py │ │ │ ├── test_stringprep.py │ │ │ ├── test_strptime.py │ │ │ ├── test_strtod.py │ │ │ ├── test_struct.py │ │ │ ├── test_structmembers.py │ │ │ ├── test_structseq.py │ │ │ ├── test_subclassinit.py │ │ │ ├── test_subprocess.py │ │ │ ├── test_sunau.py │ │ │ ├── test_sundry.py │ │ │ ├── test_super.py │ │ │ ├── test_support.py │ │ │ ├── test_symbol.py │ │ │ ├── test_symtable.py │ │ │ ├── test_syntax.py │ │ │ ├── test_sys.py │ │ │ ├── test_sys_setprofile.py │ │ │ ├── test_sys_settrace.py │ │ │ ├── test_sysconfig.py │ │ │ ├── test_syslog.py │ │ │ ├── test_tarfile.py │ │ │ ├── test_tcl.py │ │ │ ├── test_telnetlib.py │ │ │ ├── test_tempfile.py │ │ │ ├── test_textwrap.py │ │ │ ├── test_thread.py │ │ │ ├── test_threaded_import.py │ │ │ ├── test_threadedtempfile.py │ │ │ ├── test_threading.py │ │ │ ├── test_threading_local.py │ │ │ ├── test_threadsignals.py │ │ │ ├── test_time.py │ │ │ ├── test_timeit.py │ │ │ ├── test_timeout.py │ │ │ ├── test_tix.py │ │ │ ├── test_tk.py │ │ │ ├── test_tokenize.py │ │ │ ├── test_tools │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── test_fixcid.py │ │ │ │ ├── test_gprof2html.py │ │ │ │ ├── test_i18n.py │ │ │ │ ├── test_md5sum.py │ │ │ │ ├── test_pdeps.py │ │ │ │ ├── test_pindent.py │ │ │ │ ├── test_reindent.py │ │ │ │ ├── test_sundry.py │ │ │ │ └── test_unparse.py │ │ │ ├── test_trace.py │ │ │ ├── test_traceback.py │ │ │ ├── test_tracemalloc.py │ │ │ ├── test_ttk_guionly.py │ │ │ ├── test_ttk_textonly.py │ │ │ ├── test_tuple.py │ │ │ ├── test_turtle.py │ │ │ ├── test_typechecks.py │ │ │ ├── test_types.py │ │ │ ├── test_typing.py │ │ │ ├── test_ucn.py │ │ │ ├── test_unary.py │ │ │ ├── test_unicode.py │ │ │ ├── test_unicode_file.py │ │ │ ├── test_unicode_file_functions.py │ │ │ ├── test_unicode_identifiers.py │ │ │ ├── test_unicodedata.py │ │ │ ├── test_unittest.py │ │ │ ├── test_univnewlines.py │ │ │ ├── test_unpack.py │ │ │ ├── test_unpack_ex.py │ │ │ ├── test_urllib.py │ │ │ ├── test_urllib2.py │ │ │ ├── test_urllib2_localnet.py │ │ │ ├── test_urllib2net.py │ │ │ ├── test_urllib_response.py │ │ │ ├── test_urllibnet.py │ │ │ ├── test_urlparse.py │ │ │ ├── test_userdict.py │ │ │ ├── test_userlist.py │ │ │ ├── test_userstring.py │ │ │ ├── test_utf8_mode.py │ │ │ ├── test_utf8source.py │ │ │ ├── test_uu.py │ │ │ ├── test_uuid.py │ │ │ ├── test_venv.py │ │ │ ├── test_wait3.py │ │ │ ├── test_wait4.py │ │ │ ├── test_warnings │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── data │ │ │ │ │ ├── import_warning.py │ │ │ │ │ └── stacklevel.py │ │ │ ├── test_wave.py │ │ │ ├── test_weakref.py │ │ │ ├── test_weakset.py │ │ │ ├── test_webbrowser.py │ │ │ ├── test_winconsoleio.py │ │ │ ├── test_winreg.py │ │ │ ├── test_winsound.py │ │ │ ├── test_with.py │ │ │ ├── test_wsgiref.py │ │ │ ├── test_xdrlib.py │ │ │ ├── test_xml_dom_minicompat.py │ │ │ ├── test_xml_etree.py │ │ │ ├── test_xml_etree_c.py │ │ │ ├── test_xmlrpc.py │ │ │ ├── test_xmlrpc_net.py │ │ │ ├── test_xxtestfuzz.py │ │ │ ├── test_yield_from.py │ │ │ ├── test_zipapp.py │ │ │ ├── test_zipfile.py │ │ │ ├── test_zipfile64.py │ │ │ ├── test_zipimport.py │ │ │ ├── test_zipimport_support.py │ │ │ ├── test_zlib.py │ │ │ ├── testcodec.py │ │ │ ├── testtar.tar │ │ │ ├── tf_inherit_check.py │ │ │ ├── threaded_import_hangers.py │ │ │ ├── time_hashlib.py │ │ │ ├── tokenize_tests-latin1-coding-cookie-and-utf8-bom-sig.txt │ │ │ ├── tokenize_tests-no-coding-cookie-and-utf8-bom-sig-only.txt │ │ │ ├── tokenize_tests-utf8-coding-cookie-and-no-utf8-bom-sig.txt │ │ │ ├── tokenize_tests-utf8-coding-cookie-and-utf8-bom-sig.txt │ │ │ ├── tokenize_tests.txt │ │ │ ├── tracedmodules │ │ │ │ ├── __init__.py │ │ │ │ └── testmod.py │ │ │ ├── win_console_handler.py │ │ │ ├── xmltestdata │ │ │ │ ├── expat224_utf8_bug.xml │ │ │ │ ├── simple-ns.xml │ │ │ │ ├── simple.xml │ │ │ │ ├── test.xml │ │ │ │ └── test.xml.out │ │ │ ├── xmltests.py │ │ │ ├── zip_cp437_header.zip │ │ │ └── zipdir.zip │ │ ├── textwrap.py │ │ ├── this.py │ │ ├── threading.py │ │ ├── timeit.py │ │ ├── tkinter │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── colorchooser.py │ │ │ ├── commondialog.py │ │ │ ├── constants.py │ │ │ ├── dialog.py │ │ │ ├── dnd.py │ │ │ ├── filedialog.py │ │ │ ├── font.py │ │ │ ├── messagebox.py │ │ │ ├── scrolledtext.py │ │ │ ├── simpledialog.py │ │ │ ├── test │ │ │ │ ├── README │ │ │ │ ├── __init__.py │ │ │ │ ├── runtktests.py │ │ │ │ ├── support.py │ │ │ │ ├── test_tkinter │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_font.py │ │ │ │ │ ├── test_geometry_managers.py │ │ │ │ │ ├── test_images.py │ │ │ │ │ ├── test_loadtk.py │ │ │ │ │ ├── test_misc.py │ │ │ │ │ ├── test_text.py │ │ │ │ │ ├── test_variables.py │ │ │ │ │ └── test_widgets.py │ │ │ │ ├── test_ttk │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_extensions.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_style.py │ │ │ │ │ └── test_widgets.py │ │ │ │ └── widget_tests.py │ │ │ ├── tix.py │ │ │ └── ttk.py │ │ ├── token.py │ │ ├── tokenize.py │ │ ├── trace.py │ │ ├── traceback.py │ │ ├── tracemalloc.py │ │ ├── tty.py │ │ ├── turtle.py │ │ ├── turtledemo │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── bytedesign.py │ │ │ ├── chaos.py │ │ │ ├── clock.py │ │ │ ├── colormixer.py │ │ │ ├── forest.py │ │ │ ├── fractalcurves.py │ │ │ ├── lindenmayer.py │ │ │ ├── minimal_hanoi.py │ │ │ ├── nim.py │ │ │ ├── paint.py │ │ │ ├── peace.py │ │ │ ├── penrose.py │ │ │ ├── planet_and_moon.py │ │ │ ├── rosette.py │ │ │ ├── round_dance.py │ │ │ ├── sorting_animate.py │ │ │ ├── tree.py │ │ │ ├── turtle.cfg │ │ │ ├── two_canvases.py │ │ │ └── yinyang.py │ │ ├── types.py │ │ ├── typing.py │ │ ├── unittest │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── case.py │ │ │ ├── loader.py │ │ │ ├── main.py │ │ │ ├── mock.py │ │ │ ├── result.py │ │ │ ├── runner.py │ │ │ ├── signals.py │ │ │ ├── suite.py │ │ │ ├── test │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── _test_warnings.py │ │ │ │ ├── dummy.py │ │ │ │ ├── support.py │ │ │ │ ├── test_assertions.py │ │ │ │ ├── test_break.py │ │ │ │ ├── test_case.py │ │ │ │ ├── test_discovery.py │ │ │ │ ├── test_functiontestcase.py │ │ │ │ ├── test_loader.py │ │ │ │ ├── test_program.py │ │ │ │ ├── test_result.py │ │ │ │ ├── test_runner.py │ │ │ │ ├── test_setups.py │ │ │ │ ├── test_skipping.py │ │ │ │ ├── test_suite.py │ │ │ │ └── testmock │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── support.py │ │ │ │ │ ├── testcallable.py │ │ │ │ │ ├── testhelpers.py │ │ │ │ │ ├── testmagicmethods.py │ │ │ │ │ ├── testmock.py │ │ │ │ │ ├── testpatch.py │ │ │ │ │ ├── testsealable.py │ │ │ │ │ ├── testsentinel.py │ │ │ │ │ └── testwith.py │ │ │ └── util.py │ │ ├── urllib │ │ │ ├── __init__.py │ │ │ ├── error.py │ │ │ ├── parse.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── robotparser.py │ │ ├── uu.py │ │ ├── uuid.py │ │ ├── warnings.py │ │ ├── wave.py │ │ ├── weakref.py │ │ ├── webbrowser.py │ │ ├── wsgiref │ │ │ ├── __init__.py │ │ │ ├── handlers.py │ │ │ ├── headers.py │ │ │ ├── simple_server.py │ │ │ ├── util.py │ │ │ └── validate.py │ │ ├── xdrlib.py │ │ ├── xml │ │ │ ├── __init__.py │ │ │ ├── dom │ │ │ │ ├── NodeFilter.py │ │ │ │ ├── __init__.py │ │ │ │ ├── domreg.py │ │ │ │ ├── expatbuilder.py │ │ │ │ ├── minicompat.py │ │ │ │ ├── minidom.py │ │ │ │ ├── pulldom.py │ │ │ │ └── xmlbuilder.py │ │ │ ├── etree │ │ │ │ ├── ElementInclude.py │ │ │ │ ├── ElementPath.py │ │ │ │ ├── ElementTree.py │ │ │ │ ├── __init__.py │ │ │ │ └── cElementTree.py │ │ │ ├── parsers │ │ │ │ ├── __init__.py │ │ │ │ └── expat.py │ │ │ └── sax │ │ │ │ ├── __init__.py │ │ │ │ ├── _exceptions.py │ │ │ │ ├── expatreader.py │ │ │ │ ├── handler.py │ │ │ │ ├── saxutils.py │ │ │ │ └── xmlreader.py │ │ ├── xmlrpc │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ └── server.py │ │ ├── zipapp.py │ │ └── zipfile.py │ ├── NEWS.txt │ ├── Scripts │ │ ├── alembic.exe │ │ ├── chardetect.exe │ │ ├── easy_install-3.7.exe │ │ ├── easy_install.exe │ │ ├── flask.exe │ │ ├── frida-discover.exe │ │ ├── frida-kill.exe │ │ ├── frida-ls-devices.exe │ │ ├── frida-ps.exe │ │ ├── frida-trace.exe │ │ ├── frida.exe │ │ ├── mako-render.exe │ │ ├── miniterm.py │ │ ├── pip.exe │ │ ├── pip3.7.exe │ │ ├── pip3.exe │ │ ├── pygmentize.exe │ │ └── wheel.exe │ ├── Tools │ │ ├── demo │ │ │ ├── beer.py │ │ │ ├── eiffel.py │ │ │ ├── hanoi.py │ │ │ ├── life.py │ │ │ ├── markov.py │ │ │ ├── mcast.py │ │ │ ├── queens.py │ │ │ ├── redemo.py │ │ │ ├── rpython.py │ │ │ ├── rpythond.py │ │ │ ├── sortvisu.py │ │ │ ├── ss1.py │ │ │ └── vector.py │ │ ├── i18n │ │ │ ├── makelocalealias.py │ │ │ ├── msgfmt.py │ │ │ └── pygettext.py │ │ ├── parser │ │ │ └── unparse.py │ │ ├── pynche │ │ │ ├── ChipViewer.py │ │ │ ├── ColorDB.py │ │ │ ├── DetailsViewer.py │ │ │ ├── ListViewer.py │ │ │ ├── Main.py │ │ │ ├── PyncheWidget.py │ │ │ ├── StripViewer.py │ │ │ ├── Switchboard.py │ │ │ ├── TextViewer.py │ │ │ ├── TypeinViewer.py │ │ │ ├── X │ │ │ │ ├── rgb.txt │ │ │ │ └── xlicense.txt │ │ │ ├── __init__.py │ │ │ ├── html40colors.txt │ │ │ ├── namedcolors.txt │ │ │ ├── pyColorChooser.py │ │ │ ├── pynche.pyw │ │ │ ├── webcolors.txt │ │ │ └── websafe.txt │ │ └── scripts │ │ │ ├── 2to3.py │ │ │ ├── abitype.py │ │ │ ├── analyze_dxp.py │ │ │ ├── byext.py │ │ │ ├── byteyears.py │ │ │ ├── checkpip.py │ │ │ ├── checkpyc.py │ │ │ ├── cleanfuture.py │ │ │ ├── combinerefs.py │ │ │ ├── copytime.py │ │ │ ├── crlf.py │ │ │ ├── db2pickle.py │ │ │ ├── diff.py │ │ │ ├── dutree.py │ │ │ ├── eptags.py │ │ │ ├── find-uname.py │ │ │ ├── find_recursionlimit.py │ │ │ ├── finddiv.py │ │ │ ├── findlinksto.py │ │ │ ├── findnocoding.py │ │ │ ├── fixcid.py │ │ │ ├── fixdiv.py │ │ │ ├── fixheader.py │ │ │ ├── fixnotice.py │ │ │ ├── fixps.py │ │ │ ├── generate_opcode_h.py │ │ │ ├── get-remote-certificate.py │ │ │ ├── google.py │ │ │ ├── gprof2html.py │ │ │ ├── h2py.py │ │ │ ├── highlight.py │ │ │ ├── ifdef.py │ │ │ ├── import_diagnostics.py │ │ │ ├── lfcr.py │ │ │ ├── linktree.py │ │ │ ├── lll.py │ │ │ ├── mailerdaemon.py │ │ │ ├── make_ctype.py │ │ │ ├── md5sum.py │ │ │ ├── mkreal.py │ │ │ ├── ndiff.py │ │ │ ├── nm2def.py │ │ │ ├── objgraph.py │ │ │ ├── parse_html5_entities.py │ │ │ ├── parseentities.py │ │ │ ├── patchcheck.py │ │ │ ├── pathfix.py │ │ │ ├── pdeps.py │ │ │ ├── pickle2db.py │ │ │ ├── pindent.py │ │ │ ├── ptags.py │ │ │ ├── pydoc3.py │ │ │ ├── pysource.py │ │ │ ├── pyvenv.py │ │ │ ├── reindent-rst.py │ │ │ ├── reindent.py │ │ │ ├── rgrep.py │ │ │ ├── run_tests.py │ │ │ ├── serve.py │ │ │ ├── smelly.py │ │ │ ├── suff.py │ │ │ ├── texi2html.py │ │ │ ├── untabify.py │ │ │ ├── update_file.py │ │ │ ├── which.py │ │ │ └── win_add2path.py │ ├── include │ │ ├── Python-ast.h │ │ ├── Python.h │ │ ├── abstract.h │ │ ├── accu.h │ │ ├── asdl.h │ │ ├── ast.h │ │ ├── bitset.h │ │ ├── bltinmodule.h │ │ ├── boolobject.h │ │ ├── bytearrayobject.h │ │ ├── bytes_methods.h │ │ ├── bytesobject.h │ │ ├── cellobject.h │ │ ├── ceval.h │ │ ├── classobject.h │ │ ├── code.h │ │ ├── codecs.h │ │ ├── compile.h │ │ ├── complexobject.h │ │ ├── context.h │ │ ├── datetime.h │ │ ├── descrobject.h │ │ ├── dictobject.h │ │ ├── dtoa.h │ │ ├── dynamic_annotations.h │ │ ├── enumobject.h │ │ ├── errcode.h │ │ ├── eval.h │ │ ├── fileobject.h │ │ ├── fileutils.h │ │ ├── floatobject.h │ │ ├── frameobject.h │ │ ├── funcobject.h │ │ ├── genobject.h │ │ ├── graminit.h │ │ ├── grammar.h │ │ ├── import.h │ │ ├── internal │ │ │ ├── ceval.h │ │ │ ├── condvar.h │ │ │ ├── context.h │ │ │ ├── gil.h │ │ │ ├── hamt.h │ │ │ ├── hash.h │ │ │ ├── import.h │ │ │ ├── mem.h │ │ │ ├── pygetopt.h │ │ │ ├── pystate.h │ │ │ └── warnings.h │ │ ├── intrcheck.h │ │ ├── iterobject.h │ │ ├── listobject.h │ │ ├── longintrepr.h │ │ ├── longobject.h │ │ ├── marshal.h │ │ ├── memoryobject.h │ │ ├── metagrammar.h │ │ ├── methodobject.h │ │ ├── modsupport.h │ │ ├── moduleobject.h │ │ ├── namespaceobject.h │ │ ├── node.h │ │ ├── object.h │ │ ├── objimpl.h │ │ ├── odictobject.h │ │ ├── opcode.h │ │ ├── osdefs.h │ │ ├── osmodule.h │ │ ├── parsetok.h │ │ ├── patchlevel.h │ │ ├── pgen.h │ │ ├── pgenheaders.h │ │ ├── py_curses.h │ │ ├── pyarena.h │ │ ├── pyatomic.h │ │ ├── pycapsule.h │ │ ├── pyconfig.h │ │ ├── pyctype.h │ │ ├── pydebug.h │ │ ├── pydtrace.h │ │ ├── pyerrors.h │ │ ├── pyexpat.h │ │ ├── pyfpe.h │ │ ├── pyhash.h │ │ ├── pylifecycle.h │ │ ├── pymacconfig.h │ │ ├── pymacro.h │ │ ├── pymath.h │ │ ├── pymem.h │ │ ├── pyport.h │ │ ├── pystate.h │ │ ├── pystrcmp.h │ │ ├── pystrhex.h │ │ ├── pystrtod.h │ │ ├── pythonrun.h │ │ ├── pythread.h │ │ ├── pytime.h │ │ ├── rangeobject.h │ │ ├── setobject.h │ │ ├── sliceobject.h │ │ ├── structmember.h │ │ ├── structseq.h │ │ ├── symtable.h │ │ ├── sysmodule.h │ │ ├── token.h │ │ ├── traceback.h │ │ ├── tupleobject.h │ │ ├── typeslots.h │ │ ├── ucnhash.h │ │ ├── unicodeobject.h │ │ ├── warnings.h │ │ └── weakrefobject.h │ ├── libcrypto-1_1-x64.dll │ ├── libs │ │ ├── _tkinter.lib │ │ ├── libpython37.a │ │ ├── python3.lib │ │ └── python37.lib │ ├── libssl-1_1-x64.dll │ ├── python.exe │ ├── python3.dll │ ├── python37.dll │ ├── pythonw.exe │ ├── sqlite3.dll │ ├── tcl │ │ ├── dde1.4 │ │ │ ├── pkgIndex.tcl │ │ │ └── tcldde14.dll │ │ ├── nmake │ │ │ ├── nmakehlp.c │ │ │ ├── rules.vc │ │ │ ├── targets.vc │ │ │ └── tcl.nmake │ │ ├── reg1.3 │ │ │ ├── pkgIndex.tcl │ │ │ └── tclreg13.dll │ │ ├── tcl8.6 │ │ │ ├── auto.tcl │ │ │ ├── clock.tcl │ │ │ ├── encoding │ │ │ │ ├── ascii.enc │ │ │ │ ├── big5.enc │ │ │ │ ├── cp1250.enc │ │ │ │ ├── cp1251.enc │ │ │ │ ├── cp1252.enc │ │ │ │ ├── cp1253.enc │ │ │ │ ├── cp1254.enc │ │ │ │ ├── cp1255.enc │ │ │ │ ├── cp1256.enc │ │ │ │ ├── cp1257.enc │ │ │ │ ├── cp1258.enc │ │ │ │ ├── cp437.enc │ │ │ │ ├── cp737.enc │ │ │ │ ├── cp775.enc │ │ │ │ ├── cp850.enc │ │ │ │ ├── cp852.enc │ │ │ │ ├── cp855.enc │ │ │ │ ├── cp857.enc │ │ │ │ ├── cp860.enc │ │ │ │ ├── cp861.enc │ │ │ │ ├── cp862.enc │ │ │ │ ├── cp863.enc │ │ │ │ ├── cp864.enc │ │ │ │ ├── cp865.enc │ │ │ │ ├── cp866.enc │ │ │ │ ├── cp869.enc │ │ │ │ ├── cp874.enc │ │ │ │ ├── cp932.enc │ │ │ │ ├── cp936.enc │ │ │ │ ├── cp949.enc │ │ │ │ ├── cp950.enc │ │ │ │ ├── dingbats.enc │ │ │ │ ├── ebcdic.enc │ │ │ │ ├── euc-cn.enc │ │ │ │ ├── euc-jp.enc │ │ │ │ ├── euc-kr.enc │ │ │ │ ├── gb12345.enc │ │ │ │ ├── gb1988.enc │ │ │ │ ├── gb2312-raw.enc │ │ │ │ ├── gb2312.enc │ │ │ │ ├── iso2022-jp.enc │ │ │ │ ├── iso2022-kr.enc │ │ │ │ ├── iso2022.enc │ │ │ │ ├── iso8859-1.enc │ │ │ │ ├── iso8859-10.enc │ │ │ │ ├── iso8859-13.enc │ │ │ │ ├── iso8859-14.enc │ │ │ │ ├── iso8859-15.enc │ │ │ │ ├── iso8859-16.enc │ │ │ │ ├── iso8859-2.enc │ │ │ │ ├── iso8859-3.enc │ │ │ │ ├── iso8859-4.enc │ │ │ │ ├── iso8859-5.enc │ │ │ │ ├── iso8859-6.enc │ │ │ │ ├── iso8859-7.enc │ │ │ │ ├── iso8859-8.enc │ │ │ │ ├── iso8859-9.enc │ │ │ │ ├── jis0201.enc │ │ │ │ ├── jis0208.enc │ │ │ │ ├── jis0212.enc │ │ │ │ ├── koi8-r.enc │ │ │ │ ├── koi8-u.enc │ │ │ │ ├── ksc5601.enc │ │ │ │ ├── macCentEuro.enc │ │ │ │ ├── macCroatian.enc │ │ │ │ ├── macCyrillic.enc │ │ │ │ ├── macDingbats.enc │ │ │ │ ├── macGreek.enc │ │ │ │ ├── macIceland.enc │ │ │ │ ├── macJapan.enc │ │ │ │ ├── macRoman.enc │ │ │ │ ├── macRomania.enc │ │ │ │ ├── macThai.enc │ │ │ │ ├── macTurkish.enc │ │ │ │ ├── macUkraine.enc │ │ │ │ ├── shiftjis.enc │ │ │ │ ├── symbol.enc │ │ │ │ └── tis-620.enc │ │ │ ├── history.tcl │ │ │ ├── http1.0 │ │ │ │ ├── http.tcl │ │ │ │ └── pkgIndex.tcl │ │ │ ├── init.tcl │ │ │ ├── msgs │ │ │ │ ├── af.msg │ │ │ │ ├── af_za.msg │ │ │ │ ├── ar.msg │ │ │ │ ├── ar_in.msg │ │ │ │ ├── ar_jo.msg │ │ │ │ ├── ar_lb.msg │ │ │ │ ├── ar_sy.msg │ │ │ │ ├── be.msg │ │ │ │ ├── bg.msg │ │ │ │ ├── bn.msg │ │ │ │ ├── bn_in.msg │ │ │ │ ├── ca.msg │ │ │ │ ├── cs.msg │ │ │ │ ├── da.msg │ │ │ │ ├── de.msg │ │ │ │ ├── de_at.msg │ │ │ │ ├── de_be.msg │ │ │ │ ├── el.msg │ │ │ │ ├── en_au.msg │ │ │ │ ├── en_be.msg │ │ │ │ ├── en_bw.msg │ │ │ │ ├── en_ca.msg │ │ │ │ ├── en_gb.msg │ │ │ │ ├── en_hk.msg │ │ │ │ ├── en_ie.msg │ │ │ │ ├── en_in.msg │ │ │ │ ├── en_nz.msg │ │ │ │ ├── en_ph.msg │ │ │ │ ├── en_sg.msg │ │ │ │ ├── en_za.msg │ │ │ │ ├── en_zw.msg │ │ │ │ ├── eo.msg │ │ │ │ ├── es.msg │ │ │ │ ├── es_ar.msg │ │ │ │ ├── es_bo.msg │ │ │ │ ├── es_cl.msg │ │ │ │ ├── es_co.msg │ │ │ │ ├── es_cr.msg │ │ │ │ ├── es_do.msg │ │ │ │ ├── es_ec.msg │ │ │ │ ├── es_gt.msg │ │ │ │ ├── es_hn.msg │ │ │ │ ├── es_mx.msg │ │ │ │ ├── es_ni.msg │ │ │ │ ├── es_pa.msg │ │ │ │ ├── es_pe.msg │ │ │ │ ├── es_pr.msg │ │ │ │ ├── es_py.msg │ │ │ │ ├── es_sv.msg │ │ │ │ ├── es_uy.msg │ │ │ │ ├── es_ve.msg │ │ │ │ ├── et.msg │ │ │ │ ├── eu.msg │ │ │ │ ├── eu_es.msg │ │ │ │ ├── fa.msg │ │ │ │ ├── fa_in.msg │ │ │ │ ├── fa_ir.msg │ │ │ │ ├── fi.msg │ │ │ │ ├── fo.msg │ │ │ │ ├── fo_fo.msg │ │ │ │ ├── fr.msg │ │ │ │ ├── fr_be.msg │ │ │ │ ├── fr_ca.msg │ │ │ │ ├── fr_ch.msg │ │ │ │ ├── ga.msg │ │ │ │ ├── ga_ie.msg │ │ │ │ ├── gl.msg │ │ │ │ ├── gl_es.msg │ │ │ │ ├── gv.msg │ │ │ │ ├── gv_gb.msg │ │ │ │ ├── he.msg │ │ │ │ ├── hi.msg │ │ │ │ ├── hi_in.msg │ │ │ │ ├── hr.msg │ │ │ │ ├── hu.msg │ │ │ │ ├── id.msg │ │ │ │ ├── id_id.msg │ │ │ │ ├── is.msg │ │ │ │ ├── it.msg │ │ │ │ ├── it_ch.msg │ │ │ │ ├── ja.msg │ │ │ │ ├── kl.msg │ │ │ │ ├── kl_gl.msg │ │ │ │ ├── ko.msg │ │ │ │ ├── ko_kr.msg │ │ │ │ ├── kok.msg │ │ │ │ ├── kok_in.msg │ │ │ │ ├── kw.msg │ │ │ │ ├── kw_gb.msg │ │ │ │ ├── lt.msg │ │ │ │ ├── lv.msg │ │ │ │ ├── mk.msg │ │ │ │ ├── mr.msg │ │ │ │ ├── mr_in.msg │ │ │ │ ├── ms.msg │ │ │ │ ├── ms_my.msg │ │ │ │ ├── mt.msg │ │ │ │ ├── nb.msg │ │ │ │ ├── nl.msg │ │ │ │ ├── nl_be.msg │ │ │ │ ├── nn.msg │ │ │ │ ├── pl.msg │ │ │ │ ├── pt.msg │ │ │ │ ├── pt_br.msg │ │ │ │ ├── ro.msg │ │ │ │ ├── ru.msg │ │ │ │ ├── ru_ua.msg │ │ │ │ ├── sh.msg │ │ │ │ ├── sk.msg │ │ │ │ ├── sl.msg │ │ │ │ ├── sq.msg │ │ │ │ ├── sr.msg │ │ │ │ ├── sv.msg │ │ │ │ ├── sw.msg │ │ │ │ ├── ta.msg │ │ │ │ ├── ta_in.msg │ │ │ │ ├── te.msg │ │ │ │ ├── te_in.msg │ │ │ │ ├── th.msg │ │ │ │ ├── tr.msg │ │ │ │ ├── uk.msg │ │ │ │ ├── vi.msg │ │ │ │ ├── zh.msg │ │ │ │ ├── zh_cn.msg │ │ │ │ ├── zh_hk.msg │ │ │ │ ├── zh_sg.msg │ │ │ │ └── zh_tw.msg │ │ │ ├── opt0.4 │ │ │ │ ├── optparse.tcl │ │ │ │ └── pkgIndex.tcl │ │ │ ├── package.tcl │ │ │ ├── parray.tcl │ │ │ ├── safe.tcl │ │ │ ├── tclIndex │ │ │ ├── tm.tcl │ │ │ ├── tzdata │ │ │ │ ├── Africa │ │ │ │ │ ├── Abidjan │ │ │ │ │ ├── Accra │ │ │ │ │ ├── Addis_Ababa │ │ │ │ │ ├── Algiers │ │ │ │ │ ├── Asmara │ │ │ │ │ ├── Asmera │ │ │ │ │ ├── Bamako │ │ │ │ │ ├── Bangui │ │ │ │ │ ├── Banjul │ │ │ │ │ ├── Bissau │ │ │ │ │ ├── Blantyre │ │ │ │ │ ├── Brazzaville │ │ │ │ │ ├── Bujumbura │ │ │ │ │ ├── Cairo │ │ │ │ │ ├── Casablanca │ │ │ │ │ ├── Ceuta │ │ │ │ │ ├── Conakry │ │ │ │ │ ├── Dakar │ │ │ │ │ ├── Dar_es_Salaam │ │ │ │ │ ├── Djibouti │ │ │ │ │ ├── Douala │ │ │ │ │ ├── El_Aaiun │ │ │ │ │ ├── Freetown │ │ │ │ │ ├── Gaborone │ │ │ │ │ ├── Harare │ │ │ │ │ ├── Johannesburg │ │ │ │ │ ├── Juba │ │ │ │ │ ├── Kampala │ │ │ │ │ ├── Khartoum │ │ │ │ │ ├── Kigali │ │ │ │ │ ├── Kinshasa │ │ │ │ │ ├── Lagos │ │ │ │ │ ├── Libreville │ │ │ │ │ ├── Lome │ │ │ │ │ ├── Luanda │ │ │ │ │ ├── Lubumbashi │ │ │ │ │ ├── Lusaka │ │ │ │ │ ├── Malabo │ │ │ │ │ ├── Maputo │ │ │ │ │ ├── Maseru │ │ │ │ │ ├── Mbabane │ │ │ │ │ ├── Mogadishu │ │ │ │ │ ├── Monrovia │ │ │ │ │ ├── Nairobi │ │ │ │ │ ├── Ndjamena │ │ │ │ │ ├── Niamey │ │ │ │ │ ├── Nouakchott │ │ │ │ │ ├── Ouagadougou │ │ │ │ │ ├── Porto-Novo │ │ │ │ │ ├── Sao_Tome │ │ │ │ │ ├── Timbuktu │ │ │ │ │ ├── Tripoli │ │ │ │ │ ├── Tunis │ │ │ │ │ └── Windhoek │ │ │ │ ├── America │ │ │ │ │ ├── Adak │ │ │ │ │ ├── Anchorage │ │ │ │ │ ├── Anguilla │ │ │ │ │ ├── Antigua │ │ │ │ │ ├── Araguaina │ │ │ │ │ ├── Argentina │ │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ │ ├── Catamarca │ │ │ │ │ │ ├── ComodRivadavia │ │ │ │ │ │ ├── Cordoba │ │ │ │ │ │ ├── Jujuy │ │ │ │ │ │ ├── La_Rioja │ │ │ │ │ │ ├── Mendoza │ │ │ │ │ │ ├── Rio_Gallegos │ │ │ │ │ │ ├── Salta │ │ │ │ │ │ ├── San_Juan │ │ │ │ │ │ ├── San_Luis │ │ │ │ │ │ ├── Tucuman │ │ │ │ │ │ └── Ushuaia │ │ │ │ │ ├── Aruba │ │ │ │ │ ├── Asuncion │ │ │ │ │ ├── Atikokan │ │ │ │ │ ├── Atka │ │ │ │ │ ├── Bahia │ │ │ │ │ ├── Bahia_Banderas │ │ │ │ │ ├── Barbados │ │ │ │ │ ├── Belem │ │ │ │ │ ├── Belize │ │ │ │ │ ├── Blanc-Sablon │ │ │ │ │ ├── Boa_Vista │ │ │ │ │ ├── Bogota │ │ │ │ │ ├── Boise │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ ├── Cambridge_Bay │ │ │ │ │ ├── Campo_Grande │ │ │ │ │ ├── Cancun │ │ │ │ │ ├── Caracas │ │ │ │ │ ├── Catamarca │ │ │ │ │ ├── Cayenne │ │ │ │ │ ├── Cayman │ │ │ │ │ ├── Chicago │ │ │ │ │ ├── Chihuahua │ │ │ │ │ ├── Coral_Harbour │ │ │ │ │ ├── Cordoba │ │ │ │ │ ├── Costa_Rica │ │ │ │ │ ├── Creston │ │ │ │ │ ├── Cuiaba │ │ │ │ │ ├── Curacao │ │ │ │ │ ├── Danmarkshavn │ │ │ │ │ ├── Dawson │ │ │ │ │ ├── Dawson_Creek │ │ │ │ │ ├── Denver │ │ │ │ │ ├── Detroit │ │ │ │ │ ├── Dominica │ │ │ │ │ ├── Edmonton │ │ │ │ │ ├── Eirunepe │ │ │ │ │ ├── El_Salvador │ │ │ │ │ ├── Ensenada │ │ │ │ │ ├── Fort_Nelson │ │ │ │ │ ├── Fort_Wayne │ │ │ │ │ ├── Fortaleza │ │ │ │ │ ├── Glace_Bay │ │ │ │ │ ├── Godthab │ │ │ │ │ ├── Goose_Bay │ │ │ │ │ ├── Grand_Turk │ │ │ │ │ ├── Grenada │ │ │ │ │ ├── Guadeloupe │ │ │ │ │ ├── Guatemala │ │ │ │ │ ├── Guayaquil │ │ │ │ │ ├── Guyana │ │ │ │ │ ├── Halifax │ │ │ │ │ ├── Havana │ │ │ │ │ ├── Hermosillo │ │ │ │ │ ├── Indiana │ │ │ │ │ │ ├── Indianapolis │ │ │ │ │ │ ├── Knox │ │ │ │ │ │ ├── Marengo │ │ │ │ │ │ ├── Petersburg │ │ │ │ │ │ ├── Tell_City │ │ │ │ │ │ ├── Vevay │ │ │ │ │ │ ├── Vincennes │ │ │ │ │ │ └── Winamac │ │ │ │ │ ├── Indianapolis │ │ │ │ │ ├── Inuvik │ │ │ │ │ ├── Iqaluit │ │ │ │ │ ├── Jamaica │ │ │ │ │ ├── Jujuy │ │ │ │ │ ├── Juneau │ │ │ │ │ ├── Kentucky │ │ │ │ │ │ ├── Louisville │ │ │ │ │ │ └── Monticello │ │ │ │ │ ├── Knox_IN │ │ │ │ │ ├── Kralendijk │ │ │ │ │ ├── La_Paz │ │ │ │ │ ├── Lima │ │ │ │ │ ├── Los_Angeles │ │ │ │ │ ├── Louisville │ │ │ │ │ ├── Lower_Princes │ │ │ │ │ ├── Maceio │ │ │ │ │ ├── Managua │ │ │ │ │ ├── Manaus │ │ │ │ │ ├── Marigot │ │ │ │ │ ├── Martinique │ │ │ │ │ ├── Matamoros │ │ │ │ │ ├── Mazatlan │ │ │ │ │ ├── Mendoza │ │ │ │ │ ├── Menominee │ │ │ │ │ ├── Merida │ │ │ │ │ ├── Metlakatla │ │ │ │ │ ├── Mexico_City │ │ │ │ │ ├── Miquelon │ │ │ │ │ ├── Moncton │ │ │ │ │ ├── Monterrey │ │ │ │ │ ├── Montevideo │ │ │ │ │ ├── Montreal │ │ │ │ │ ├── Montserrat │ │ │ │ │ ├── Nassau │ │ │ │ │ ├── New_York │ │ │ │ │ ├── Nipigon │ │ │ │ │ ├── Nome │ │ │ │ │ ├── Noronha │ │ │ │ │ ├── North_Dakota │ │ │ │ │ │ ├── Beulah │ │ │ │ │ │ ├── Center │ │ │ │ │ │ └── New_Salem │ │ │ │ │ ├── Ojinaga │ │ │ │ │ ├── Panama │ │ │ │ │ ├── Pangnirtung │ │ │ │ │ ├── Paramaribo │ │ │ │ │ ├── Phoenix │ │ │ │ │ ├── Port-au-Prince │ │ │ │ │ ├── Port_of_Spain │ │ │ │ │ ├── Porto_Acre │ │ │ │ │ ├── Porto_Velho │ │ │ │ │ ├── Puerto_Rico │ │ │ │ │ ├── Punta_Arenas │ │ │ │ │ ├── Rainy_River │ │ │ │ │ ├── Rankin_Inlet │ │ │ │ │ ├── Recife │ │ │ │ │ ├── Regina │ │ │ │ │ ├── Resolute │ │ │ │ │ ├── Rio_Branco │ │ │ │ │ ├── Rosario │ │ │ │ │ ├── Santa_Isabel │ │ │ │ │ ├── Santarem │ │ │ │ │ ├── Santiago │ │ │ │ │ ├── Santo_Domingo │ │ │ │ │ ├── Sao_Paulo │ │ │ │ │ ├── Scoresbysund │ │ │ │ │ ├── Shiprock │ │ │ │ │ ├── Sitka │ │ │ │ │ ├── St_Barthelemy │ │ │ │ │ ├── St_Johns │ │ │ │ │ ├── St_Kitts │ │ │ │ │ ├── St_Lucia │ │ │ │ │ ├── St_Thomas │ │ │ │ │ ├── St_Vincent │ │ │ │ │ ├── Swift_Current │ │ │ │ │ ├── Tegucigalpa │ │ │ │ │ ├── Thule │ │ │ │ │ ├── Thunder_Bay │ │ │ │ │ ├── Tijuana │ │ │ │ │ ├── Toronto │ │ │ │ │ ├── Tortola │ │ │ │ │ ├── Vancouver │ │ │ │ │ ├── Virgin │ │ │ │ │ ├── Whitehorse │ │ │ │ │ ├── Winnipeg │ │ │ │ │ ├── Yakutat │ │ │ │ │ └── Yellowknife │ │ │ │ ├── Antarctica │ │ │ │ │ ├── Casey │ │ │ │ │ ├── Davis │ │ │ │ │ ├── DumontDUrville │ │ │ │ │ ├── Macquarie │ │ │ │ │ ├── Mawson │ │ │ │ │ ├── McMurdo │ │ │ │ │ ├── Palmer │ │ │ │ │ ├── Rothera │ │ │ │ │ ├── South_Pole │ │ │ │ │ ├── Syowa │ │ │ │ │ ├── Troll │ │ │ │ │ └── Vostok │ │ │ │ ├── Arctic │ │ │ │ │ └── Longyearbyen │ │ │ │ ├── Asia │ │ │ │ │ ├── Aden │ │ │ │ │ ├── Almaty │ │ │ │ │ ├── Amman │ │ │ │ │ ├── Anadyr │ │ │ │ │ ├── Aqtau │ │ │ │ │ ├── Aqtobe │ │ │ │ │ ├── Ashgabat │ │ │ │ │ ├── Ashkhabad │ │ │ │ │ ├── Atyrau │ │ │ │ │ ├── Baghdad │ │ │ │ │ ├── Bahrain │ │ │ │ │ ├── Baku │ │ │ │ │ ├── Bangkok │ │ │ │ │ ├── Barnaul │ │ │ │ │ ├── Beirut │ │ │ │ │ ├── Bishkek │ │ │ │ │ ├── Brunei │ │ │ │ │ ├── Calcutta │ │ │ │ │ ├── Chita │ │ │ │ │ ├── Choibalsan │ │ │ │ │ ├── Chongqing │ │ │ │ │ ├── Chungking │ │ │ │ │ ├── Colombo │ │ │ │ │ ├── Dacca │ │ │ │ │ ├── Damascus │ │ │ │ │ ├── Dhaka │ │ │ │ │ ├── Dili │ │ │ │ │ ├── Dubai │ │ │ │ │ ├── Dushanbe │ │ │ │ │ ├── Famagusta │ │ │ │ │ ├── Gaza │ │ │ │ │ ├── Harbin │ │ │ │ │ ├── Hebron │ │ │ │ │ ├── Ho_Chi_Minh │ │ │ │ │ ├── Hong_Kong │ │ │ │ │ ├── Hovd │ │ │ │ │ ├── Irkutsk │ │ │ │ │ ├── Istanbul │ │ │ │ │ ├── Jakarta │ │ │ │ │ ├── Jayapura │ │ │ │ │ ├── Jerusalem │ │ │ │ │ ├── Kabul │ │ │ │ │ ├── Kamchatka │ │ │ │ │ ├── Karachi │ │ │ │ │ ├── Kashgar │ │ │ │ │ ├── Kathmandu │ │ │ │ │ ├── Katmandu │ │ │ │ │ ├── Khandyga │ │ │ │ │ ├── Kolkata │ │ │ │ │ ├── Krasnoyarsk │ │ │ │ │ ├── Kuala_Lumpur │ │ │ │ │ ├── Kuching │ │ │ │ │ ├── Kuwait │ │ │ │ │ ├── Macao │ │ │ │ │ ├── Macau │ │ │ │ │ ├── Magadan │ │ │ │ │ ├── Makassar │ │ │ │ │ ├── Manila │ │ │ │ │ ├── Muscat │ │ │ │ │ ├── Nicosia │ │ │ │ │ ├── Novokuznetsk │ │ │ │ │ ├── Novosibirsk │ │ │ │ │ ├── Omsk │ │ │ │ │ ├── Oral │ │ │ │ │ ├── Phnom_Penh │ │ │ │ │ ├── Pontianak │ │ │ │ │ ├── Pyongyang │ │ │ │ │ ├── Qatar │ │ │ │ │ ├── Qyzylorda │ │ │ │ │ ├── Rangoon │ │ │ │ │ ├── Riyadh │ │ │ │ │ ├── Saigon │ │ │ │ │ ├── Sakhalin │ │ │ │ │ ├── Samarkand │ │ │ │ │ ├── Seoul │ │ │ │ │ ├── Shanghai │ │ │ │ │ ├── Singapore │ │ │ │ │ ├── Srednekolymsk │ │ │ │ │ ├── Taipei │ │ │ │ │ ├── Tashkent │ │ │ │ │ ├── Tbilisi │ │ │ │ │ ├── Tehran │ │ │ │ │ ├── Tel_Aviv │ │ │ │ │ ├── Thimbu │ │ │ │ │ ├── Thimphu │ │ │ │ │ ├── Tokyo │ │ │ │ │ ├── Tomsk │ │ │ │ │ ├── Ujung_Pandang │ │ │ │ │ ├── Ulaanbaatar │ │ │ │ │ ├── Ulan_Bator │ │ │ │ │ ├── Urumqi │ │ │ │ │ ├── Ust-Nera │ │ │ │ │ ├── Vientiane │ │ │ │ │ ├── Vladivostok │ │ │ │ │ ├── Yakutsk │ │ │ │ │ ├── Yangon │ │ │ │ │ ├── Yekaterinburg │ │ │ │ │ └── Yerevan │ │ │ │ ├── Atlantic │ │ │ │ │ ├── Azores │ │ │ │ │ ├── Bermuda │ │ │ │ │ ├── Canary │ │ │ │ │ ├── Cape_Verde │ │ │ │ │ ├── Faeroe │ │ │ │ │ ├── Faroe │ │ │ │ │ ├── Jan_Mayen │ │ │ │ │ ├── Madeira │ │ │ │ │ ├── Reykjavik │ │ │ │ │ ├── South_Georgia │ │ │ │ │ ├── St_Helena │ │ │ │ │ └── Stanley │ │ │ │ ├── Australia │ │ │ │ │ ├── ACT │ │ │ │ │ ├── Adelaide │ │ │ │ │ ├── Brisbane │ │ │ │ │ ├── Broken_Hill │ │ │ │ │ ├── Canberra │ │ │ │ │ ├── Currie │ │ │ │ │ ├── Darwin │ │ │ │ │ ├── Eucla │ │ │ │ │ ├── Hobart │ │ │ │ │ ├── LHI │ │ │ │ │ ├── Lindeman │ │ │ │ │ ├── Lord_Howe │ │ │ │ │ ├── Melbourne │ │ │ │ │ ├── NSW │ │ │ │ │ ├── North │ │ │ │ │ ├── Perth │ │ │ │ │ ├── Queensland │ │ │ │ │ ├── South │ │ │ │ │ ├── Sydney │ │ │ │ │ ├── Tasmania │ │ │ │ │ ├── Victoria │ │ │ │ │ ├── West │ │ │ │ │ └── Yancowinna │ │ │ │ ├── Brazil │ │ │ │ │ ├── Acre │ │ │ │ │ ├── DeNoronha │ │ │ │ │ ├── East │ │ │ │ │ └── West │ │ │ │ ├── CET │ │ │ │ ├── CST6CDT │ │ │ │ ├── Canada │ │ │ │ │ ├── Atlantic │ │ │ │ │ ├── Central │ │ │ │ │ ├── East-Saskatchewan │ │ │ │ │ ├── Eastern │ │ │ │ │ ├── Mountain │ │ │ │ │ ├── Newfoundland │ │ │ │ │ ├── Pacific │ │ │ │ │ ├── Saskatchewan │ │ │ │ │ └── Yukon │ │ │ │ ├── Chile │ │ │ │ │ ├── Continental │ │ │ │ │ └── EasterIsland │ │ │ │ ├── Cuba │ │ │ │ ├── EET │ │ │ │ ├── EST │ │ │ │ ├── EST5EDT │ │ │ │ ├── Egypt │ │ │ │ ├── Eire │ │ │ │ ├── Etc │ │ │ │ │ ├── GMT │ │ │ │ │ ├── GMT+0 │ │ │ │ │ ├── GMT+1 │ │ │ │ │ ├── GMT+10 │ │ │ │ │ ├── GMT+11 │ │ │ │ │ ├── GMT+12 │ │ │ │ │ ├── GMT+2 │ │ │ │ │ ├── GMT+3 │ │ │ │ │ ├── GMT+4 │ │ │ │ │ ├── GMT+5 │ │ │ │ │ ├── GMT+6 │ │ │ │ │ ├── GMT+7 │ │ │ │ │ ├── GMT+8 │ │ │ │ │ ├── GMT+9 │ │ │ │ │ ├── GMT-0 │ │ │ │ │ ├── GMT-1 │ │ │ │ │ ├── GMT-10 │ │ │ │ │ ├── GMT-11 │ │ │ │ │ ├── GMT-12 │ │ │ │ │ ├── GMT-13 │ │ │ │ │ ├── GMT-14 │ │ │ │ │ ├── GMT-2 │ │ │ │ │ ├── GMT-3 │ │ │ │ │ ├── GMT-4 │ │ │ │ │ ├── GMT-5 │ │ │ │ │ ├── GMT-6 │ │ │ │ │ ├── GMT-7 │ │ │ │ │ ├── GMT-8 │ │ │ │ │ ├── GMT-9 │ │ │ │ │ ├── GMT0 │ │ │ │ │ ├── Greenwich │ │ │ │ │ ├── UCT │ │ │ │ │ ├── UTC │ │ │ │ │ ├── Universal │ │ │ │ │ └── Zulu │ │ │ │ ├── Europe │ │ │ │ │ ├── Amsterdam │ │ │ │ │ ├── Andorra │ │ │ │ │ ├── Astrakhan │ │ │ │ │ ├── Athens │ │ │ │ │ ├── Belfast │ │ │ │ │ ├── Belgrade │ │ │ │ │ ├── Berlin │ │ │ │ │ ├── Bratislava │ │ │ │ │ ├── Brussels │ │ │ │ │ ├── Bucharest │ │ │ │ │ ├── Budapest │ │ │ │ │ ├── Busingen │ │ │ │ │ ├── Chisinau │ │ │ │ │ ├── Copenhagen │ │ │ │ │ ├── Dublin │ │ │ │ │ ├── Gibraltar │ │ │ │ │ ├── Guernsey │ │ │ │ │ ├── Helsinki │ │ │ │ │ ├── Isle_of_Man │ │ │ │ │ ├── Istanbul │ │ │ │ │ ├── Jersey │ │ │ │ │ ├── Kaliningrad │ │ │ │ │ ├── Kiev │ │ │ │ │ ├── Kirov │ │ │ │ │ ├── Lisbon │ │ │ │ │ ├── Ljubljana │ │ │ │ │ ├── London │ │ │ │ │ ├── Luxembourg │ │ │ │ │ ├── Madrid │ │ │ │ │ ├── Malta │ │ │ │ │ ├── Mariehamn │ │ │ │ │ ├── Minsk │ │ │ │ │ ├── Monaco │ │ │ │ │ ├── Moscow │ │ │ │ │ ├── Nicosia │ │ │ │ │ ├── Oslo │ │ │ │ │ ├── Paris │ │ │ │ │ ├── Podgorica │ │ │ │ │ ├── Prague │ │ │ │ │ ├── Riga │ │ │ │ │ ├── Rome │ │ │ │ │ ├── Samara │ │ │ │ │ ├── San_Marino │ │ │ │ │ ├── Sarajevo │ │ │ │ │ ├── Saratov │ │ │ │ │ ├── Simferopol │ │ │ │ │ ├── Skopje │ │ │ │ │ ├── Sofia │ │ │ │ │ ├── Stockholm │ │ │ │ │ ├── Tallinn │ │ │ │ │ ├── Tirane │ │ │ │ │ ├── Tiraspol │ │ │ │ │ ├── Ulyanovsk │ │ │ │ │ ├── Uzhgorod │ │ │ │ │ ├── Vaduz │ │ │ │ │ ├── Vatican │ │ │ │ │ ├── Vienna │ │ │ │ │ ├── Vilnius │ │ │ │ │ ├── Volgograd │ │ │ │ │ ├── Warsaw │ │ │ │ │ ├── Zagreb │ │ │ │ │ ├── Zaporozhye │ │ │ │ │ └── Zurich │ │ │ │ ├── GB │ │ │ │ ├── GB-Eire │ │ │ │ ├── GMT │ │ │ │ ├── GMT+0 │ │ │ │ ├── GMT-0 │ │ │ │ ├── GMT0 │ │ │ │ ├── Greenwich │ │ │ │ ├── HST │ │ │ │ ├── Hongkong │ │ │ │ ├── Iceland │ │ │ │ ├── Indian │ │ │ │ │ ├── Antananarivo │ │ │ │ │ ├── Chagos │ │ │ │ │ ├── Christmas │ │ │ │ │ ├── Cocos │ │ │ │ │ ├── Comoro │ │ │ │ │ ├── Kerguelen │ │ │ │ │ ├── Mahe │ │ │ │ │ ├── Maldives │ │ │ │ │ ├── Mauritius │ │ │ │ │ ├── Mayotte │ │ │ │ │ └── Reunion │ │ │ │ ├── Iran │ │ │ │ ├── Israel │ │ │ │ ├── Jamaica │ │ │ │ ├── Japan │ │ │ │ ├── Kwajalein │ │ │ │ ├── Libya │ │ │ │ ├── MET │ │ │ │ ├── MST │ │ │ │ ├── MST7MDT │ │ │ │ ├── Mexico │ │ │ │ │ ├── BajaNorte │ │ │ │ │ ├── BajaSur │ │ │ │ │ └── General │ │ │ │ ├── NZ │ │ │ │ ├── NZ-CHAT │ │ │ │ ├── Navajo │ │ │ │ ├── PRC │ │ │ │ ├── PST8PDT │ │ │ │ ├── Pacific │ │ │ │ │ ├── Apia │ │ │ │ │ ├── Auckland │ │ │ │ │ ├── Bougainville │ │ │ │ │ ├── Chatham │ │ │ │ │ ├── Chuuk │ │ │ │ │ ├── Easter │ │ │ │ │ ├── Efate │ │ │ │ │ ├── Enderbury │ │ │ │ │ ├── Fakaofo │ │ │ │ │ ├── Fiji │ │ │ │ │ ├── Funafuti │ │ │ │ │ ├── Galapagos │ │ │ │ │ ├── Gambier │ │ │ │ │ ├── Guadalcanal │ │ │ │ │ ├── Guam │ │ │ │ │ ├── Honolulu │ │ │ │ │ ├── Johnston │ │ │ │ │ ├── Kiritimati │ │ │ │ │ ├── Kosrae │ │ │ │ │ ├── Kwajalein │ │ │ │ │ ├── Majuro │ │ │ │ │ ├── Marquesas │ │ │ │ │ ├── Midway │ │ │ │ │ ├── Nauru │ │ │ │ │ ├── Niue │ │ │ │ │ ├── Norfolk │ │ │ │ │ ├── Noumea │ │ │ │ │ ├── Pago_Pago │ │ │ │ │ ├── Palau │ │ │ │ │ ├── Pitcairn │ │ │ │ │ ├── Pohnpei │ │ │ │ │ ├── Ponape │ │ │ │ │ ├── Port_Moresby │ │ │ │ │ ├── Rarotonga │ │ │ │ │ ├── Saipan │ │ │ │ │ ├── Samoa │ │ │ │ │ ├── Tahiti │ │ │ │ │ ├── Tarawa │ │ │ │ │ ├── Tongatapu │ │ │ │ │ ├── Truk │ │ │ │ │ ├── Wake │ │ │ │ │ ├── Wallis │ │ │ │ │ └── Yap │ │ │ │ ├── Poland │ │ │ │ ├── Portugal │ │ │ │ ├── ROC │ │ │ │ ├── ROK │ │ │ │ ├── Singapore │ │ │ │ ├── SystemV │ │ │ │ │ ├── AST4 │ │ │ │ │ ├── AST4ADT │ │ │ │ │ ├── CST6 │ │ │ │ │ ├── CST6CDT │ │ │ │ │ ├── EST5 │ │ │ │ │ ├── EST5EDT │ │ │ │ │ ├── HST10 │ │ │ │ │ ├── MST7 │ │ │ │ │ ├── MST7MDT │ │ │ │ │ ├── PST8 │ │ │ │ │ ├── PST8PDT │ │ │ │ │ ├── YST9 │ │ │ │ │ └── YST9YDT │ │ │ │ ├── Turkey │ │ │ │ ├── UCT │ │ │ │ ├── US │ │ │ │ │ ├── Alaska │ │ │ │ │ ├── Aleutian │ │ │ │ │ ├── Arizona │ │ │ │ │ ├── Central │ │ │ │ │ ├── East-Indiana │ │ │ │ │ ├── Eastern │ │ │ │ │ ├── Hawaii │ │ │ │ │ ├── Indiana-Starke │ │ │ │ │ ├── Michigan │ │ │ │ │ ├── Mountain │ │ │ │ │ ├── Pacific │ │ │ │ │ ├── Pacific-New │ │ │ │ │ └── Samoa │ │ │ │ ├── UTC │ │ │ │ ├── Universal │ │ │ │ ├── W-SU │ │ │ │ ├── WET │ │ │ │ └── Zulu │ │ │ └── word.tcl │ │ ├── tcl8 │ │ │ ├── 8.4 │ │ │ │ ├── platform-1.0.14.tm │ │ │ │ └── platform │ │ │ │ │ └── shell-1.1.4.tm │ │ │ ├── 8.5 │ │ │ │ ├── msgcat-1.6.1.tm │ │ │ │ └── tcltest-2.5.0.tm │ │ │ └── 8.6 │ │ │ │ └── http-2.9.0.tm │ │ ├── tcl86t.lib │ │ ├── tclConfig.sh │ │ ├── tclooConfig.sh │ │ ├── tclstub86.lib │ │ ├── tix8.4.3 │ │ │ ├── Balloon.tcl │ │ │ ├── BtnBox.tcl │ │ │ ├── CObjView.tcl │ │ │ ├── ChkList.tcl │ │ │ ├── ComboBox.tcl │ │ │ ├── Compat.tcl │ │ │ ├── Console.tcl │ │ │ ├── Control.tcl │ │ │ ├── DefSchm.tcl │ │ │ ├── DialogS.tcl │ │ │ ├── DirBox.tcl │ │ │ ├── DirDlg.tcl │ │ │ ├── DirList.tcl │ │ │ ├── DirTree.tcl │ │ │ ├── DragDrop.tcl │ │ │ ├── DtlList.tcl │ │ │ ├── EFileBox.tcl │ │ │ ├── EFileDlg.tcl │ │ │ ├── Event.tcl │ │ │ ├── FileBox.tcl │ │ │ ├── FileCbx.tcl │ │ │ ├── FileDlg.tcl │ │ │ ├── FileEnt.tcl │ │ │ ├── FloatEnt.tcl │ │ │ ├── Grid.tcl │ │ │ ├── HList.tcl │ │ │ ├── HListDD.tcl │ │ │ ├── IconView.tcl │ │ │ ├── Init.tcl │ │ │ ├── LabEntry.tcl │ │ │ ├── LabFrame.tcl │ │ │ ├── LabWidg.tcl │ │ │ ├── ListNBk.tcl │ │ │ ├── Makefile │ │ │ ├── Meter.tcl │ │ │ ├── MultView.tcl │ │ │ ├── NoteBook.tcl │ │ │ ├── OldUtil.tcl │ │ │ ├── OptMenu.tcl │ │ │ ├── PanedWin.tcl │ │ │ ├── PopMenu.tcl │ │ │ ├── Primitiv.tcl │ │ │ ├── ResizeH.tcl │ │ │ ├── SGrid.tcl │ │ │ ├── SHList.tcl │ │ │ ├── SListBox.tcl │ │ │ ├── STList.tcl │ │ │ ├── SText.tcl │ │ │ ├── SWidget.tcl │ │ │ ├── SWindow.tcl │ │ │ ├── Select.tcl │ │ │ ├── Shell.tcl │ │ │ ├── SimpDlg.tcl │ │ │ ├── StackWin.tcl │ │ │ ├── StatBar.tcl │ │ │ ├── StdBBox.tcl │ │ │ ├── StdShell.tcl │ │ │ ├── TList.tcl │ │ │ ├── Tix.tcl │ │ │ ├── Tree.tcl │ │ │ ├── Utils.tcl │ │ │ ├── VResize.tcl │ │ │ ├── VStack.tcl │ │ │ ├── VTree.tcl │ │ │ ├── Variable.tcl │ │ │ ├── WInfo.tcl │ │ │ ├── bitmaps │ │ │ │ ├── act_fold.gif │ │ │ │ ├── act_fold.xbm │ │ │ │ ├── act_fold.xpm │ │ │ │ ├── balarrow.xbm │ │ │ │ ├── cbxarrow.xbm │ │ │ │ ├── ck_def.xbm │ │ │ │ ├── ck_off.xbm │ │ │ │ ├── ck_on.xbm │ │ │ │ ├── cross.xbm │ │ │ │ ├── decr.xbm │ │ │ │ ├── drop.xbm │ │ │ │ ├── file.gif │ │ │ │ ├── file.xbm │ │ │ │ ├── file.xpm │ │ │ │ ├── folder.gif │ │ │ │ ├── folder.xbm │ │ │ │ ├── folder.xpm │ │ │ │ ├── harddisk.xbm │ │ │ │ ├── hourglas.mask │ │ │ │ ├── hourglas.xbm │ │ │ │ ├── incr.xbm │ │ │ │ ├── info.gif │ │ │ │ ├── info.xpm │ │ │ │ ├── maximize.xbm │ │ │ │ ├── minimize.xbm │ │ │ │ ├── minus.gif │ │ │ │ ├── minus.xbm │ │ │ │ ├── minus.xpm │ │ │ │ ├── minusarm.gif │ │ │ │ ├── minusarm.xbm │ │ │ │ ├── minusarm.xpm │ │ │ │ ├── mktransgif.tcl │ │ │ │ ├── network.xbm │ │ │ │ ├── no_entry.gif │ │ │ │ ├── no_entry.xpm │ │ │ │ ├── openfile.xbm │ │ │ │ ├── openfold.gif │ │ │ │ ├── openfold.xbm │ │ │ │ ├── openfold.xpm │ │ │ │ ├── plus.gif │ │ │ │ ├── plus.xbm │ │ │ │ ├── plus.xpm │ │ │ │ ├── plusarm.gif │ │ │ │ ├── plusarm.xbm │ │ │ │ ├── plusarm.xpm │ │ │ │ ├── resize1.xbm │ │ │ │ ├── resize2.xbm │ │ │ │ ├── restore.xbm │ │ │ │ ├── srcfile.gif │ │ │ │ ├── srcfile.xbm │ │ │ │ ├── srcfile.xpm │ │ │ │ ├── system.xbm │ │ │ │ ├── textfile.gif │ │ │ │ ├── textfile.xbm │ │ │ │ ├── textfile.xpm │ │ │ │ ├── tick.xbm │ │ │ │ ├── warning.gif │ │ │ │ └── warning.xpm │ │ │ ├── demos │ │ │ │ ├── MkChoose.tcl │ │ │ │ ├── MkDirLis.tcl │ │ │ │ ├── MkSample.tcl │ │ │ │ ├── MkScroll.tcl │ │ │ │ ├── bitmaps │ │ │ │ │ ├── about.xpm │ │ │ │ │ ├── bold.xbm │ │ │ │ │ ├── capital.xbm │ │ │ │ │ ├── centerj.xbm │ │ │ │ │ ├── code.xpm │ │ │ │ │ ├── combobox.xbm │ │ │ │ │ ├── combobox.xpm │ │ │ │ │ ├── drivea.xbm │ │ │ │ │ ├── drivea.xpm │ │ │ │ │ ├── exit.xpm │ │ │ │ │ ├── filebox.xbm │ │ │ │ │ ├── filebox.xpm │ │ │ │ │ ├── harddisk.xbm │ │ │ │ │ ├── harddisk.xpm │ │ │ │ │ ├── italic.xbm │ │ │ │ │ ├── justify.xbm │ │ │ │ │ ├── leftj.xbm │ │ │ │ │ ├── netw.xbm │ │ │ │ │ ├── netw.xpm │ │ │ │ │ ├── network.xbm │ │ │ │ │ ├── network.xpm │ │ │ │ │ ├── optmenu.xpm │ │ │ │ │ ├── rightj.xbm │ │ │ │ │ ├── select.xpm │ │ │ │ │ ├── tix.gif │ │ │ │ │ └── underlin.xbm │ │ │ │ ├── samples │ │ │ │ │ ├── AllSampl.tcl │ │ │ │ │ ├── ArrowBtn.tcl │ │ │ │ │ ├── Balloon.tcl │ │ │ │ │ ├── BtnBox.tcl │ │ │ │ │ ├── CObjView.tcl │ │ │ │ │ ├── ChkList.tcl │ │ │ │ │ ├── CmpImg.tcl │ │ │ │ │ ├── CmpImg1.tcl │ │ │ │ │ ├── CmpImg2.tcl │ │ │ │ │ ├── CmpImg3.tcl │ │ │ │ │ ├── CmpImg4.tcl │ │ │ │ │ ├── ComboBox.tcl │ │ │ │ │ ├── Control.tcl │ │ │ │ │ ├── DirDlg.tcl │ │ │ │ │ ├── DirList.tcl │ │ │ │ │ ├── DirTree.tcl │ │ │ │ │ ├── DragDrop.tcl │ │ │ │ │ ├── DynTree.tcl │ │ │ │ │ ├── EFileDlg.tcl │ │ │ │ │ ├── EditGrid.tcl │ │ │ │ │ ├── FileDlg.tcl │ │ │ │ │ ├── FileEnt.tcl │ │ │ │ │ ├── HList1.tcl │ │ │ │ │ ├── LabEntry.tcl │ │ │ │ │ ├── LabFrame.tcl │ │ │ │ │ ├── ListNBK.tcl │ │ │ │ │ ├── Meter.tcl │ │ │ │ │ ├── NoteBook.tcl │ │ │ │ │ ├── OptMenu.tcl │ │ │ │ │ ├── PanedWin.tcl │ │ │ │ │ ├── PopMenu.tcl │ │ │ │ │ ├── SGrid0.tcl │ │ │ │ │ ├── SGrid1.tcl │ │ │ │ │ ├── SHList.tcl │ │ │ │ │ ├── SHList2.tcl │ │ │ │ │ ├── SListBox.tcl │ │ │ │ │ ├── STList1.tcl │ │ │ │ │ ├── STList2.tcl │ │ │ │ │ ├── STList3.tcl │ │ │ │ │ ├── SText.tcl │ │ │ │ │ ├── SWindow.tcl │ │ │ │ │ ├── Sample.tcl │ │ │ │ │ ├── Select.tcl │ │ │ │ │ ├── StdBBox.tcl │ │ │ │ │ ├── Tree.tcl │ │ │ │ │ ├── Xpm.tcl │ │ │ │ │ └── Xpm1.tcl │ │ │ │ ├── tclIndex │ │ │ │ ├── tixwidgets.tcl │ │ │ │ └── widget │ │ │ ├── fs.tcl │ │ │ ├── pkgIndex.tcl │ │ │ ├── pref │ │ │ │ ├── 10Point.fs │ │ │ │ ├── 10Point.fsc │ │ │ │ ├── 12Point.fs │ │ │ │ ├── 12Point.fsc │ │ │ │ ├── 14Point.fs │ │ │ │ ├── 14Point.fsc │ │ │ │ ├── Bisque.cs │ │ │ │ ├── Bisque.csc │ │ │ │ ├── Blue.cs │ │ │ │ ├── Blue.csc │ │ │ │ ├── Gray.cs │ │ │ │ ├── Gray.csc │ │ │ │ ├── Makefile │ │ │ │ ├── Old12Pt.fs │ │ │ │ ├── Old14Pt.fs │ │ │ │ ├── SGIGray.cs │ │ │ │ ├── SGIGray.csc │ │ │ │ ├── TK.cs │ │ │ │ ├── TK.csc │ │ │ │ ├── TK.fs │ │ │ │ ├── TK.fsc │ │ │ │ ├── TixGray.cs │ │ │ │ ├── TixGray.csc │ │ │ │ ├── TkWin.cs │ │ │ │ ├── TkWin.csc │ │ │ │ ├── TkWin.fs │ │ │ │ ├── TkWin.fsc │ │ │ │ ├── WmDefault.cs │ │ │ │ ├── WmDefault.csc │ │ │ │ ├── WmDefault.fs │ │ │ │ ├── WmDefault.fsc │ │ │ │ ├── WmDefault.py │ │ │ │ ├── WmDefault.tcl │ │ │ │ ├── WmDefault.txt │ │ │ │ ├── pkgIndex.tcl │ │ │ │ └── tixmkpref │ │ │ ├── tix84.dll │ │ │ └── tix84.lib │ │ ├── tk8.6 │ │ │ ├── bgerror.tcl │ │ │ ├── button.tcl │ │ │ ├── choosedir.tcl │ │ │ ├── clrpick.tcl │ │ │ ├── comdlg.tcl │ │ │ ├── console.tcl │ │ │ ├── demos │ │ │ │ ├── README │ │ │ │ ├── anilabel.tcl │ │ │ │ ├── aniwave.tcl │ │ │ │ ├── arrow.tcl │ │ │ │ ├── bind.tcl │ │ │ │ ├── bitmap.tcl │ │ │ │ ├── browse │ │ │ │ ├── button.tcl │ │ │ │ ├── check.tcl │ │ │ │ ├── clrpick.tcl │ │ │ │ ├── colors.tcl │ │ │ │ ├── combo.tcl │ │ │ │ ├── cscroll.tcl │ │ │ │ ├── ctext.tcl │ │ │ │ ├── dialog1.tcl │ │ │ │ ├── dialog2.tcl │ │ │ │ ├── en.msg │ │ │ │ ├── entry1.tcl │ │ │ │ ├── entry2.tcl │ │ │ │ ├── entry3.tcl │ │ │ │ ├── filebox.tcl │ │ │ │ ├── floor.tcl │ │ │ │ ├── fontchoose.tcl │ │ │ │ ├── form.tcl │ │ │ │ ├── goldberg.tcl │ │ │ │ ├── hello │ │ │ │ ├── hscale.tcl │ │ │ │ ├── icon.tcl │ │ │ │ ├── image1.tcl │ │ │ │ ├── image2.tcl │ │ │ │ ├── images │ │ │ │ │ ├── earth.gif │ │ │ │ │ ├── earthmenu.png │ │ │ │ │ ├── earthris.gif │ │ │ │ │ ├── flagdown.xbm │ │ │ │ │ ├── flagup.xbm │ │ │ │ │ ├── gray25.xbm │ │ │ │ │ ├── letters.xbm │ │ │ │ │ ├── noletter.xbm │ │ │ │ │ ├── ouster.png │ │ │ │ │ ├── pattern.xbm │ │ │ │ │ ├── tcllogo.gif │ │ │ │ │ └── teapot.ppm │ │ │ │ ├── items.tcl │ │ │ │ ├── ixset │ │ │ │ ├── knightstour.tcl │ │ │ │ ├── label.tcl │ │ │ │ ├── labelframe.tcl │ │ │ │ ├── license.terms │ │ │ │ ├── mclist.tcl │ │ │ │ ├── menu.tcl │ │ │ │ ├── menubu.tcl │ │ │ │ ├── msgbox.tcl │ │ │ │ ├── nl.msg │ │ │ │ ├── paned1.tcl │ │ │ │ ├── paned2.tcl │ │ │ │ ├── pendulum.tcl │ │ │ │ ├── plot.tcl │ │ │ │ ├── puzzle.tcl │ │ │ │ ├── radio.tcl │ │ │ │ ├── rmt │ │ │ │ ├── rolodex │ │ │ │ ├── ruler.tcl │ │ │ │ ├── sayings.tcl │ │ │ │ ├── search.tcl │ │ │ │ ├── spin.tcl │ │ │ │ ├── square │ │ │ │ ├── states.tcl │ │ │ │ ├── style.tcl │ │ │ │ ├── tclIndex │ │ │ │ ├── tcolor │ │ │ │ ├── text.tcl │ │ │ │ ├── textpeer.tcl │ │ │ │ ├── timer │ │ │ │ ├── toolbar.tcl │ │ │ │ ├── tree.tcl │ │ │ │ ├── ttkbut.tcl │ │ │ │ ├── ttkmenu.tcl │ │ │ │ ├── ttknote.tcl │ │ │ │ ├── ttkpane.tcl │ │ │ │ ├── ttkprogress.tcl │ │ │ │ ├── ttkscale.tcl │ │ │ │ ├── twind.tcl │ │ │ │ ├── unicodeout.tcl │ │ │ │ ├── vscale.tcl │ │ │ │ └── widget │ │ │ ├── dialog.tcl │ │ │ ├── entry.tcl │ │ │ ├── focus.tcl │ │ │ ├── fontchooser.tcl │ │ │ ├── iconlist.tcl │ │ │ ├── icons.tcl │ │ │ ├── images │ │ │ │ ├── README │ │ │ │ ├── logo.eps │ │ │ │ ├── logo100.gif │ │ │ │ ├── logo64.gif │ │ │ │ ├── logoLarge.gif │ │ │ │ ├── logoMed.gif │ │ │ │ ├── pwrdLogo.eps │ │ │ │ ├── pwrdLogo100.gif │ │ │ │ ├── pwrdLogo150.gif │ │ │ │ ├── pwrdLogo175.gif │ │ │ │ ├── pwrdLogo200.gif │ │ │ │ ├── pwrdLogo75.gif │ │ │ │ └── tai-ku.gif │ │ │ ├── license.terms │ │ │ ├── listbox.tcl │ │ │ ├── megawidget.tcl │ │ │ ├── menu.tcl │ │ │ ├── mkpsenc.tcl │ │ │ ├── msgbox.tcl │ │ │ ├── msgs │ │ │ │ ├── cs.msg │ │ │ │ ├── da.msg │ │ │ │ ├── de.msg │ │ │ │ ├── el.msg │ │ │ │ ├── en.msg │ │ │ │ ├── en_gb.msg │ │ │ │ ├── eo.msg │ │ │ │ ├── es.msg │ │ │ │ ├── fr.msg │ │ │ │ ├── hu.msg │ │ │ │ ├── it.msg │ │ │ │ ├── nl.msg │ │ │ │ ├── pl.msg │ │ │ │ ├── pt.msg │ │ │ │ ├── ru.msg │ │ │ │ └── sv.msg │ │ │ ├── obsolete.tcl │ │ │ ├── optMenu.tcl │ │ │ ├── palette.tcl │ │ │ ├── panedwindow.tcl │ │ │ ├── pkgIndex.tcl │ │ │ ├── safetk.tcl │ │ │ ├── scale.tcl │ │ │ ├── scrlbar.tcl │ │ │ ├── spinbox.tcl │ │ │ ├── tclIndex │ │ │ ├── tearoff.tcl │ │ │ ├── text.tcl │ │ │ ├── tk.tcl │ │ │ ├── tkfbox.tcl │ │ │ ├── ttk │ │ │ │ ├── altTheme.tcl │ │ │ │ ├── aquaTheme.tcl │ │ │ │ ├── button.tcl │ │ │ │ ├── clamTheme.tcl │ │ │ │ ├── classicTheme.tcl │ │ │ │ ├── combobox.tcl │ │ │ │ ├── cursors.tcl │ │ │ │ ├── defaults.tcl │ │ │ │ ├── entry.tcl │ │ │ │ ├── fonts.tcl │ │ │ │ ├── menubutton.tcl │ │ │ │ ├── notebook.tcl │ │ │ │ ├── panedwindow.tcl │ │ │ │ ├── progress.tcl │ │ │ │ ├── scale.tcl │ │ │ │ ├── scrollbar.tcl │ │ │ │ ├── sizegrip.tcl │ │ │ │ ├── spinbox.tcl │ │ │ │ ├── treeview.tcl │ │ │ │ ├── ttk.tcl │ │ │ │ ├── utils.tcl │ │ │ │ ├── vistaTheme.tcl │ │ │ │ ├── winTheme.tcl │ │ │ │ └── xpTheme.tcl │ │ │ ├── unsupported.tcl │ │ │ └── xmfbox.tcl │ │ ├── tk86t.lib │ │ └── tkstub86.lib │ └── vcruntime140.dll └── tar.exe ├── install_adb_key.cmd ├── install_adb_key.sh ├── makeramdisk.cmd ├── makeramdisk.sh ├── push_bruteforcer.cmd ├── push_bruteforcer.sh ├── requirements.txt ├── root ├── .android │ ├── adb_keys │ ├── adbkey │ └── adbkey.pub ├── keys │ ├── data.json │ └── keys.json ├── other │ ├── 32Bit │ │ └── supolicy │ ├── 64Bit │ │ ├── strace │ │ ├── strace_static │ │ └── supolicy │ ├── BootSignature.jar │ ├── SEANDROIDENFORCE │ ├── adbd │ ├── applypatch.tar │ ├── b64xz │ ├── bruteforce │ ├── bsdiff.exe │ ├── busybox │ ├── checkadb.sh │ ├── imgdiff.exe │ ├── imgdiff2.exe │ ├── init.checkadb.rc │ ├── listen_tcpdump.sh │ ├── magisk │ │ ├── init.magisk.rc │ │ ├── magisk32 │ │ └── magisk64 │ ├── online_bruteforce │ │ ├── bruteforce.py │ │ ├── bruteforce │ │ │ ├── bf.sh │ │ │ └── getfooter.sh │ │ └── wordlist.txt │ ├── run_tcpdump.sh │ ├── sign.cmd │ ├── sign.sh │ ├── tcpdump │ └── tcpdump_run.sh ├── rootshell │ ├── enable_adb.sh │ ├── init.shell.rc │ ├── root_hack.sh │ └── rootshell.sh └── scripts │ ├── BootSignature.jar │ ├── Library │ ├── __init__.py │ ├── avbtool3.py │ ├── direntry.py │ ├── ext4.py │ ├── ext4extract.py │ ├── libavb.py │ ├── lz4decomp.py │ ├── patchtoimg.py │ ├── sdat2img.py │ ├── simg2img.py │ ├── structs.py │ ├── superextract.py │ └── utils.py │ ├── bootimg │ ├── bootimg.exe │ ├── bootimg_140.exe │ ├── bootsignature.py │ ├── brotli │ ├── busybox.exe │ ├── lz4.exe │ ├── makeramdisk.py │ ├── nc.exe │ ├── repack.sh │ ├── sign.bat │ ├── unpack.sh │ └── xz.exe ├── run_rootshell.cmd ├── run_rootshell.sh ├── setenv.cmd ├── src └── bootimg │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── include │ ├── apol │ │ ├── avrule-query.h │ │ ├── bool-query.h │ │ ├── bst.h │ │ ├── class-perm-query.h │ │ ├── condrule-query.h │ │ ├── constraint-query.h │ │ ├── context-query.h │ │ ├── domain-trans-analysis.h │ │ ├── fscon-query.h │ │ ├── ftrule-query.h │ │ ├── infoflow-analysis.h │ │ ├── isid-query.h │ │ ├── mls-query.h │ │ ├── mls_level.h │ │ ├── mls_range.h │ │ ├── netcon-query.h │ │ ├── perm-map.h │ │ ├── permissive-query.h │ │ ├── polcap-query.h │ │ ├── policy-path.h │ │ ├── policy-query.h │ │ ├── policy.h │ │ ├── range_trans-query.h │ │ ├── rbacrule-query.h │ │ ├── relabel-analysis.h │ │ ├── render.h │ │ ├── role-query.h │ │ ├── terule-query.h │ │ ├── type-query.h │ │ ├── types-relation-analysis.h │ │ ├── user-query.h │ │ ├── util.h │ │ └── vector.h │ ├── config.h │ ├── qpol │ │ ├── avrule_query.h │ │ ├── bool_query.h │ │ ├── class_perm_query.h │ │ ├── cond_query.h │ │ ├── constraint_query.h │ │ ├── context_query.h │ │ ├── fs_use_query.h │ │ ├── ftrule_query.h │ │ ├── genfscon_query.h │ │ ├── isid_query.h │ │ ├── iterator.h │ │ ├── mls_query.h │ │ ├── mlsrule_query.h │ │ ├── module.h │ │ ├── netifcon_query.h │ │ ├── nodecon_query.h │ │ ├── permissive_query.h │ │ ├── polcap_query.h │ │ ├── policy.h │ │ ├── policy_extend.h │ │ ├── portcon_query.h │ │ ├── rbacrule_query.h │ │ ├── role_query.h │ │ ├── syn_rule_query.h │ │ ├── terule_query.h │ │ ├── type_query.h │ │ ├── user_query.h │ │ └── util.h │ └── sys │ │ └── cdefs.h │ ├── libsepol │ ├── .qmake.stash │ ├── CMakeLists.txt │ ├── android_m_compat.h │ ├── assertion.c │ ├── av_permissions.h │ ├── avrule_block.c │ ├── avtab.c │ ├── boolean_internal.h │ ├── boolean_record.c │ ├── booleans.c │ ├── conditional.c │ ├── constraint.c │ ├── context.c │ ├── context.h │ ├── context_internal.h │ ├── context_record.c │ ├── debug.c │ ├── debug.h │ ├── dso.h │ ├── ebitmap.c │ ├── expand.c │ ├── genbools.c │ ├── genusers.c │ ├── handle.c │ ├── handle.h │ ├── hashtab.c │ ├── hierarchy.c │ ├── ibendport_internal.h │ ├── ibendport_record.c │ ├── ibendports.c │ ├── ibpkey_internal.h │ ├── ibpkey_record.c │ ├── ibpkeys.c │ ├── iface_internal.h │ ├── iface_record.c │ ├── interfaces.c │ ├── kernel_to_cil.c │ ├── kernel_to_common.c │ ├── kernel_to_common.h │ ├── kernel_to_conf.c │ ├── libsepol.pro │ ├── link.c │ ├── mls.c │ ├── mls.h │ ├── module.c │ ├── module_internal.h │ ├── module_to_cil.c │ ├── node_internal.h │ ├── node_record.c │ ├── nodes.c │ ├── polcaps.c │ ├── policydb.c │ ├── policydb_convert.c │ ├── policydb_internal.h │ ├── policydb_public.c │ ├── port_internal.h │ ├── port_record.c │ ├── ports.c │ ├── private.h │ ├── roles.c │ ├── sepol │ │ ├── boolean_record.h │ │ ├── booleans.h │ │ ├── context.h │ │ ├── context_record.h │ │ ├── debug.h │ │ ├── errcodes.h │ │ ├── handle.h │ │ ├── ibendport_record.h │ │ ├── ibendports.h │ │ ├── ibpkey_record.h │ │ ├── ibpkeys.h │ │ ├── iface_record.h │ │ ├── interfaces.h │ │ ├── kernel_to_cil.h │ │ ├── kernel_to_conf.h │ │ ├── module.h │ │ ├── module_to_cil.h │ │ ├── node_record.h │ │ ├── nodes.h │ │ ├── policydb.h │ │ ├── policydb │ │ │ ├── avrule_block.h │ │ │ ├── avtab.h │ │ │ ├── conditional.h │ │ │ ├── constraint.h │ │ │ ├── context.h │ │ │ ├── ebitmap.h │ │ │ ├── expand.h │ │ │ ├── flask.h │ │ │ ├── flask_types.h │ │ │ ├── hashtab.h │ │ │ ├── hierarchy.h │ │ │ ├── link.h │ │ │ ├── mls_types.h │ │ │ ├── module.h │ │ │ ├── polcaps.h │ │ │ ├── policydb.h │ │ │ ├── services.h │ │ │ ├── sidtab.h │ │ │ ├── symtab.h │ │ │ └── util.h │ │ ├── port_record.h │ │ ├── ports.h │ │ ├── roles.h │ │ ├── sepol.h │ │ ├── user_record.h │ │ └── users.h │ ├── services.c │ ├── sidtab.c │ ├── symtab.c │ ├── user_internal.h │ ├── user_record.c │ ├── users.c │ ├── util.c │ └── write.c │ ├── sepolicy@0644 │ └── src │ ├── .qmake.stash │ ├── android_filesystem_capability.h │ ├── android_filesystem_config.h │ ├── bootimg.h │ ├── bootimg.pro │ ├── dtbinfo.c │ ├── fctxinject.c │ ├── fs-config.c │ ├── getarch.c │ ├── hexpatch.c │ ├── keycheck.c │ ├── magiskpolicy │ ├── api.c │ ├── logging.h │ ├── magisk.h │ ├── magiskpolicy.c │ ├── magiskpolicy.h │ ├── rules.c │ ├── sepolicy.c │ ├── sepolicy.h │ ├── vector.c │ ├── vector.h │ ├── windows-mmap.c │ └── windows-mmap.h │ ├── main.c │ ├── mkimg.c │ ├── mkinitfs.c │ ├── offsetof.c │ ├── readta.c │ ├── replace.c │ ├── seinject.c │ ├── sha.c │ ├── sha.h │ ├── unpackelf.c │ ├── unpackimg.c │ ├── unpackinitfs.c │ ├── xattr.c │ └── zip.c ├── su.cmd ├── su.sh └── verify_signature.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://paypal.me/viperbjk 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/README.md -------------------------------------------------------------------------------- /Templates/AndroidBoot.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Templates/AndroidBoot.bt -------------------------------------------------------------------------------- /Templates/AndroidVBMeta.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Templates/AndroidVBMeta.bt -------------------------------------------------------------------------------- /Templates/gpt.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Templates/gpt.bt -------------------------------------------------------------------------------- /Templates/super_partition.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Templates/super_partition.bt -------------------------------------------------------------------------------- /Tools/AdbWinApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/AdbWinApi.dll -------------------------------------------------------------------------------- /Tools/AdbWinUsbApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/AdbWinUsbApi.dll -------------------------------------------------------------------------------- /Tools/adb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/adb.exe -------------------------------------------------------------------------------- /Tools/fastboot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/fastboot.exe -------------------------------------------------------------------------------- /Tools/libcrypto-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/libcrypto-1_1-x64.dll -------------------------------------------------------------------------------- /Tools/libssl-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/libssl-1_1-x64.dll -------------------------------------------------------------------------------- /Tools/libwinpthread-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/libwinpthread-1.dll -------------------------------------------------------------------------------- /Tools/md5sum.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/md5sum.exe -------------------------------------------------------------------------------- /Tools/nc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/nc.exe -------------------------------------------------------------------------------- /Tools/openssl.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/openssl.cfg -------------------------------------------------------------------------------- /Tools/openssl.cnf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/openssl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/openssl.exe -------------------------------------------------------------------------------- /Tools/python37/DLLs/py.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/DLLs/py.ico -------------------------------------------------------------------------------- /Tools/python37/DLLs/pyc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/DLLs/pyc.ico -------------------------------------------------------------------------------- /Tools/python37/DLLs/pyd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/DLLs/pyd.ico -------------------------------------------------------------------------------- /Tools/python37/DLLs/python_lib.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/DLLs/python_lib.cat -------------------------------------------------------------------------------- /Tools/python37/DLLs/python_tools.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/DLLs/python_tools.cat -------------------------------------------------------------------------------- /Tools/python37/DLLs/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/DLLs/sqlite3.dll -------------------------------------------------------------------------------- /Tools/python37/DLLs/tcl86t.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/DLLs/tcl86t.dll -------------------------------------------------------------------------------- /Tools/python37/DLLs/tk86t.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/DLLs/tk86t.dll -------------------------------------------------------------------------------- /Tools/python37/Doc/python373.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Doc/python373.chm -------------------------------------------------------------------------------- /Tools/python37/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/LICENSE.txt -------------------------------------------------------------------------------- /Tools/python37/Lib/__future__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/__future__.py -------------------------------------------------------------------------------- /Tools/python37/Lib/__phello__.foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/__phello__.foo.py -------------------------------------------------------------------------------- /Tools/python37/Lib/_bootlocale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/_bootlocale.py -------------------------------------------------------------------------------- /Tools/python37/Lib/_compat_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/_compat_pickle.py -------------------------------------------------------------------------------- /Tools/python37/Lib/_compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/_compression.py -------------------------------------------------------------------------------- /Tools/python37/Lib/_dummy_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/_dummy_thread.py -------------------------------------------------------------------------------- /Tools/python37/Lib/_markupbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/_markupbase.py -------------------------------------------------------------------------------- /Tools/python37/Lib/_osx_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/_osx_support.py -------------------------------------------------------------------------------- /Tools/python37/Lib/_py_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/_py_abc.py -------------------------------------------------------------------------------- /Tools/python37/Lib/_pydecimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/_pydecimal.py -------------------------------------------------------------------------------- /Tools/python37/Lib/_pyio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/_pyio.py -------------------------------------------------------------------------------- /Tools/python37/Lib/_sitebuiltins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/_sitebuiltins.py -------------------------------------------------------------------------------- /Tools/python37/Lib/_strptime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/_strptime.py -------------------------------------------------------------------------------- /Tools/python37/Lib/_weakrefset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/_weakrefset.py -------------------------------------------------------------------------------- /Tools/python37/Lib/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/abc.py -------------------------------------------------------------------------------- /Tools/python37/Lib/aifc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/aifc.py -------------------------------------------------------------------------------- /Tools/python37/Lib/antigravity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/antigravity.py -------------------------------------------------------------------------------- /Tools/python37/Lib/argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/argparse.py -------------------------------------------------------------------------------- /Tools/python37/Lib/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/ast.py -------------------------------------------------------------------------------- /Tools/python37/Lib/asynchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/asynchat.py -------------------------------------------------------------------------------- /Tools/python37/Lib/asyncio/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/asyncio/events.py -------------------------------------------------------------------------------- /Tools/python37/Lib/asyncio/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/asyncio/locks.py -------------------------------------------------------------------------------- /Tools/python37/Lib/asyncio/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/asyncio/log.py -------------------------------------------------------------------------------- /Tools/python37/Lib/asyncio/queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/asyncio/queues.py -------------------------------------------------------------------------------- /Tools/python37/Lib/asyncio/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/asyncio/tasks.py -------------------------------------------------------------------------------- /Tools/python37/Lib/asyncore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/asyncore.py -------------------------------------------------------------------------------- /Tools/python37/Lib/base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/base64.py -------------------------------------------------------------------------------- /Tools/python37/Lib/bdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/bdb.py -------------------------------------------------------------------------------- /Tools/python37/Lib/binhex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/binhex.py -------------------------------------------------------------------------------- /Tools/python37/Lib/bisect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/bisect.py -------------------------------------------------------------------------------- /Tools/python37/Lib/bz2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/bz2.py -------------------------------------------------------------------------------- /Tools/python37/Lib/cProfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/cProfile.py -------------------------------------------------------------------------------- /Tools/python37/Lib/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/calendar.py -------------------------------------------------------------------------------- /Tools/python37/Lib/cgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/cgi.py -------------------------------------------------------------------------------- /Tools/python37/Lib/cgitb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/cgitb.py -------------------------------------------------------------------------------- /Tools/python37/Lib/chunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/chunk.py -------------------------------------------------------------------------------- /Tools/python37/Lib/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/cmd.py -------------------------------------------------------------------------------- /Tools/python37/Lib/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/code.py -------------------------------------------------------------------------------- /Tools/python37/Lib/codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/codecs.py -------------------------------------------------------------------------------- /Tools/python37/Lib/codeop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/codeop.py -------------------------------------------------------------------------------- /Tools/python37/Lib/colorsys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/colorsys.py -------------------------------------------------------------------------------- /Tools/python37/Lib/compileall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/compileall.py -------------------------------------------------------------------------------- /Tools/python37/Lib/concurrent/__init__.py: -------------------------------------------------------------------------------- 1 | # This directory is a Python package. 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/configparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/configparser.py -------------------------------------------------------------------------------- /Tools/python37/Lib/contextlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/contextlib.py -------------------------------------------------------------------------------- /Tools/python37/Lib/contextvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/contextvars.py -------------------------------------------------------------------------------- /Tools/python37/Lib/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/copy.py -------------------------------------------------------------------------------- /Tools/python37/Lib/copyreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/copyreg.py -------------------------------------------------------------------------------- /Tools/python37/Lib/crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/crypt.py -------------------------------------------------------------------------------- /Tools/python37/Lib/csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/csv.py -------------------------------------------------------------------------------- /Tools/python37/Lib/ctypes/_aix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/ctypes/_aix.py -------------------------------------------------------------------------------- /Tools/python37/Lib/ctypes/_endian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/ctypes/_endian.py -------------------------------------------------------------------------------- /Tools/python37/Lib/ctypes/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/ctypes/util.py -------------------------------------------------------------------------------- /Tools/python37/Lib/curses/ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/curses/ascii.py -------------------------------------------------------------------------------- /Tools/python37/Lib/curses/has_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/curses/has_key.py -------------------------------------------------------------------------------- /Tools/python37/Lib/curses/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/curses/panel.py -------------------------------------------------------------------------------- /Tools/python37/Lib/curses/textpad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/curses/textpad.py -------------------------------------------------------------------------------- /Tools/python37/Lib/dataclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/dataclasses.py -------------------------------------------------------------------------------- /Tools/python37/Lib/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/datetime.py -------------------------------------------------------------------------------- /Tools/python37/Lib/dbm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/dbm/__init__.py -------------------------------------------------------------------------------- /Tools/python37/Lib/dbm/dumb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/dbm/dumb.py -------------------------------------------------------------------------------- /Tools/python37/Lib/dbm/gnu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/dbm/gnu.py -------------------------------------------------------------------------------- /Tools/python37/Lib/dbm/ndbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/dbm/ndbm.py -------------------------------------------------------------------------------- /Tools/python37/Lib/decimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/decimal.py -------------------------------------------------------------------------------- /Tools/python37/Lib/difflib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/difflib.py -------------------------------------------------------------------------------- /Tools/python37/Lib/dis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/dis.py -------------------------------------------------------------------------------- /Tools/python37/Lib/distutils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/distutils/README -------------------------------------------------------------------------------- /Tools/python37/Lib/distutils/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/distutils/cmd.py -------------------------------------------------------------------------------- /Tools/python37/Lib/distutils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/distutils/core.py -------------------------------------------------------------------------------- /Tools/python37/Lib/distutils/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/distutils/dist.py -------------------------------------------------------------------------------- /Tools/python37/Lib/distutils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/distutils/log.py -------------------------------------------------------------------------------- /Tools/python37/Lib/distutils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/distutils/util.py -------------------------------------------------------------------------------- /Tools/python37/Lib/doctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/doctest.py -------------------------------------------------------------------------------- /Tools/python37/Lib/email/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/email/__init__.py -------------------------------------------------------------------------------- /Tools/python37/Lib/email/charset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/email/charset.py -------------------------------------------------------------------------------- /Tools/python37/Lib/email/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/email/encoders.py -------------------------------------------------------------------------------- /Tools/python37/Lib/email/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/email/errors.py -------------------------------------------------------------------------------- /Tools/python37/Lib/email/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/email/header.py -------------------------------------------------------------------------------- /Tools/python37/Lib/email/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/email/message.py -------------------------------------------------------------------------------- /Tools/python37/Lib/email/mime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/email/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/email/parser.py -------------------------------------------------------------------------------- /Tools/python37/Lib/email/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/email/policy.py -------------------------------------------------------------------------------- /Tools/python37/Lib/email/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/email/utils.py -------------------------------------------------------------------------------- /Tools/python37/Lib/encodings/big5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/encodings/big5.py -------------------------------------------------------------------------------- /Tools/python37/Lib/encodings/gbk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/encodings/gbk.py -------------------------------------------------------------------------------- /Tools/python37/Lib/encodings/hz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/encodings/hz.py -------------------------------------------------------------------------------- /Tools/python37/Lib/encodings/idna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/encodings/idna.py -------------------------------------------------------------------------------- /Tools/python37/Lib/encodings/mbcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/encodings/mbcs.py -------------------------------------------------------------------------------- /Tools/python37/Lib/encodings/oem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/encodings/oem.py -------------------------------------------------------------------------------- /Tools/python37/Lib/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/enum.py -------------------------------------------------------------------------------- /Tools/python37/Lib/filecmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/filecmp.py -------------------------------------------------------------------------------- /Tools/python37/Lib/fileinput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/fileinput.py -------------------------------------------------------------------------------- /Tools/python37/Lib/fnmatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/fnmatch.py -------------------------------------------------------------------------------- /Tools/python37/Lib/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/formatter.py -------------------------------------------------------------------------------- /Tools/python37/Lib/fractions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/fractions.py -------------------------------------------------------------------------------- /Tools/python37/Lib/ftplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/ftplib.py -------------------------------------------------------------------------------- /Tools/python37/Lib/functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/functools.py -------------------------------------------------------------------------------- /Tools/python37/Lib/genericpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/genericpath.py -------------------------------------------------------------------------------- /Tools/python37/Lib/getopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/getopt.py -------------------------------------------------------------------------------- /Tools/python37/Lib/getpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/getpass.py -------------------------------------------------------------------------------- /Tools/python37/Lib/gettext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/gettext.py -------------------------------------------------------------------------------- /Tools/python37/Lib/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/glob.py -------------------------------------------------------------------------------- /Tools/python37/Lib/gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/gzip.py -------------------------------------------------------------------------------- /Tools/python37/Lib/hashlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/hashlib.py -------------------------------------------------------------------------------- /Tools/python37/Lib/heapq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/heapq.py -------------------------------------------------------------------------------- /Tools/python37/Lib/hmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/hmac.py -------------------------------------------------------------------------------- /Tools/python37/Lib/html/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/html/__init__.py -------------------------------------------------------------------------------- /Tools/python37/Lib/html/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/html/entities.py -------------------------------------------------------------------------------- /Tools/python37/Lib/html/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/html/parser.py -------------------------------------------------------------------------------- /Tools/python37/Lib/http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/http/__init__.py -------------------------------------------------------------------------------- /Tools/python37/Lib/http/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/http/client.py -------------------------------------------------------------------------------- /Tools/python37/Lib/http/cookiejar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/http/cookiejar.py -------------------------------------------------------------------------------- /Tools/python37/Lib/http/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/http/cookies.py -------------------------------------------------------------------------------- /Tools/python37/Lib/http/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/http/server.py -------------------------------------------------------------------------------- /Tools/python37/Lib/idlelib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/idlelib/ChangeLog -------------------------------------------------------------------------------- /Tools/python37/Lib/idlelib/NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/idlelib/NEWS.txt -------------------------------------------------------------------------------- /Tools/python37/Lib/idlelib/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/idlelib/TODO.txt -------------------------------------------------------------------------------- /Tools/python37/Lib/idlelib/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/idlelib/config.py -------------------------------------------------------------------------------- /Tools/python37/Lib/idlelib/editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/idlelib/editor.py -------------------------------------------------------------------------------- /Tools/python37/Lib/idlelib/grep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/idlelib/grep.py -------------------------------------------------------------------------------- /Tools/python37/Lib/idlelib/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/idlelib/help.html -------------------------------------------------------------------------------- /Tools/python37/Lib/idlelib/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/idlelib/help.py -------------------------------------------------------------------------------- /Tools/python37/Lib/idlelib/idle.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/idlelib/idle.bat -------------------------------------------------------------------------------- /Tools/python37/Lib/idlelib/idle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/idlelib/idle.py -------------------------------------------------------------------------------- /Tools/python37/Lib/idlelib/idle.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/idlelib/idle.pyw -------------------------------------------------------------------------------- /Tools/python37/Lib/idlelib/iomenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/idlelib/iomenu.py -------------------------------------------------------------------------------- /Tools/python37/Lib/idlelib/macosx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/idlelib/macosx.py -------------------------------------------------------------------------------- /Tools/python37/Lib/idlelib/outwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/idlelib/outwin.py -------------------------------------------------------------------------------- /Tools/python37/Lib/idlelib/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/idlelib/query.py -------------------------------------------------------------------------------- /Tools/python37/Lib/idlelib/rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/idlelib/rpc.py -------------------------------------------------------------------------------- /Tools/python37/Lib/idlelib/rstrip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/idlelib/rstrip.py -------------------------------------------------------------------------------- /Tools/python37/Lib/idlelib/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/idlelib/run.py -------------------------------------------------------------------------------- /Tools/python37/Lib/idlelib/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/idlelib/search.py -------------------------------------------------------------------------------- /Tools/python37/Lib/idlelib/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/idlelib/tree.py -------------------------------------------------------------------------------- /Tools/python37/Lib/idlelib/undo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/idlelib/undo.py -------------------------------------------------------------------------------- /Tools/python37/Lib/idlelib/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/idlelib/window.py -------------------------------------------------------------------------------- /Tools/python37/Lib/imaplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/imaplib.py -------------------------------------------------------------------------------- /Tools/python37/Lib/imghdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/imghdr.py -------------------------------------------------------------------------------- /Tools/python37/Lib/imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/imp.py -------------------------------------------------------------------------------- /Tools/python37/Lib/importlib/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/importlib/abc.py -------------------------------------------------------------------------------- /Tools/python37/Lib/importlib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/importlib/util.py -------------------------------------------------------------------------------- /Tools/python37/Lib/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/inspect.py -------------------------------------------------------------------------------- /Tools/python37/Lib/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/io.py -------------------------------------------------------------------------------- /Tools/python37/Lib/ipaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/ipaddress.py -------------------------------------------------------------------------------- /Tools/python37/Lib/json/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/json/__init__.py -------------------------------------------------------------------------------- /Tools/python37/Lib/json/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/json/decoder.py -------------------------------------------------------------------------------- /Tools/python37/Lib/json/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/json/encoder.py -------------------------------------------------------------------------------- /Tools/python37/Lib/json/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/json/scanner.py -------------------------------------------------------------------------------- /Tools/python37/Lib/json/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/json/tool.py -------------------------------------------------------------------------------- /Tools/python37/Lib/keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/keyword.py -------------------------------------------------------------------------------- /Tools/python37/Lib/lib2to3/__init__.py: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/lib2to3/fixes/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/lib2to3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/lib2to3/main.py -------------------------------------------------------------------------------- /Tools/python37/Lib/lib2to3/pygram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/lib2to3/pygram.py -------------------------------------------------------------------------------- /Tools/python37/Lib/lib2to3/pytree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/lib2to3/pytree.py -------------------------------------------------------------------------------- /Tools/python37/Lib/lib2to3/tests/data/bom.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | print "BOM BOOM!" 3 | -------------------------------------------------------------------------------- /Tools/python37/Lib/lib2to3/tests/data/false_encoding.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | print '#coding=0' 3 | -------------------------------------------------------------------------------- /Tools/python37/Lib/lib2to3/tests/data/fixers/myfixes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/lib2to3/tests/data/fixers/parrot_example.py: -------------------------------------------------------------------------------- 1 | def parrot(): 2 | pass 3 | -------------------------------------------------------------------------------- /Tools/python37/Lib/linecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/linecache.py -------------------------------------------------------------------------------- /Tools/python37/Lib/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/locale.py -------------------------------------------------------------------------------- /Tools/python37/Lib/logging/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/logging/config.py -------------------------------------------------------------------------------- /Tools/python37/Lib/lzma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/lzma.py -------------------------------------------------------------------------------- /Tools/python37/Lib/macpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/macpath.py -------------------------------------------------------------------------------- /Tools/python37/Lib/mailbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/mailbox.py -------------------------------------------------------------------------------- /Tools/python37/Lib/mailcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/mailcap.py -------------------------------------------------------------------------------- /Tools/python37/Lib/mimetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/mimetypes.py -------------------------------------------------------------------------------- /Tools/python37/Lib/modulefinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/modulefinder.py -------------------------------------------------------------------------------- /Tools/python37/Lib/msilib/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/msilib/schema.py -------------------------------------------------------------------------------- /Tools/python37/Lib/msilib/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/msilib/text.py -------------------------------------------------------------------------------- /Tools/python37/Lib/netrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/netrc.py -------------------------------------------------------------------------------- /Tools/python37/Lib/nntplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/nntplib.py -------------------------------------------------------------------------------- /Tools/python37/Lib/ntpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/ntpath.py -------------------------------------------------------------------------------- /Tools/python37/Lib/nturl2path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/nturl2path.py -------------------------------------------------------------------------------- /Tools/python37/Lib/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/numbers.py -------------------------------------------------------------------------------- /Tools/python37/Lib/opcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/opcode.py -------------------------------------------------------------------------------- /Tools/python37/Lib/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/operator.py -------------------------------------------------------------------------------- /Tools/python37/Lib/optparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/optparse.py -------------------------------------------------------------------------------- /Tools/python37/Lib/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/os.py -------------------------------------------------------------------------------- /Tools/python37/Lib/pathlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/pathlib.py -------------------------------------------------------------------------------- /Tools/python37/Lib/pdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/pdb.py -------------------------------------------------------------------------------- /Tools/python37/Lib/pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/pickle.py -------------------------------------------------------------------------------- /Tools/python37/Lib/pickletools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/pickletools.py -------------------------------------------------------------------------------- /Tools/python37/Lib/pipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/pipes.py -------------------------------------------------------------------------------- /Tools/python37/Lib/pkgutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/pkgutil.py -------------------------------------------------------------------------------- /Tools/python37/Lib/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/platform.py -------------------------------------------------------------------------------- /Tools/python37/Lib/plistlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/plistlib.py -------------------------------------------------------------------------------- /Tools/python37/Lib/poplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/poplib.py -------------------------------------------------------------------------------- /Tools/python37/Lib/posixpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/posixpath.py -------------------------------------------------------------------------------- /Tools/python37/Lib/pprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/pprint.py -------------------------------------------------------------------------------- /Tools/python37/Lib/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/profile.py -------------------------------------------------------------------------------- /Tools/python37/Lib/pstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/pstats.py -------------------------------------------------------------------------------- /Tools/python37/Lib/pty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/pty.py -------------------------------------------------------------------------------- /Tools/python37/Lib/py_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/py_compile.py -------------------------------------------------------------------------------- /Tools/python37/Lib/pyclbr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/pyclbr.py -------------------------------------------------------------------------------- /Tools/python37/Lib/pydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/pydoc.py -------------------------------------------------------------------------------- /Tools/python37/Lib/pydoc_data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/queue.py -------------------------------------------------------------------------------- /Tools/python37/Lib/quopri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/quopri.py -------------------------------------------------------------------------------- /Tools/python37/Lib/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/random.py -------------------------------------------------------------------------------- /Tools/python37/Lib/re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/re.py -------------------------------------------------------------------------------- /Tools/python37/Lib/reprlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/reprlib.py -------------------------------------------------------------------------------- /Tools/python37/Lib/rlcompleter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/rlcompleter.py -------------------------------------------------------------------------------- /Tools/python37/Lib/runpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/runpy.py -------------------------------------------------------------------------------- /Tools/python37/Lib/sched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/sched.py -------------------------------------------------------------------------------- /Tools/python37/Lib/secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/secrets.py -------------------------------------------------------------------------------- /Tools/python37/Lib/selectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/selectors.py -------------------------------------------------------------------------------- /Tools/python37/Lib/shelve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/shelve.py -------------------------------------------------------------------------------- /Tools/python37/Lib/shlex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/shlex.py -------------------------------------------------------------------------------- /Tools/python37/Lib/shutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/shutil.py -------------------------------------------------------------------------------- /Tools/python37/Lib/signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/signal.py -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/Click-7.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/Click-7.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | click 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/Crypto/Cipher/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/Crypto/Hash/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/Crypto/Math/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/Crypto/PublicKey/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/Crypto/SelfTest/PublicKey/test_vectors/ECC/openssl_version.txt: -------------------------------------------------------------------------------- 1 | OpenSSL 1.0.2e-fips 3 Dec 2015 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/Crypto/SelfTest/PublicKey/test_vectors/ECC/openssl_version_p384.txt: -------------------------------------------------------------------------------- 1 | OpenSSL 1.1.0g 2 Nov 2017 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/Crypto/SelfTest/PublicKey/test_vectors/ECC/openssl_version_p521.txt: -------------------------------------------------------------------------------- 1 | OpenSSL 1.1.0g 2 Nov 2017 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/Crypto/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/Flask-1.0.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/Flask-1.0.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | flask 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/Jinja2-2.10.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/Jinja2-2.10.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jinja2 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/Mako-1.0.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/Mako-1.0.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | mako 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/MarkupSafe-1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/MarkupSafe-1.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | markupsafe 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/Pygments-2.2.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/Pygments-2.2.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pygments 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/SQLAlchemy-1.2.12.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/SQLAlchemy-1.2.12.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | sqlalchemy 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/Werkzeug-0.14.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/Werkzeug-0.14.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | werkzeug 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/alembic-1.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/alembic-1.0.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | alembic 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/alembic/runtime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/alembic/templates/generic/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/alembic/templates/multidb/README: -------------------------------------------------------------------------------- 1 | Rudimentary multi-database configuration. -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/alembic/templates/pylons/README: -------------------------------------------------------------------------------- 1 | Configuration that reads from a Pylons project environment. -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/banal-0.3.7.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | UNKNOWN 2 | 3 | 4 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/banal-0.3.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/banal-0.3.7.dist-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/banal-0.3.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | banal 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/chardet-3.0.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/chardet-3.0.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | chardet 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/colorama-0.3.9.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/colorama-0.3.9.dist-info/pbr.json: -------------------------------------------------------------------------------- 1 | {"is_release": false, "git_version": "69e4069"} -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/colorama-0.3.9.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | colorama 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/dataset-1.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/dataset-1.1.0.dist-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/dataset-1.1.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | dataset 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/easy-install.pth: -------------------------------------------------------------------------------- 1 | ./capstone-3.0.5-py3.7.egg 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/frida-12.1.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/frida-12.1.2.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/frida_tools-1.2.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/frida_tools-1.2.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | frida_tools 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/frida_tools-1.2.1.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/frida_tools/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/itsdangerous-0.24.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/itsdangerous-0.24.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | itsdangerous 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/lz4-2.1.10.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/lz4-2.1.10.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | lz4 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/mako/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/normality-0.6.1.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | UNKNOWN 2 | 3 | 4 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/normality-0.6.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/normality-0.6.1.dist-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/normality-0.6.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | normality 2 | tests 3 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/normality-0.6.1.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/pip-10.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/pip-10.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/pip-19.0.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/pip-19.0.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2018.11.29" 4 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/prompt_toolkit-1.0.15.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/prompt_toolkit-1.0.15.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | prompt_toolkit 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/prompt_toolkit/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/prompt_toolkit/contrib/validators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/prompt_toolkit/eventloop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/prompt_toolkit/key_binding/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/prompt_toolkit/key_binding/bindings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/prompt_toolkit/terminal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/pycryptodome-3.8.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/pycryptodome-3.8.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | Crypto 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/pyserial-3.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/pyserial-3.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | serial 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/python_dateutil-2.7.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/python_dateutil-2.7.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | dateutil 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/python_dateutil-2.7.3.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/python_editor-1.0.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/python_editor-1.0.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | editor 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/pyusb-1.0.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/pyusb-1.0.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | usb 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/serial/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/serial/urlhandler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/setuptools-40.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/setuptools-40.0.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | easy_install 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/setuptools-40.0.0.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/setuptools-40.8.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/setuptools-40.8.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | easy_install 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/setuptools-40.8.0.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/six-1.11.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/six-1.11.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | six 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/sqlalchemy/testing/plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/termcolor-1.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/termcolor-1.1.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | termcolor 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/wcwidth-0.1.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/wcwidth-0.1.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | wcwidth 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/wcwidth-0.1.7.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/wcwidth/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """This file intentionally left blank.""" 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/wheel-0.31.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site-packages/wheel-0.31.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | wheel 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/site.py -------------------------------------------------------------------------------- /Tools/python37/Lib/smtpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/smtpd.py -------------------------------------------------------------------------------- /Tools/python37/Lib/smtplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/smtplib.py -------------------------------------------------------------------------------- /Tools/python37/Lib/sndhdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/sndhdr.py -------------------------------------------------------------------------------- /Tools/python37/Lib/socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/socket.py -------------------------------------------------------------------------------- /Tools/python37/Lib/socketserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/socketserver.py -------------------------------------------------------------------------------- /Tools/python37/Lib/sqlite3/dbapi2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/sqlite3/dbapi2.py -------------------------------------------------------------------------------- /Tools/python37/Lib/sqlite3/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/sqlite3/dump.py -------------------------------------------------------------------------------- /Tools/python37/Lib/sqlite3/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/sre_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/sre_compile.py -------------------------------------------------------------------------------- /Tools/python37/Lib/sre_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/sre_constants.py -------------------------------------------------------------------------------- /Tools/python37/Lib/sre_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/sre_parse.py -------------------------------------------------------------------------------- /Tools/python37/Lib/ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/ssl.py -------------------------------------------------------------------------------- /Tools/python37/Lib/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/stat.py -------------------------------------------------------------------------------- /Tools/python37/Lib/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/statistics.py -------------------------------------------------------------------------------- /Tools/python37/Lib/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/string.py -------------------------------------------------------------------------------- /Tools/python37/Lib/stringprep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/stringprep.py -------------------------------------------------------------------------------- /Tools/python37/Lib/struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/struct.py -------------------------------------------------------------------------------- /Tools/python37/Lib/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/subprocess.py -------------------------------------------------------------------------------- /Tools/python37/Lib/sunau.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/sunau.py -------------------------------------------------------------------------------- /Tools/python37/Lib/symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/symbol.py -------------------------------------------------------------------------------- /Tools/python37/Lib/symtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/symtable.py -------------------------------------------------------------------------------- /Tools/python37/Lib/sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/sysconfig.py -------------------------------------------------------------------------------- /Tools/python37/Lib/tabnanny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/tabnanny.py -------------------------------------------------------------------------------- /Tools/python37/Lib/tarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/tarfile.py -------------------------------------------------------------------------------- /Tools/python37/Lib/telnetlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/telnetlib.py -------------------------------------------------------------------------------- /Tools/python37/Lib/tempfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/tempfile.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/__main__.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/allsans.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/allsans.pem -------------------------------------------------------------------------------- /Tools/python37/Lib/test/audiotest.au: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/audiotest.au -------------------------------------------------------------------------------- /Tools/python37/Lib/test/autotest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/autotest.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/bad_coding.py: -------------------------------------------------------------------------------- 1 | # -*- coding: uft-8 -*- 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/bad_coding2.py: -------------------------------------------------------------------------------- 1 | #coding: utf8 2 | print('我') 3 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/badcert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/badcert.pem -------------------------------------------------------------------------------- /Tools/python37/Lib/test/badkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/badkey.pem -------------------------------------------------------------------------------- /Tools/python37/Lib/test/badsyntax_3131.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | € = 2 3 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/cfgparser.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/cfgparser.1 -------------------------------------------------------------------------------- /Tools/python37/Lib/test/cfgparser.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/cfgparser.2 -------------------------------------------------------------------------------- /Tools/python37/Lib/test/cfgparser.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/cfgparser.3 -------------------------------------------------------------------------------- /Tools/python37/Lib/test/cjkencodings/big5hkscs-utf8.txt: -------------------------------------------------------------------------------- 1 | 𠄌Ě鵮罓洆 2 | ÊÊ̄ê êê̄ 3 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/clinic.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/clinic.test -------------------------------------------------------------------------------- /Tools/python37/Lib/test/data/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/data/README -------------------------------------------------------------------------------- /Tools/python37/Lib/test/empty.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/empty.vbs -------------------------------------------------------------------------------- /Tools/python37/Lib/test/ffdh3072.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/ffdh3072.pem -------------------------------------------------------------------------------- /Tools/python37/Lib/test/final_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/final_a.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/final_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/final_b.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/fork_wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/fork_wait.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/idnsans.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/idnsans.pem -------------------------------------------------------------------------------- /Tools/python37/Lib/test/ieee754.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/ieee754.txt -------------------------------------------------------------------------------- /Tools/python37/Lib/test/imp_dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/imp_dummy.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/keycert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/keycert.pem -------------------------------------------------------------------------------- /Tools/python37/Lib/test/keycert2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/keycert2.pem -------------------------------------------------------------------------------- /Tools/python37/Lib/test/keycert3.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/keycert3.pem -------------------------------------------------------------------------------- /Tools/python37/Lib/test/keycert4.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/keycert4.pem -------------------------------------------------------------------------------- /Tools/python37/Lib/test/leakers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/mailcap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/mailcap.txt -------------------------------------------------------------------------------- /Tools/python37/Lib/test/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/mime.types -------------------------------------------------------------------------------- /Tools/python37/Lib/test/nokia.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/nokia.pem -------------------------------------------------------------------------------- /Tools/python37/Lib/test/nullcert.pem: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/profilee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/profilee.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/pstats.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/pstats.pck -------------------------------------------------------------------------------- /Tools/python37/Lib/test/pycacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/pycacert.pem -------------------------------------------------------------------------------- /Tools/python37/Lib/test/pycakey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/pycakey.pem -------------------------------------------------------------------------------- /Tools/python37/Lib/test/pydoc_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/pydoc_mod.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/randv3.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/randv3.pck -------------------------------------------------------------------------------- /Tools/python37/Lib/test/re_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/re_tests.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/regrtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/regrtest.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/relimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/relimport.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/reperf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/reperf.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/seq_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/seq_tests.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/sortperf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/sortperf.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/ssl_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/ssl_cert.pem -------------------------------------------------------------------------------- /Tools/python37/Lib/test/ssl_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/ssl_key.pem -------------------------------------------------------------------------------- /Tools/python37/Lib/test/ssltests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/ssltests.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_abc.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_aifc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_aifc.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_ast.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_bdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_bdb.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_bool.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_bz2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_bz2.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_call.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_capi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_capi.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_cgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_cgi.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_cmd.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_code.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_copy.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_csv.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_dbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_dbm.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_dict.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_dis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_dis.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_enum.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_eof.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_file.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_gc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_gc.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_gdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_gdb.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_glob.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_grp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_grp.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_gzip.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_hash.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_hmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_hmac.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_html.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_idle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_idle.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_imp.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_import/data/circular_imports/basic2.py: -------------------------------------------------------------------------------- 1 | from . import basic 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_import/data/circular_imports/subpkg/util.py: -------------------------------------------------------------------------------- 1 | def util(): 2 | pass 3 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_import/data/circular_imports/util.py: -------------------------------------------------------------------------------- 1 | def util(): 2 | pass 3 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_import/data/package/submodule.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_import/data/package2/submodule2.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/data01/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/data01/binary.file: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/data01/subdirectory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/data01/subdirectory/binary.file: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/data01/utf-8.file: -------------------------------------------------------------------------------- 1 | Hello, UTF-8 world! 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/data02/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/data02/one/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/data02/one/resource1.txt: -------------------------------------------------------------------------------- 1 | one resource 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/data02/two/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/data02/two/resource2.txt: -------------------------------------------------------------------------------- 1 | two resource 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/data03/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/data03/namespace/portion1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/data03/namespace/portion2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/data03/namespace/resource1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/namespace_pkgs/both_portions/foo/one.py: -------------------------------------------------------------------------------- 1 | attr = 'both_portions foo one' 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/namespace_pkgs/both_portions/foo/two.py: -------------------------------------------------------------------------------- 1 | attr = 'both_portions foo two' 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test.py: -------------------------------------------------------------------------------- 1 | attr = 'in module' 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/one.py: -------------------------------------------------------------------------------- 1 | attr = 'portion1 foo one' 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/namespace_pkgs/portion1/foo/one.py: -------------------------------------------------------------------------------- 1 | attr = 'portion1 foo one' 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/namespace_pkgs/portion2/foo/two.py: -------------------------------------------------------------------------------- 1 | attr = 'portion2 foo two' 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/namespace_pkgs/project1/parent/child/one.py: -------------------------------------------------------------------------------- 1 | attr = 'parent child one' 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/namespace_pkgs/project2/parent/child/two.py: -------------------------------------------------------------------------------- 1 | attr = 'parent child two' 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/namespace_pkgs/project3/parent/child/three.py: -------------------------------------------------------------------------------- 1 | attr = 'parent child three' 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/zipdata01/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_importlib/zipdata02/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_int.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_io.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_iter.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_list.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_long.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_long.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_lzma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_lzma.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_math.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_mmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_mmap.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_nis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_nis.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_os.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_pdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_pdb.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_pkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_pkg.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_poll.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_pow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_pow.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_pty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_pty.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_pwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_pwd.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_re.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_repl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_repl.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_sax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_sax.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_set.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_site.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_sort.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_spwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_spwd.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_ssl.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_stat.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_sys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_sys.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_tcl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_tcl.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_time.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_tix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_tix.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_tk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_tk.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_ucn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_ucn.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_uu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_uu.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_uuid.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_venv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_venv.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_wave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_wave.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_with.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_with.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/test_zlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/test_zlib.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/testcodec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/testcodec.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/testtar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/testtar.tar -------------------------------------------------------------------------------- /Tools/python37/Lib/test/xmltests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/xmltests.py -------------------------------------------------------------------------------- /Tools/python37/Lib/test/zipdir.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/test/zipdir.zip -------------------------------------------------------------------------------- /Tools/python37/Lib/textwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/textwrap.py -------------------------------------------------------------------------------- /Tools/python37/Lib/this.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/this.py -------------------------------------------------------------------------------- /Tools/python37/Lib/threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/threading.py -------------------------------------------------------------------------------- /Tools/python37/Lib/timeit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/timeit.py -------------------------------------------------------------------------------- /Tools/python37/Lib/tkinter/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/tkinter/dialog.py -------------------------------------------------------------------------------- /Tools/python37/Lib/tkinter/dnd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/tkinter/dnd.py -------------------------------------------------------------------------------- /Tools/python37/Lib/tkinter/font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/tkinter/font.py -------------------------------------------------------------------------------- /Tools/python37/Lib/tkinter/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/tkinter/test/test_tkinter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/tkinter/test/test_ttk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/tkinter/tix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/tkinter/tix.py -------------------------------------------------------------------------------- /Tools/python37/Lib/tkinter/ttk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/tkinter/ttk.py -------------------------------------------------------------------------------- /Tools/python37/Lib/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/token.py -------------------------------------------------------------------------------- /Tools/python37/Lib/tokenize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/tokenize.py -------------------------------------------------------------------------------- /Tools/python37/Lib/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/trace.py -------------------------------------------------------------------------------- /Tools/python37/Lib/traceback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/traceback.py -------------------------------------------------------------------------------- /Tools/python37/Lib/tracemalloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/tracemalloc.py -------------------------------------------------------------------------------- /Tools/python37/Lib/tty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/tty.py -------------------------------------------------------------------------------- /Tools/python37/Lib/turtle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/turtle.py -------------------------------------------------------------------------------- /Tools/python37/Lib/turtledemo/nim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/turtledemo/nim.py -------------------------------------------------------------------------------- /Tools/python37/Lib/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/types.py -------------------------------------------------------------------------------- /Tools/python37/Lib/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/typing.py -------------------------------------------------------------------------------- /Tools/python37/Lib/unittest/case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/unittest/case.py -------------------------------------------------------------------------------- /Tools/python37/Lib/unittest/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/unittest/main.py -------------------------------------------------------------------------------- /Tools/python37/Lib/unittest/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/unittest/mock.py -------------------------------------------------------------------------------- /Tools/python37/Lib/unittest/suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/unittest/suite.py -------------------------------------------------------------------------------- /Tools/python37/Lib/unittest/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/unittest/util.py -------------------------------------------------------------------------------- /Tools/python37/Lib/urllib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/python37/Lib/urllib/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/urllib/error.py -------------------------------------------------------------------------------- /Tools/python37/Lib/urllib/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/urllib/parse.py -------------------------------------------------------------------------------- /Tools/python37/Lib/urllib/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/urllib/request.py -------------------------------------------------------------------------------- /Tools/python37/Lib/uu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/uu.py -------------------------------------------------------------------------------- /Tools/python37/Lib/uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/uuid.py -------------------------------------------------------------------------------- /Tools/python37/Lib/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/warnings.py -------------------------------------------------------------------------------- /Tools/python37/Lib/wave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/wave.py -------------------------------------------------------------------------------- /Tools/python37/Lib/weakref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/weakref.py -------------------------------------------------------------------------------- /Tools/python37/Lib/webbrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/webbrowser.py -------------------------------------------------------------------------------- /Tools/python37/Lib/wsgiref/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/wsgiref/util.py -------------------------------------------------------------------------------- /Tools/python37/Lib/xdrlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/xdrlib.py -------------------------------------------------------------------------------- /Tools/python37/Lib/xml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/xml/__init__.py -------------------------------------------------------------------------------- /Tools/python37/Lib/xml/dom/domreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/xml/dom/domreg.py -------------------------------------------------------------------------------- /Tools/python37/Lib/xmlrpc/__init__.py: -------------------------------------------------------------------------------- 1 | # This directory is a Python package. 2 | -------------------------------------------------------------------------------- /Tools/python37/Lib/xmlrpc/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/xmlrpc/client.py -------------------------------------------------------------------------------- /Tools/python37/Lib/xmlrpc/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/xmlrpc/server.py -------------------------------------------------------------------------------- /Tools/python37/Lib/zipapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/zipapp.py -------------------------------------------------------------------------------- /Tools/python37/Lib/zipfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Lib/zipfile.py -------------------------------------------------------------------------------- /Tools/python37/NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/NEWS.txt -------------------------------------------------------------------------------- /Tools/python37/Scripts/alembic.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Scripts/alembic.exe -------------------------------------------------------------------------------- /Tools/python37/Scripts/flask.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Scripts/flask.exe -------------------------------------------------------------------------------- /Tools/python37/Scripts/frida-ps.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Scripts/frida-ps.exe -------------------------------------------------------------------------------- /Tools/python37/Scripts/frida.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Scripts/frida.exe -------------------------------------------------------------------------------- /Tools/python37/Scripts/miniterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Scripts/miniterm.py -------------------------------------------------------------------------------- /Tools/python37/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Scripts/pip.exe -------------------------------------------------------------------------------- /Tools/python37/Scripts/pip3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Scripts/pip3.7.exe -------------------------------------------------------------------------------- /Tools/python37/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Scripts/pip3.exe -------------------------------------------------------------------------------- /Tools/python37/Scripts/wheel.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Scripts/wheel.exe -------------------------------------------------------------------------------- /Tools/python37/Tools/demo/beer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Tools/demo/beer.py -------------------------------------------------------------------------------- /Tools/python37/Tools/demo/eiffel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Tools/demo/eiffel.py -------------------------------------------------------------------------------- /Tools/python37/Tools/demo/hanoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Tools/demo/hanoi.py -------------------------------------------------------------------------------- /Tools/python37/Tools/demo/life.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Tools/demo/life.py -------------------------------------------------------------------------------- /Tools/python37/Tools/demo/markov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Tools/demo/markov.py -------------------------------------------------------------------------------- /Tools/python37/Tools/demo/mcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Tools/demo/mcast.py -------------------------------------------------------------------------------- /Tools/python37/Tools/demo/queens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Tools/demo/queens.py -------------------------------------------------------------------------------- /Tools/python37/Tools/demo/redemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Tools/demo/redemo.py -------------------------------------------------------------------------------- /Tools/python37/Tools/demo/rpython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Tools/demo/rpython.py -------------------------------------------------------------------------------- /Tools/python37/Tools/demo/ss1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Tools/demo/ss1.py -------------------------------------------------------------------------------- /Tools/python37/Tools/demo/vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Tools/demo/vector.py -------------------------------------------------------------------------------- /Tools/python37/Tools/i18n/msgfmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Tools/i18n/msgfmt.py -------------------------------------------------------------------------------- /Tools/python37/Tools/pynche/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Tools/pynche/Main.py -------------------------------------------------------------------------------- /Tools/python37/Tools/pynche/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /Tools/python37/Tools/scripts/2to3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Tools/scripts/2to3.py -------------------------------------------------------------------------------- /Tools/python37/Tools/scripts/crlf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Tools/scripts/crlf.py -------------------------------------------------------------------------------- /Tools/python37/Tools/scripts/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Tools/scripts/diff.py -------------------------------------------------------------------------------- /Tools/python37/Tools/scripts/h2py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Tools/scripts/h2py.py -------------------------------------------------------------------------------- /Tools/python37/Tools/scripts/lfcr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Tools/scripts/lfcr.py -------------------------------------------------------------------------------- /Tools/python37/Tools/scripts/lll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Tools/scripts/lll.py -------------------------------------------------------------------------------- /Tools/python37/Tools/scripts/suff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/Tools/scripts/suff.py -------------------------------------------------------------------------------- /Tools/python37/include/Python-ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/Python-ast.h -------------------------------------------------------------------------------- /Tools/python37/include/Python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/Python.h -------------------------------------------------------------------------------- /Tools/python37/include/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/abstract.h -------------------------------------------------------------------------------- /Tools/python37/include/accu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/accu.h -------------------------------------------------------------------------------- /Tools/python37/include/asdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/asdl.h -------------------------------------------------------------------------------- /Tools/python37/include/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/ast.h -------------------------------------------------------------------------------- /Tools/python37/include/bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/bitset.h -------------------------------------------------------------------------------- /Tools/python37/include/bltinmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/bltinmodule.h -------------------------------------------------------------------------------- /Tools/python37/include/boolobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/boolobject.h -------------------------------------------------------------------------------- /Tools/python37/include/bytesobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/bytesobject.h -------------------------------------------------------------------------------- /Tools/python37/include/cellobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/cellobject.h -------------------------------------------------------------------------------- /Tools/python37/include/ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/ceval.h -------------------------------------------------------------------------------- /Tools/python37/include/classobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/classobject.h -------------------------------------------------------------------------------- /Tools/python37/include/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/code.h -------------------------------------------------------------------------------- /Tools/python37/include/codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/codecs.h -------------------------------------------------------------------------------- /Tools/python37/include/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/compile.h -------------------------------------------------------------------------------- /Tools/python37/include/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/context.h -------------------------------------------------------------------------------- /Tools/python37/include/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/datetime.h -------------------------------------------------------------------------------- /Tools/python37/include/descrobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/descrobject.h -------------------------------------------------------------------------------- /Tools/python37/include/dictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/dictobject.h -------------------------------------------------------------------------------- /Tools/python37/include/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/dtoa.h -------------------------------------------------------------------------------- /Tools/python37/include/enumobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/enumobject.h -------------------------------------------------------------------------------- /Tools/python37/include/errcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/errcode.h -------------------------------------------------------------------------------- /Tools/python37/include/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/eval.h -------------------------------------------------------------------------------- /Tools/python37/include/fileobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/fileobject.h -------------------------------------------------------------------------------- /Tools/python37/include/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/fileutils.h -------------------------------------------------------------------------------- /Tools/python37/include/floatobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/floatobject.h -------------------------------------------------------------------------------- /Tools/python37/include/frameobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/frameobject.h -------------------------------------------------------------------------------- /Tools/python37/include/funcobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/funcobject.h -------------------------------------------------------------------------------- /Tools/python37/include/genobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/genobject.h -------------------------------------------------------------------------------- /Tools/python37/include/graminit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/graminit.h -------------------------------------------------------------------------------- /Tools/python37/include/grammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/grammar.h -------------------------------------------------------------------------------- /Tools/python37/include/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/import.h -------------------------------------------------------------------------------- /Tools/python37/include/intrcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/intrcheck.h -------------------------------------------------------------------------------- /Tools/python37/include/iterobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/iterobject.h -------------------------------------------------------------------------------- /Tools/python37/include/listobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/listobject.h -------------------------------------------------------------------------------- /Tools/python37/include/longintrepr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/longintrepr.h -------------------------------------------------------------------------------- /Tools/python37/include/longobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/longobject.h -------------------------------------------------------------------------------- /Tools/python37/include/marshal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/marshal.h -------------------------------------------------------------------------------- /Tools/python37/include/metagrammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/metagrammar.h -------------------------------------------------------------------------------- /Tools/python37/include/modsupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/modsupport.h -------------------------------------------------------------------------------- /Tools/python37/include/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/node.h -------------------------------------------------------------------------------- /Tools/python37/include/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/object.h -------------------------------------------------------------------------------- /Tools/python37/include/objimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/objimpl.h -------------------------------------------------------------------------------- /Tools/python37/include/odictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/odictobject.h -------------------------------------------------------------------------------- /Tools/python37/include/opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/opcode.h -------------------------------------------------------------------------------- /Tools/python37/include/osdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/osdefs.h -------------------------------------------------------------------------------- /Tools/python37/include/osmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/osmodule.h -------------------------------------------------------------------------------- /Tools/python37/include/parsetok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/parsetok.h -------------------------------------------------------------------------------- /Tools/python37/include/patchlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/patchlevel.h -------------------------------------------------------------------------------- /Tools/python37/include/pgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pgen.h -------------------------------------------------------------------------------- /Tools/python37/include/pgenheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pgenheaders.h -------------------------------------------------------------------------------- /Tools/python37/include/py_curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/py_curses.h -------------------------------------------------------------------------------- /Tools/python37/include/pyarena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pyarena.h -------------------------------------------------------------------------------- /Tools/python37/include/pyatomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pyatomic.h -------------------------------------------------------------------------------- /Tools/python37/include/pycapsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pycapsule.h -------------------------------------------------------------------------------- /Tools/python37/include/pyconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pyconfig.h -------------------------------------------------------------------------------- /Tools/python37/include/pyctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pyctype.h -------------------------------------------------------------------------------- /Tools/python37/include/pydebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pydebug.h -------------------------------------------------------------------------------- /Tools/python37/include/pydtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pydtrace.h -------------------------------------------------------------------------------- /Tools/python37/include/pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pyerrors.h -------------------------------------------------------------------------------- /Tools/python37/include/pyexpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pyexpat.h -------------------------------------------------------------------------------- /Tools/python37/include/pyfpe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pyfpe.h -------------------------------------------------------------------------------- /Tools/python37/include/pyhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pyhash.h -------------------------------------------------------------------------------- /Tools/python37/include/pylifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pylifecycle.h -------------------------------------------------------------------------------- /Tools/python37/include/pymacconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pymacconfig.h -------------------------------------------------------------------------------- /Tools/python37/include/pymacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pymacro.h -------------------------------------------------------------------------------- /Tools/python37/include/pymath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pymath.h -------------------------------------------------------------------------------- /Tools/python37/include/pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pymem.h -------------------------------------------------------------------------------- /Tools/python37/include/pyport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pyport.h -------------------------------------------------------------------------------- /Tools/python37/include/pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pystate.h -------------------------------------------------------------------------------- /Tools/python37/include/pystrcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pystrcmp.h -------------------------------------------------------------------------------- /Tools/python37/include/pystrhex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pystrhex.h -------------------------------------------------------------------------------- /Tools/python37/include/pystrtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pystrtod.h -------------------------------------------------------------------------------- /Tools/python37/include/pythonrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pythonrun.h -------------------------------------------------------------------------------- /Tools/python37/include/pythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pythread.h -------------------------------------------------------------------------------- /Tools/python37/include/pytime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/pytime.h -------------------------------------------------------------------------------- /Tools/python37/include/rangeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/rangeobject.h -------------------------------------------------------------------------------- /Tools/python37/include/setobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/setobject.h -------------------------------------------------------------------------------- /Tools/python37/include/sliceobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/sliceobject.h -------------------------------------------------------------------------------- /Tools/python37/include/structseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/structseq.h -------------------------------------------------------------------------------- /Tools/python37/include/symtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/symtable.h -------------------------------------------------------------------------------- /Tools/python37/include/sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/sysmodule.h -------------------------------------------------------------------------------- /Tools/python37/include/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/token.h -------------------------------------------------------------------------------- /Tools/python37/include/traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/traceback.h -------------------------------------------------------------------------------- /Tools/python37/include/ucnhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/ucnhash.h -------------------------------------------------------------------------------- /Tools/python37/include/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/include/warnings.h -------------------------------------------------------------------------------- /Tools/python37/libs/_tkinter.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/libs/_tkinter.lib -------------------------------------------------------------------------------- /Tools/python37/libs/libpython37.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/libs/libpython37.a -------------------------------------------------------------------------------- /Tools/python37/libs/python3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/libs/python3.lib -------------------------------------------------------------------------------- /Tools/python37/libs/python37.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/libs/python37.lib -------------------------------------------------------------------------------- /Tools/python37/libssl-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/libssl-1_1-x64.dll -------------------------------------------------------------------------------- /Tools/python37/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/python.exe -------------------------------------------------------------------------------- /Tools/python37/python3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/python3.dll -------------------------------------------------------------------------------- /Tools/python37/python37.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/python37.dll -------------------------------------------------------------------------------- /Tools/python37/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/pythonw.exe -------------------------------------------------------------------------------- /Tools/python37/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/sqlite3.dll -------------------------------------------------------------------------------- /Tools/python37/tcl/nmake/rules.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/tcl/nmake/rules.vc -------------------------------------------------------------------------------- /Tools/python37/tcl/tcl8.6/tm.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/tcl/tcl8.6/tm.tcl -------------------------------------------------------------------------------- /Tools/python37/tcl/tcl86t.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/tcl/tcl86t.lib -------------------------------------------------------------------------------- /Tools/python37/tcl/tclConfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/tcl/tclConfig.sh -------------------------------------------------------------------------------- /Tools/python37/tcl/tclooConfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/tcl/tclooConfig.sh -------------------------------------------------------------------------------- /Tools/python37/tcl/tclstub86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/tcl/tclstub86.lib -------------------------------------------------------------------------------- /Tools/python37/tcl/tk8.6/menu.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/tcl/tk8.6/menu.tcl -------------------------------------------------------------------------------- /Tools/python37/tcl/tk8.6/tclIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/tcl/tk8.6/tclIndex -------------------------------------------------------------------------------- /Tools/python37/tcl/tk8.6/text.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/tcl/tk8.6/text.tcl -------------------------------------------------------------------------------- /Tools/python37/tcl/tk8.6/tk.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/tcl/tk8.6/tk.tcl -------------------------------------------------------------------------------- /Tools/python37/tcl/tk86t.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/tcl/tk86t.lib -------------------------------------------------------------------------------- /Tools/python37/tcl/tkstub86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/tcl/tkstub86.lib -------------------------------------------------------------------------------- /Tools/python37/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/python37/vcruntime140.dll -------------------------------------------------------------------------------- /Tools/tar.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/Tools/tar.exe -------------------------------------------------------------------------------- /install_adb_key.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/install_adb_key.cmd -------------------------------------------------------------------------------- /install_adb_key.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/install_adb_key.sh -------------------------------------------------------------------------------- /makeramdisk.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/makeramdisk.cmd -------------------------------------------------------------------------------- /makeramdisk.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | python3 root/scripts/makeramdisk.py "$@" 3 | -------------------------------------------------------------------------------- /push_bruteforcer.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/push_bruteforcer.cmd -------------------------------------------------------------------------------- /push_bruteforcer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/push_bruteforcer.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/requirements.txt -------------------------------------------------------------------------------- /root/.android/adb_keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/.android/adb_keys -------------------------------------------------------------------------------- /root/.android/adbkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/.android/adbkey -------------------------------------------------------------------------------- /root/.android/adbkey.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/.android/adbkey.pub -------------------------------------------------------------------------------- /root/keys/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/keys/data.json -------------------------------------------------------------------------------- /root/keys/keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/keys/keys.json -------------------------------------------------------------------------------- /root/other/32Bit/supolicy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/other/32Bit/supolicy -------------------------------------------------------------------------------- /root/other/64Bit/strace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/other/64Bit/strace -------------------------------------------------------------------------------- /root/other/64Bit/strace_static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/other/64Bit/strace_static -------------------------------------------------------------------------------- /root/other/64Bit/supolicy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/other/64Bit/supolicy -------------------------------------------------------------------------------- /root/other/BootSignature.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/other/BootSignature.jar -------------------------------------------------------------------------------- /root/other/SEANDROIDENFORCE: -------------------------------------------------------------------------------- 1 | SEANDROIDENFORCE -------------------------------------------------------------------------------- /root/other/adbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/other/adbd -------------------------------------------------------------------------------- /root/other/applypatch.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/other/applypatch.tar -------------------------------------------------------------------------------- /root/other/b64xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/other/b64xz -------------------------------------------------------------------------------- /root/other/bruteforce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/other/bruteforce -------------------------------------------------------------------------------- /root/other/bsdiff.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/other/bsdiff.exe -------------------------------------------------------------------------------- /root/other/busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/other/busybox -------------------------------------------------------------------------------- /root/other/checkadb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/other/checkadb.sh -------------------------------------------------------------------------------- /root/other/imgdiff.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/other/imgdiff.exe -------------------------------------------------------------------------------- /root/other/imgdiff2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/other/imgdiff2.exe -------------------------------------------------------------------------------- /root/other/init.checkadb.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/other/init.checkadb.rc -------------------------------------------------------------------------------- /root/other/listen_tcpdump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/other/listen_tcpdump.sh -------------------------------------------------------------------------------- /root/other/magisk/init.magisk.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/other/magisk/init.magisk.rc -------------------------------------------------------------------------------- /root/other/magisk/magisk32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/other/magisk/magisk32 -------------------------------------------------------------------------------- /root/other/magisk/magisk64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/other/magisk/magisk64 -------------------------------------------------------------------------------- /root/other/run_tcpdump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/other/run_tcpdump.sh -------------------------------------------------------------------------------- /root/other/sign.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/other/sign.cmd -------------------------------------------------------------------------------- /root/other/sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/other/sign.sh -------------------------------------------------------------------------------- /root/other/tcpdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/other/tcpdump -------------------------------------------------------------------------------- /root/other/tcpdump_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/other/tcpdump_run.sh -------------------------------------------------------------------------------- /root/rootshell/enable_adb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/rootshell/enable_adb.sh -------------------------------------------------------------------------------- /root/rootshell/init.shell.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/rootshell/init.shell.rc -------------------------------------------------------------------------------- /root/rootshell/root_hack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/rootshell/root_hack.sh -------------------------------------------------------------------------------- /root/rootshell/rootshell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/rootshell/rootshell.sh -------------------------------------------------------------------------------- /root/scripts/BootSignature.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/scripts/BootSignature.jar -------------------------------------------------------------------------------- /root/scripts/Library/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/scripts/Library/avbtool3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/scripts/Library/avbtool3.py -------------------------------------------------------------------------------- /root/scripts/Library/direntry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/scripts/Library/direntry.py -------------------------------------------------------------------------------- /root/scripts/Library/ext4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/scripts/Library/ext4.py -------------------------------------------------------------------------------- /root/scripts/Library/libavb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/scripts/Library/libavb.py -------------------------------------------------------------------------------- /root/scripts/Library/lz4decomp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/scripts/Library/lz4decomp.py -------------------------------------------------------------------------------- /root/scripts/Library/sdat2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/scripts/Library/sdat2img.py -------------------------------------------------------------------------------- /root/scripts/Library/simg2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/scripts/Library/simg2img.py -------------------------------------------------------------------------------- /root/scripts/Library/structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/scripts/Library/structs.py -------------------------------------------------------------------------------- /root/scripts/Library/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/scripts/Library/utils.py -------------------------------------------------------------------------------- /root/scripts/bootimg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/scripts/bootimg -------------------------------------------------------------------------------- /root/scripts/bootimg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/scripts/bootimg.exe -------------------------------------------------------------------------------- /root/scripts/bootimg_140.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/scripts/bootimg_140.exe -------------------------------------------------------------------------------- /root/scripts/bootsignature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/scripts/bootsignature.py -------------------------------------------------------------------------------- /root/scripts/brotli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/scripts/brotli -------------------------------------------------------------------------------- /root/scripts/busybox.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/scripts/busybox.exe -------------------------------------------------------------------------------- /root/scripts/lz4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/scripts/lz4.exe -------------------------------------------------------------------------------- /root/scripts/makeramdisk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/scripts/makeramdisk.py -------------------------------------------------------------------------------- /root/scripts/nc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/scripts/nc.exe -------------------------------------------------------------------------------- /root/scripts/repack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/scripts/repack.sh -------------------------------------------------------------------------------- /root/scripts/sign.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/scripts/sign.bat -------------------------------------------------------------------------------- /root/scripts/unpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/scripts/unpack.sh -------------------------------------------------------------------------------- /root/scripts/xz.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/root/scripts/xz.exe -------------------------------------------------------------------------------- /run_rootshell.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/run_rootshell.cmd -------------------------------------------------------------------------------- /run_rootshell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/run_rootshell.sh -------------------------------------------------------------------------------- /setenv.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/setenv.cmd -------------------------------------------------------------------------------- /src/bootimg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/.gitignore -------------------------------------------------------------------------------- /src/bootimg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/LICENSE -------------------------------------------------------------------------------- /src/bootimg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/README.md -------------------------------------------------------------------------------- /src/bootimg/include/apol/bst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/include/apol/bst.h -------------------------------------------------------------------------------- /src/bootimg/include/apol/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/include/apol/policy.h -------------------------------------------------------------------------------- /src/bootimg/include/apol/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/include/apol/render.h -------------------------------------------------------------------------------- /src/bootimg/include/apol/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/include/apol/util.h -------------------------------------------------------------------------------- /src/bootimg/include/apol/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/include/apol/vector.h -------------------------------------------------------------------------------- /src/bootimg/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/include/config.h -------------------------------------------------------------------------------- /src/bootimg/include/qpol/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/include/qpol/module.h -------------------------------------------------------------------------------- /src/bootimg/include/qpol/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/include/qpol/policy.h -------------------------------------------------------------------------------- /src/bootimg/include/qpol/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/include/qpol/util.h -------------------------------------------------------------------------------- /src/bootimg/include/sys/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/include/sys/cdefs.h -------------------------------------------------------------------------------- /src/bootimg/libsepol/.qmake.stash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/.qmake.stash -------------------------------------------------------------------------------- /src/bootimg/libsepol/assertion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/assertion.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/avtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/avtab.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/booleans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/booleans.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/constraint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/constraint.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/context.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/context.h -------------------------------------------------------------------------------- /src/bootimg/libsepol/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/debug.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/debug.h -------------------------------------------------------------------------------- /src/bootimg/libsepol/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/dso.h -------------------------------------------------------------------------------- /src/bootimg/libsepol/ebitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/ebitmap.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/expand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/expand.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/genbools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/genbools.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/genusers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/genusers.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/handle.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/handle.h -------------------------------------------------------------------------------- /src/bootimg/libsepol/hashtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/hashtab.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/hierarchy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/hierarchy.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/ibendports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/ibendports.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/ibpkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/ibpkeys.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/interfaces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/interfaces.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/kernel_to_cil.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/bootimg/libsepol/kernel_to_conf.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/bootimg/libsepol/libsepol.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/libsepol.pro -------------------------------------------------------------------------------- /src/bootimg/libsepol/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/link.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/mls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/mls.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/mls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/mls.h -------------------------------------------------------------------------------- /src/bootimg/libsepol/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/module.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/nodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/nodes.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/polcaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/polcaps.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/policydb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/policydb.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/ports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/ports.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/private.h -------------------------------------------------------------------------------- /src/bootimg/libsepol/roles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/roles.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/sepol/ibpkeys.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/bootimg/libsepol/services.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/services.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/sidtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/sidtab.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/symtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/symtab.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/users.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/users.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/util.c -------------------------------------------------------------------------------- /src/bootimg/libsepol/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/libsepol/write.c -------------------------------------------------------------------------------- /src/bootimg/sepolicy@0644: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/sepolicy@0644 -------------------------------------------------------------------------------- /src/bootimg/src/.qmake.stash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/src/.qmake.stash -------------------------------------------------------------------------------- /src/bootimg/src/bootimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/src/bootimg.h -------------------------------------------------------------------------------- /src/bootimg/src/bootimg.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/src/bootimg.pro -------------------------------------------------------------------------------- /src/bootimg/src/dtbinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/src/dtbinfo.c -------------------------------------------------------------------------------- /src/bootimg/src/fctxinject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/src/fctxinject.c -------------------------------------------------------------------------------- /src/bootimg/src/fs-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/src/fs-config.c -------------------------------------------------------------------------------- /src/bootimg/src/getarch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/src/getarch.c -------------------------------------------------------------------------------- /src/bootimg/src/hexpatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/src/hexpatch.c -------------------------------------------------------------------------------- /src/bootimg/src/keycheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/src/keycheck.c -------------------------------------------------------------------------------- /src/bootimg/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/src/main.c -------------------------------------------------------------------------------- /src/bootimg/src/mkimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/src/mkimg.c -------------------------------------------------------------------------------- /src/bootimg/src/mkinitfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/src/mkinitfs.c -------------------------------------------------------------------------------- /src/bootimg/src/offsetof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/src/offsetof.c -------------------------------------------------------------------------------- /src/bootimg/src/readta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/src/readta.c -------------------------------------------------------------------------------- /src/bootimg/src/replace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/src/replace.c -------------------------------------------------------------------------------- /src/bootimg/src/seinject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/src/seinject.c -------------------------------------------------------------------------------- /src/bootimg/src/sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/src/sha.c -------------------------------------------------------------------------------- /src/bootimg/src/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/src/sha.h -------------------------------------------------------------------------------- /src/bootimg/src/unpackelf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/src/unpackelf.c -------------------------------------------------------------------------------- /src/bootimg/src/unpackimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/src/unpackimg.c -------------------------------------------------------------------------------- /src/bootimg/src/unpackinitfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/src/unpackinitfs.c -------------------------------------------------------------------------------- /src/bootimg/src/xattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/src/xattr.c -------------------------------------------------------------------------------- /src/bootimg/src/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/src/bootimg/src/zip.c -------------------------------------------------------------------------------- /su.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/su.cmd -------------------------------------------------------------------------------- /su.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/su.sh -------------------------------------------------------------------------------- /verify_signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkerler/android_universal/HEAD/verify_signature.py --------------------------------------------------------------------------------