├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug.md │ ├── config.yml │ ├── crash.md │ ├── documentation.md │ └── feature.md ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md ├── dependabot.yml ├── problem-matchers │ ├── gcc.json │ └── msvc.json └── workflows │ └── main.yml ├── .gitignore ├── .mailmap ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── Doc ├── _static │ └── og-image.png ├── c-api │ ├── frame.rst │ └── hash.rst ├── constraints.txt ├── data │ ├── python3.11.abi │ └── stable_abi.dat ├── howto │ ├── annotations.rst │ ├── enum.rst │ ├── gdb_helpers.rst │ └── isolating-extensions.rst ├── includes │ └── wasm-notavail.rst ├── library │ ├── asyncio-extending.rst │ ├── asyncio-runner.rst │ ├── cmdline.rst │ ├── importlib.resources.abc.rst │ ├── importlib.resources.rst │ ├── sys_path_init.rst │ └── tomllib.rst ├── requirements-oldest-sphinx.txt ├── tools │ ├── .nitignore │ ├── extensions │ │ └── glossary_search.py │ └── templates │ │ └── search.html ├── using │ └── configure.rst └── whatsnew │ ├── 3.10.rst │ └── 3.11.rst ├── Embedded ├── .gitignore └── np_embed.c ├── Grammar ├── Tokens └── python.gram ├── Include ├── Python.h ├── README.rst ├── abstract.h ├── bltinmodule.h ├── boolobject.h ├── bytearrayobject.h ├── bytesobject.h ├── ceval.h ├── codecs.h ├── compile.h ├── complexobject.h ├── cpython │ ├── abstract.h │ ├── bytearrayobject.h │ ├── bytesobject.h │ ├── cellobject.h │ ├── ceval.h │ ├── classobject.h │ ├── code.h │ ├── compile.h │ ├── complexobject.h │ ├── context.h │ ├── descrobject.h │ ├── dictobject.h │ ├── fileobject.h │ ├── fileutils.h │ ├── floatobject.h │ ├── frameobject.h │ ├── funcobject.h │ ├── genobject.h │ ├── import.h │ ├── initconfig.h │ ├── listobject.h │ ├── longintrepr.h │ ├── longobject.h │ ├── methodobject.h │ ├── modsupport.h │ ├── object.h │ ├── objimpl.h │ ├── odictobject.h │ ├── picklebufobject.h │ ├── pthread_stubs.h │ ├── pyctype.h │ ├── pydebug.h │ ├── pyerrors.h │ ├── pyfpe.h │ ├── pyframe.h │ ├── pylifecycle.h │ ├── pymem.h │ ├── pystate.h │ ├── pythonrun.h │ ├── pythread.h │ ├── pytime.h │ ├── setobject.h │ ├── sysmodule.h │ ├── traceback.h │ ├── tupleobject.h │ ├── unicodeobject.h │ ├── warnings.h │ └── weakrefobject.h ├── datetime.h ├── descrobject.h ├── dictobject.h ├── dynamic_annotations.h ├── enumobject.h ├── errcode.h ├── exports.h ├── fileobject.h ├── fileutils.h ├── floatobject.h ├── frameobject.h ├── genericaliasobject.h ├── import.h ├── internal │ ├── pycore_abstract.h │ ├── pycore_accu.h │ ├── pycore_asdl.h │ ├── pycore_ast.h │ ├── pycore_ast_state.h │ ├── pycore_atomic.h │ ├── pycore_atomic_funcs.h │ ├── pycore_bitutils.h │ ├── pycore_blocks_output_buffer.h │ ├── pycore_bytes_methods.h │ ├── pycore_bytesobject.h │ ├── pycore_call.h │ ├── pycore_ceval.h │ ├── pycore_code.h │ ├── pycore_compile.h │ ├── pycore_condvar.h │ ├── pycore_context.h │ ├── pycore_dict.h │ ├── pycore_dtoa.h │ ├── pycore_emscripten_signal.h │ ├── pycore_exceptions.h │ ├── pycore_fileutils.h │ ├── pycore_floatobject.h │ ├── pycore_format.h │ ├── pycore_frame.h │ ├── pycore_function.h │ ├── pycore_gc.h │ ├── pycore_genobject.h │ ├── pycore_getopt.h │ ├── pycore_gil.h │ ├── pycore_global_objects.h │ ├── pycore_global_strings.h │ ├── pycore_hamt.h │ ├── pycore_hashtable.h │ ├── pycore_import.h │ ├── pycore_initconfig.h │ ├── pycore_interp.h │ ├── pycore_interpreteridobject.h │ ├── pycore_list.h │ ├── pycore_long.h │ ├── pycore_moduleobject.h │ ├── pycore_namespace.h │ ├── pycore_object.h │ ├── pycore_opcode.h │ ├── pycore_parser.h │ ├── pycore_pathconfig.h │ ├── pycore_pyarena.h │ ├── pycore_pyerrors.h │ ├── pycore_pyhash.h │ ├── pycore_pylifecycle.h │ ├── pycore_pymath.h │ ├── pycore_pymem.h │ ├── pycore_pystate.h │ ├── pycore_runtime.h │ ├── pycore_runtime_init.h │ ├── pycore_signal.h │ ├── pycore_sliceobject.h │ ├── pycore_strhex.h │ ├── pycore_structseq.h │ ├── pycore_symtable.h │ ├── pycore_sysmodule.h │ ├── pycore_traceback.h │ ├── pycore_tuple.h │ ├── pycore_typeobject.h │ ├── pycore_ucnhash.h │ ├── pycore_unicodeobject.h │ ├── pycore_unionobject.h │ └── pycore_warnings.h ├── intrcheck.h ├── iterobject.h ├── listobject.h ├── longobject.h ├── marshal.h ├── memoryobject.h ├── methodobject.h ├── modsupport.h ├── moduleobject.h ├── np_embed.h ├── object.h ├── objimpl.h ├── opcode.h ├── osdefs.h ├── osmodule.h ├── patchlevel.h ├── pathcch.private.h ├── py_curses.h ├── pybuffer.h ├── pycapsule.h ├── pydtrace.d ├── pydtrace.h ├── pyerrors.h ├── pyexpat.h ├── pyframe.h ├── pyhash.h ├── pylifecycle.h ├── pymacconfig.h ├── pymacro.h ├── pymath.h ├── pymem.h ├── pyport.h ├── pystate.h ├── pystrcmp.h ├── pystrtod.h ├── pythonrun.h ├── pythread.h ├── pytypedefs.h ├── rangeobject.h ├── setobject.h ├── sliceobject.h ├── staticinit.h ├── structmember.h ├── structseq.h ├── sysmodule.h ├── token.h ├── traceback.h ├── tracemalloc.h ├── tupleobject.h ├── typeslots.h ├── unicodeobject.h ├── warnings.h └── weakrefobject.h ├── LICENSE ├── Lib ├── __future__.py ├── __hello__.py ├── __init__.py ├── __np__ │ ├── __init__.py │ ├── common.py │ ├── darwin.py │ ├── linux.py │ ├── metabuild.py │ ├── packaging.py │ ├── tools │ │ ├── extract_ar.py │ │ └── rename_init.py │ └── windows.py ├── __phello__ │ ├── __init__.py │ ├── ham │ │ ├── __init__.py │ │ └── eggs.py │ └── spam.py ├── _aix_support.py ├── _bootsubprocess.py ├── _collections_abc.py ├── _compat_pickle.py ├── _compression.py ├── _markupbase.py ├── _osx_support.py ├── _py_abc.py ├── _pydecimal.py ├── _pyio.py ├── _sitebuiltins.py ├── _strptime.py ├── _threading_local.py ├── _weakrefset.py ├── abc.py ├── aifc.py ├── antigravity.py ├── argparse.py ├── ast.py ├── asynchat.py ├── asyncio │ ├── __init__.py │ ├── __main__.py │ ├── base_events.py │ ├── base_futures.py │ ├── base_subprocess.py │ ├── base_tasks.py │ ├── constants.py │ ├── coroutines.py │ ├── events.py │ ├── exceptions.py │ ├── format_helpers.py │ ├── futures.py │ ├── locks.py │ ├── log.py │ ├── mixins.py │ ├── proactor_events.py │ ├── protocols.py │ ├── queues.py │ ├── runners.py │ ├── selector_events.py │ ├── sslproto.py │ ├── staggered.py │ ├── streams.py │ ├── subprocess.py │ ├── taskgroups.py │ ├── tasks.py │ ├── threads.py │ ├── timeouts.py │ ├── transports.py │ ├── trsock.py │ ├── unix_events.py │ ├── windows_events.py │ └── windows_utils.py ├── asyncore.py ├── base64.py ├── bdb.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_rpm.py │ │ ├── build.py │ │ ├── build_clib.py │ │ ├── build_ext.py │ │ ├── build_py.py │ │ ├── build_scripts.py │ │ ├── check.py │ │ ├── clean.py │ │ ├── command_template │ │ ├── config.py │ │ ├── install.py │ │ ├── install_data.py │ │ ├── install_egg_info.py │ │ ├── install_headers.py │ │ ├── install_lib.py │ │ ├── install_scripts.py │ │ ├── register.py │ │ ├── sdist.py │ │ └── upload.py │ ├── config.py │ ├── core.py │ ├── cygwinccompiler.py │ ├── debug.py │ ├── dep_util.py │ ├── dir_util.py │ ├── dist.py │ ├── errors.py │ ├── extension.py │ ├── fancy_getopt.py │ ├── file_util.py │ ├── filelist.py │ ├── log.py │ ├── msvc9compiler.py │ ├── msvccompiler.py │ ├── spawn.py │ ├── sysconfig.py │ ├── tests │ │ ├── Setup.sample │ │ ├── __init__.py │ │ ├── includetest.rst │ │ ├── support.py │ │ ├── test_archive_util.py │ │ ├── test_bdist.py │ │ ├── test_bdist_dumb.py │ │ ├── test_bdist_rpm.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 ├── email │ ├── __init__.py │ ├── _encoded_words.py │ ├── _header_value_parser.py │ ├── _parseaddr.py │ ├── _policybase.py │ ├── architecture.rst │ ├── base64mime.py │ ├── charset.py │ ├── contentmanager.py │ ├── encoders.py │ ├── errors.py │ ├── feedparser.py │ ├── generator.py │ ├── header.py │ ├── headerregistry.py │ ├── iterators.py │ ├── message.py │ ├── mime │ │ ├── __init__.py │ │ ├── application.py │ │ ├── audio.py │ │ ├── base.py │ │ ├── image.py │ │ ├── message.py │ │ ├── multipart.py │ │ ├── nonmultipart.py │ │ └── text.py │ ├── parser.py │ ├── policy.py │ ├── quoprimime.py │ └── utils.py ├── encodings │ ├── __init__.py │ ├── aliases.py │ ├── ascii.py │ ├── base64_codec.py │ ├── big5.py │ ├── big5hkscs.py │ ├── bz2_codec.py │ ├── charmap.py │ ├── cp037.py │ ├── cp1006.py │ ├── cp1026.py │ ├── cp1125.py │ ├── cp1140.py │ ├── cp1250.py │ ├── cp1251.py │ ├── cp1252.py │ ├── cp1253.py │ ├── cp1254.py │ ├── cp1255.py │ ├── cp1256.py │ ├── cp1257.py │ ├── cp1258.py │ ├── cp273.py │ ├── cp424.py │ ├── cp437.py │ ├── cp500.py │ ├── cp720.py │ ├── cp737.py │ ├── cp775.py │ ├── cp850.py │ ├── cp852.py │ ├── cp855.py │ ├── cp856.py │ ├── cp857.py │ ├── cp858.py │ ├── cp860.py │ ├── cp861.py │ ├── cp862.py │ ├── cp863.py │ ├── cp864.py │ ├── cp865.py │ ├── cp866.py │ ├── cp869.py │ ├── cp874.py │ ├── cp875.py │ ├── cp932.py │ ├── cp949.py │ ├── cp950.py │ ├── euc_jis_2004.py │ ├── euc_jisx0213.py │ ├── euc_jp.py │ ├── euc_kr.py │ ├── gb18030.py │ ├── gb2312.py │ ├── gbk.py │ ├── hex_codec.py │ ├── hp_roman8.py │ ├── hz.py │ ├── idna.py │ ├── iso2022_jp.py │ ├── iso2022_jp_1.py │ ├── iso2022_jp_2.py │ ├── iso2022_jp_2004.py │ ├── iso2022_jp_3.py │ ├── iso2022_jp_ext.py │ ├── iso2022_kr.py │ ├── iso8859_1.py │ ├── iso8859_10.py │ ├── iso8859_11.py │ ├── iso8859_13.py │ ├── iso8859_14.py │ ├── iso8859_15.py │ ├── iso8859_16.py │ ├── iso8859_2.py │ ├── iso8859_3.py │ ├── iso8859_4.py │ ├── iso8859_5.py │ ├── iso8859_6.py │ ├── iso8859_7.py │ ├── iso8859_8.py │ ├── iso8859_9.py │ ├── johab.py │ ├── koi8_r.py │ ├── koi8_t.py │ ├── koi8_u.py │ ├── kz1048.py │ ├── latin_1.py │ ├── mac_arabic.py │ ├── mac_croatian.py │ ├── mac_cyrillic.py │ ├── mac_farsi.py │ ├── mac_greek.py │ ├── mac_iceland.py │ ├── mac_latin2.py │ ├── mac_roman.py │ ├── mac_romanian.py │ ├── mac_turkish.py │ ├── mbcs.py │ ├── oem.py │ ├── palmos.py │ ├── ptcp154.py │ ├── punycode.py │ ├── quopri_codec.py │ ├── raw_unicode_escape.py │ ├── rot_13.py │ ├── shift_jis.py │ ├── shift_jis_2004.py │ ├── shift_jisx0213.py │ ├── tis_620.py │ ├── undefined.py │ ├── unicode_escape.py │ ├── utf_16.py │ ├── utf_16_be.py │ ├── utf_16_le.py │ ├── utf_32.py │ ├── utf_32_be.py │ ├── utf_32_le.py │ ├── utf_7.py │ ├── utf_8.py │ ├── utf_8_sig.py │ ├── uu_codec.py │ └── zlib_codec.py ├── ensurepip │ ├── __init__.py │ ├── __main__.py │ ├── _bundled │ │ ├── packaging-24.2-py3-none-any.whl │ │ ├── pip-25.1.1-py3-none-any.whl │ │ ├── pyproject-hooks-1.2.0-py3-none-any.whl │ │ ├── setuptools-78.1.0-py3-none-any.whl │ │ └── wheel-0.42.0-py3-none-any.whl │ └── _uninstall.py ├── enum.py ├── filecmp.py ├── fileinput.py ├── fnmatch.py ├── fractions.py ├── ftplib.py ├── functools.py ├── genericpath.py ├── getopt.py ├── getpass.py ├── gettext.py ├── glob.py ├── graphlib.py ├── gzip.py ├── hashlib.py ├── heapq.py ├── hmac.py ├── html │ ├── __init__.py │ ├── entities.py │ └── parser.py ├── http │ ├── __init__.py │ ├── client.py │ ├── cookiejar.py │ ├── cookies.py │ └── server.py ├── idlelib │ ├── CREDITS.txt │ ├── ChangeLog │ ├── HISTORY.txt │ ├── Icons │ │ ├── README.txt │ │ ├── folder.gif │ │ ├── idle.ico │ │ ├── idle_16.gif │ │ ├── idle_16.png │ │ ├── idle_256.png │ │ ├── idle_32.gif │ │ ├── idle_32.png │ │ ├── idle_48.gif │ │ ├── idle_48.png │ │ ├── minusnode.gif │ │ ├── openfolder.gif │ │ ├── plusnode.gif │ │ ├── python.gif │ │ └── tk.gif │ ├── NEWS2x.txt │ ├── News3.txt │ ├── README.txt │ ├── TODO.txt │ ├── __init__.py │ ├── __main__.py │ ├── autocomplete.py │ ├── autocomplete_w.py │ ├── autoexpand.py │ ├── browser.py │ ├── calltip.py │ ├── calltip_w.py │ ├── codecontext.py │ ├── colorizer.py │ ├── config-extensions.def │ ├── config-highlight.def │ ├── config-keys.def │ ├── config-main.def │ ├── config.py │ ├── config_key.py │ ├── configdialog.py │ ├── debugger.py │ ├── debugger_r.py │ ├── debugobj.py │ ├── debugobj_r.py │ ├── delegator.py │ ├── dynoption.py │ ├── editor.py │ ├── extend.txt │ ├── filelist.py │ ├── format.py │ ├── grep.py │ ├── help.html │ ├── help.py │ ├── help_about.py │ ├── history.py │ ├── hyperparser.py │ ├── idle.bat │ ├── idle.py │ ├── idle.pyw │ ├── idle_test │ │ ├── README.txt │ │ ├── __init__.py │ │ ├── example_noext │ │ ├── example_stub.pyi │ │ ├── htest.py │ │ ├── mock_idle.py │ │ ├── mock_tk.py │ │ ├── template.py │ │ ├── test_autocomplete.py │ │ ├── test_autocomplete_w.py │ │ ├── test_autoexpand.py │ │ ├── test_browser.py │ │ ├── test_calltip.py │ │ ├── test_calltip_w.py │ │ ├── test_codecontext.py │ │ ├── test_colorizer.py │ │ ├── test_config.py │ │ ├── test_config_key.py │ │ ├── test_configdialog.py │ │ ├── test_debugger.py │ │ ├── test_debugger_r.py │ │ ├── test_debugobj.py │ │ ├── test_debugobj_r.py │ │ ├── test_delegator.py │ │ ├── test_editmenu.py │ │ ├── test_editor.py │ │ ├── test_filelist.py │ │ ├── test_format.py │ │ ├── test_grep.py │ │ ├── test_help.py │ │ ├── test_help_about.py │ │ ├── test_history.py │ │ ├── test_hyperparser.py │ │ ├── test_iomenu.py │ │ ├── test_macosx.py │ │ ├── test_mainmenu.py │ │ ├── test_multicall.py │ │ ├── test_outwin.py │ │ ├── test_parenmatch.py │ │ ├── test_pathbrowser.py │ │ ├── test_percolator.py │ │ ├── test_pyparse.py │ │ ├── test_pyshell.py │ │ ├── test_query.py │ │ ├── test_redirector.py │ │ ├── test_replace.py │ │ ├── test_rpc.py │ │ ├── test_run.py │ │ ├── test_runscript.py │ │ ├── test_scrolledlist.py │ │ ├── test_search.py │ │ ├── test_searchbase.py │ │ ├── test_searchengine.py │ │ ├── test_sidebar.py │ │ ├── test_squeezer.py │ │ ├── test_stackviewer.py │ │ ├── test_statusbar.py │ │ ├── test_text.py │ │ ├── test_textview.py │ │ ├── test_tooltip.py │ │ ├── test_tree.py │ │ ├── test_undo.py │ │ ├── test_util.py │ │ ├── test_warning.py │ │ ├── test_window.py │ │ ├── test_zoomheight.py │ │ ├── test_zzdummy.py │ │ └── tkinter_testing_utils.py │ ├── iomenu.py │ ├── macosx.py │ ├── mainmenu.py │ ├── multicall.py │ ├── outwin.py │ ├── parenmatch.py │ ├── pathbrowser.py │ ├── percolator.py │ ├── pyparse.py │ ├── pyshell.py │ ├── query.py │ ├── redirector.py │ ├── replace.py │ ├── rpc.py │ ├── run.py │ ├── runscript.py │ ├── scrolledlist.py │ ├── search.py │ ├── searchbase.py │ ├── searchengine.py │ ├── sidebar.py │ ├── squeezer.py │ ├── stackviewer.py │ ├── statusbar.py │ ├── textview.py │ ├── tooltip.py │ ├── tree.py │ ├── undo.py │ ├── util.py │ ├── window.py │ ├── zoomheight.py │ └── zzdummy.py ├── imaplib.py ├── imghdr.py ├── imp.py ├── importlib │ ├── __init__.py │ ├── _abc.py │ ├── _bootstrap.py │ ├── _bootstrap_external.py │ ├── abc.py │ ├── machinery.py │ ├── metadata │ │ ├── __init__.py │ │ ├── _adapters.py │ │ ├── _collections.py │ │ ├── _functools.py │ │ ├── _itertools.py │ │ ├── _meta.py │ │ └── _text.py │ ├── readers.py │ ├── resources │ │ ├── __init__.py │ │ ├── _adapters.py │ │ ├── _common.py │ │ ├── _itertools.py │ │ ├── _legacy.py │ │ ├── abc.py │ │ ├── readers.py │ │ └── simple.py │ ├── simple.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 │ ├── PatternGrammar.txt │ ├── __init__.py │ ├── __main__.py │ ├── btm_matcher.py │ ├── btm_utils.py │ ├── fixer_base.py │ ├── fixer_util.py │ ├── fixes │ │ ├── __init__.py │ │ ├── fix_apply.py │ │ ├── fix_asserts.py │ │ ├── fix_basestring.py │ │ ├── fix_buffer.py │ │ ├── fix_dict.py │ │ ├── fix_except.py │ │ ├── fix_exec.py │ │ ├── fix_execfile.py │ │ ├── fix_exitfunc.py │ │ ├── fix_filter.py │ │ ├── fix_funcattrs.py │ │ ├── fix_future.py │ │ ├── fix_getcwdu.py │ │ ├── fix_has_key.py │ │ ├── fix_idioms.py │ │ ├── fix_import.py │ │ ├── fix_imports.py │ │ ├── fix_imports2.py │ │ ├── fix_input.py │ │ ├── fix_intern.py │ │ ├── fix_isinstance.py │ │ ├── fix_itertools.py │ │ ├── fix_itertools_imports.py │ │ ├── fix_long.py │ │ ├── fix_map.py │ │ ├── fix_metaclass.py │ │ ├── fix_methodattrs.py │ │ ├── fix_ne.py │ │ ├── fix_next.py │ │ ├── fix_nonzero.py │ │ ├── fix_numliterals.py │ │ ├── fix_operator.py │ │ ├── fix_paren.py │ │ ├── fix_print.py │ │ ├── fix_raise.py │ │ ├── fix_raw_input.py │ │ ├── fix_reduce.py │ │ ├── fix_reload.py │ │ ├── fix_renames.py │ │ ├── fix_repr.py │ │ ├── fix_set_literal.py │ │ ├── fix_standarderror.py │ │ ├── fix_sys_exc.py │ │ ├── fix_throw.py │ │ ├── fix_tuple_params.py │ │ ├── fix_types.py │ │ ├── fix_unicode.py │ │ ├── fix_urllib.py │ │ ├── fix_ws_comma.py │ │ ├── fix_xrange.py │ │ ├── fix_xreadlines.py │ │ └── fix_zip.py │ ├── main.py │ ├── patcomp.py │ ├── pgen2 │ │ ├── __init__.py │ │ ├── conv.py │ │ ├── driver.py │ │ ├── grammar.py │ │ ├── literals.py │ │ ├── parse.py │ │ ├── pgen.py │ │ ├── token.py │ │ └── tokenize.py │ ├── pygram.py │ ├── pytree.py │ ├── refactor.py │ └── tests │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── data │ │ ├── README │ │ ├── bom.py │ │ ├── crlf.py │ │ ├── different_encoding.py │ │ ├── false_encoding.py │ │ ├── fixers │ │ │ ├── bad_order.py │ │ │ ├── myfixes │ │ │ │ ├── __init__.py │ │ │ │ ├── fix_explicit.py │ │ │ │ ├── fix_first.py │ │ │ │ ├── fix_last.py │ │ │ │ ├── fix_parrot.py │ │ │ │ └── fix_preorder.py │ │ │ ├── no_fixer_cls.py │ │ │ └── parrot_example.py │ │ ├── infinite_recursion.py │ │ ├── py2_test_grammar.py │ │ └── py3_test_grammar.py │ │ ├── pytree_idempotency.py │ │ ├── support.py │ │ ├── test_all_fixers.py │ │ ├── test_fixers.py │ │ ├── test_main.py │ │ ├── test_parser.py │ │ ├── test_pytree.py │ │ ├── test_refactor.py │ │ └── test_util.py ├── linecache.py ├── locale.py ├── logging │ ├── __init__.py │ ├── config.py │ └── handlers.py ├── lzma.py ├── mailbox.py ├── mailcap.py ├── mimetypes.py ├── mkembeddata.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 │ ├── resource_tracker.py │ ├── shared_memory.py │ ├── sharedctypes.py │ ├── spawn.py │ ├── synchronize.py │ └── util.py ├── netrc.py ├── nntplib.py ├── ntpath.py ├── nturl2path.py ├── numbers.py ├── opcode.py ├── operator.py ├── optparse.py ├── os.py ├── pathlib.py ├── pdb.py ├── pickle.py ├── pickletools.py ├── pip.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 │ ├── __init__.py │ ├── _casefix.py │ ├── _compiler.py │ ├── _constants.py │ └── _parser.py ├── rebuildembed.py ├── rebuildpython.py ├── reprlib.py ├── rlcompleter.py ├── runpy.py ├── sched.py ├── secrets.py ├── selectors.py ├── shelve.py ├── shlex.py ├── shutil.py ├── signal.py ├── site-packages │ └── README.txt ├── site.py ├── smtpd.py ├── smtplib.py ├── sndhdr.py ├── socket.py ├── socketserver.py ├── sqlite3 │ ├── __init__.py │ ├── dbapi2.py │ └── dump.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 ├── symtable.py ├── sysconfig.py ├── tabnanny.py ├── tarfile.py ├── telnetlib.py ├── tempfile.py ├── test │ ├── .ruff.toml │ ├── Sine-1000Hz-300ms.aif │ ├── __init__.py │ ├── __main__.py │ ├── _test_atexit.py │ ├── _test_eintr.py │ ├── _test_embed_set_config.py │ ├── _test_embed_structseq.py │ ├── _test_multiprocessing.py │ ├── _test_venv_multiprocessing.py │ ├── archiver_tests.py │ ├── audiodata │ │ ├── pluck-alaw.aifc │ │ ├── pluck-pcm16.aiff │ │ ├── pluck-pcm16.au │ │ ├── pluck-pcm16.wav │ │ ├── pluck-pcm24.aiff │ │ ├── pluck-pcm24.au │ │ ├── pluck-pcm24.wav │ │ ├── pluck-pcm32.aiff │ │ ├── pluck-pcm32.au │ │ ├── pluck-pcm32.wav │ │ ├── pluck-pcm8.aiff │ │ ├── pluck-pcm8.au │ │ ├── pluck-pcm8.wav │ │ ├── pluck-ulaw.aifc │ │ └── pluck-ulaw.au │ ├── audiotest.au │ ├── audiotests.py │ ├── audit-tests.py │ ├── autotest.py │ ├── bisect_cmd.py │ ├── certdata │ │ ├── allsans.pem │ │ ├── badcert.pem │ │ ├── badkey.pem │ │ ├── capath │ │ │ ├── 4e1295a3.0 │ │ │ ├── 5ed36f99.0 │ │ │ ├── 6e88d7b8.0 │ │ │ ├── 99d0fa06.0 │ │ │ ├── b1930218.0 │ │ │ └── ceff1710.0 │ │ ├── ffdh3072.pem │ │ ├── idnsans.pem │ │ ├── keycert.passwd.pem │ │ ├── keycert.pem │ │ ├── keycert2.pem │ │ ├── keycert3.pem │ │ ├── keycert4.pem │ │ ├── keycertecc.pem │ │ ├── make_ssl_certs.py │ │ ├── nokia.pem │ │ ├── nosan.pem │ │ ├── nullbytecert.pem │ │ ├── nullcert.pem │ │ ├── pycacert.pem │ │ ├── pycakey.pem │ │ ├── revocation.crl │ │ ├── secp384r1.pem │ │ ├── selfsigned_pythontestdotnet.pem │ │ ├── ssl_cert.pem │ │ ├── ssl_key.passwd.pem │ │ ├── ssl_key.pem │ │ └── talos-2019-0758.pem │ ├── 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.c │ ├── cmath_testcases.txt │ ├── configdata │ │ ├── cfgparser.1 │ │ ├── cfgparser.2 │ │ └── cfgparser.3 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── empty.vbs │ ├── encoded_modules │ │ ├── __init__.py │ │ ├── module_iso_8859_1.py │ │ └── module_koi8_r.py │ ├── exception_hierarchy.txt │ ├── floating_points.txt │ ├── fork_wait.py │ ├── formatfloat_testcases.txt │ ├── ieee754.txt │ ├── imghdrdata │ │ ├── python-raw.jpg │ │ ├── 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 │ ├── leakers │ │ ├── README.txt │ │ ├── __init__.py │ │ ├── test_ctypes.py │ │ └── test_selftype.py │ ├── libregrtest │ │ ├── __init__.py │ │ ├── cmdline.py │ │ ├── filter.py │ │ ├── findtests.py │ │ ├── logger.py │ │ ├── main.py │ │ ├── mypy.ini │ │ ├── pgo.py │ │ ├── refleak.py │ │ ├── result.py │ │ ├── results.py │ │ ├── run_workers.py │ │ ├── runtests.py │ │ ├── save_env.py │ │ ├── setup.py │ │ ├── single.py │ │ ├── testresult.py │ │ ├── utils.py │ │ ├── win_utils.py │ │ └── worker.py │ ├── list_tests.py │ ├── lock_tests.py │ ├── mailcap.txt │ ├── mapping_tests.py │ ├── math_testcases.txt │ ├── memory_watchdog.py │ ├── mime.types │ ├── mock_socket.py │ ├── mp_fork_bomb.py │ ├── mp_preload.py │ ├── multibytecodec_support.py │ ├── pickletester.py │ ├── profilee.py │ ├── pstats.pck │ ├── pyclbr_input.py │ ├── pythoninfo.py │ ├── randv2_32.pck │ ├── randv2_64.pck │ ├── randv3.pck │ ├── re_tests.py │ ├── recursion.tar │ ├── regrtest.py │ ├── regrtestdata │ │ └── import_from_tests │ │ │ ├── test_regrtest_a.py │ │ │ ├── test_regrtest_b │ │ │ ├── __init__.py │ │ │ └── util.py │ │ │ └── test_regrtest_c.py │ ├── relimport.py │ ├── reperf.py │ ├── seq_tests.py │ ├── signalinterproctester.py │ ├── sndhdrdata │ │ ├── README │ │ ├── sndhdr.8svx │ │ ├── sndhdr.aifc │ │ ├── sndhdr.aiff │ │ ├── sndhdr.au │ │ ├── sndhdr.hcom │ │ ├── sndhdr.sndt │ │ ├── sndhdr.voc │ │ └── sndhdr.wav │ ├── ssl_servers.py │ ├── ssltests.py │ ├── string_tests.py │ ├── subprocessdata │ │ ├── fd_status.py │ │ ├── input_reader.py │ │ ├── qcat.py │ │ ├── qgrep.py │ │ └── sigchild_ignore.py │ ├── support │ │ ├── __init__.py │ │ ├── bytecode_helper.py │ │ ├── hashlib_helper.py │ │ ├── import_helper.py │ │ ├── interpreters.py │ │ ├── logging_helper.py │ │ ├── os_helper.py │ │ ├── pty_helper.py │ │ ├── script_helper.py │ │ ├── socket_helper.py │ │ ├── threading_helper.py │ │ └── warnings_helper.py │ ├── test___all__.py │ ├── test__locale.py │ ├── test__opcode.py │ ├── test__osx_support.py │ ├── test__xxsubinterpreters.py │ ├── test_abc.py │ ├── test_abstract_numbers.py │ ├── test_aifc.py │ ├── test_argparse.py │ ├── test_array.py │ ├── test_asdl_parser.py │ ├── test_ast.py │ ├── test_asyncgen.py │ ├── test_asynchat.py │ ├── test_asyncio │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── echo.py │ │ ├── echo2.py │ │ ├── echo3.py │ │ ├── functional.py │ │ ├── test_base_events.py │ │ ├── test_buffered_proto.py │ │ ├── test_context.py │ │ ├── test_events.py │ │ ├── test_futures.py │ │ ├── test_futures2.py │ │ ├── test_locks.py │ │ ├── test_pep492.py │ │ ├── test_proactor_events.py │ │ ├── test_protocols.py │ │ ├── test_queues.py │ │ ├── test_runners.py │ │ ├── test_selector_events.py │ │ ├── test_sendfile.py │ │ ├── test_server.py │ │ ├── test_sock_lowlevel.py │ │ ├── test_ssl.py │ │ ├── test_sslproto.py │ │ ├── test_streams.py │ │ ├── test_subprocess.py │ │ ├── test_taskgroups.py │ │ ├── test_tasks.py │ │ ├── test_threads.py │ │ ├── test_timeouts.py │ │ ├── test_transports.py │ │ ├── test_unix_events.py │ │ ├── test_waitfor.py │ │ ├── test_windows_events.py │ │ ├── test_windows_utils.py │ │ └── utils.py │ ├── test_asyncore.py │ ├── test_atexit.py │ ├── test_audioop.py │ ├── test_audit.py │ ├── test_augassign.py │ ├── test_base64.py │ ├── test_baseexception.py │ ├── test_bdb.py │ ├── test_bigaddrspace.py │ ├── test_bigmem.py │ ├── test_binascii.py │ ├── test_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 │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── test_codecs.py │ │ ├── test_eval_code_ex.py │ │ ├── test_getargs.py │ │ ├── test_misc.py │ │ ├── test_structmembers.py │ │ └── test_unicode.py │ ├── test_cgi.py │ ├── test_cgitb.py │ ├── test_charmapcodec.py │ ├── test_check_c_globals.py │ ├── test_class.py │ ├── test_clinic.py │ ├── test_cmath.py │ ├── test_cmd.py │ ├── test_cmd_line.py │ ├── test_cmd_line_script.py │ ├── test_code.py │ ├── test_code_module.py │ ├── test_codeccallbacks.py │ ├── test_codecencodings_cn.py │ ├── test_codecencodings_hk.py │ ├── test_codecencodings_iso2022.py │ ├── test_codecencodings_jp.py │ ├── test_codecencodings_kr.py │ ├── test_codecencodings_tw.py │ ├── test_codecmaps_cn.py │ ├── test_codecmaps_hk.py │ ├── test_codecmaps_jp.py │ ├── test_codecmaps_kr.py │ ├── test_codecmaps_tw.py │ ├── test_codecs.py │ ├── test_codeop.py │ ├── test_collections.py │ ├── test_colorsys.py │ ├── test_compare.py │ ├── test_compile.py │ ├── test_compileall.py │ ├── test_complex.py │ ├── test_concurrent_futures │ │ ├── __init__.py │ │ ├── executor.py │ │ ├── test_as_completed.py │ │ ├── test_deadlock.py │ │ ├── test_future.py │ │ ├── test_init.py │ │ ├── test_process_pool.py │ │ ├── test_shutdown.py │ │ ├── test_thread_pool.py │ │ ├── test_wait.py │ │ └── util.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_cppext │ │ ├── __init__.py │ │ ├── extension.cpp │ │ └── setup.py │ ├── test_cprofile.py │ ├── test_crashers.py │ ├── test_crypt.py │ ├── test_csv.py │ ├── test_ctypes.py │ ├── test_curses.py │ ├── test_dataclasses │ │ ├── __init__.py │ │ ├── dataclass_module_1.py │ │ ├── dataclass_module_1_str.py │ │ ├── dataclass_module_2.py │ │ ├── dataclass_module_2_str.py │ │ └── dataclass_textanno.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 │ │ ├── __init__.py │ │ ├── decorator_mod.py │ │ ├── doctest_aliases.py │ │ ├── doctest_lineno.py │ │ ├── sample_doctest.py │ │ ├── sample_doctest_no_docstrings.py │ │ ├── sample_doctest_no_doctests.py │ │ ├── test_doctest.py │ │ ├── test_doctest.txt │ │ ├── test_doctest2.py │ │ ├── test_doctest2.txt │ │ ├── test_doctest3.txt │ │ └── test_doctest4.txt │ ├── test_docxmlrpc.py │ ├── test_dtrace.py │ ├── test_dynamic.py │ ├── test_dynamicclassattribute.py │ ├── test_eintr.py │ ├── test_email │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── data │ │ │ ├── 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 │ │ │ ├── msg_47.txt │ │ │ ├── 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 │ │ │ ├── sndhdr.aifc │ │ │ ├── sndhdr.aiff │ │ │ ├── sndhdr.au │ │ │ └── sndhdr.wav │ │ ├── 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_except_star.py │ ├── test_exception_group.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_fileutils.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_stmt │ │ ├── __init__.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 │ │ ├── future_test1.py │ │ ├── future_test2.py │ │ ├── test_future.py │ │ ├── test_future_flags.py │ │ ├── test_future_multiple_features.py │ │ ├── test_future_multiple_imports.py │ │ └── test_future_single_import.py │ ├── test_gc.py │ ├── test_gdb │ │ ├── __init__.py │ │ ├── gdb_sample.py │ │ ├── test_backtrace.py │ │ ├── test_cfunction.py │ │ ├── test_cfunction_full.py │ │ ├── test_misc.py │ │ ├── test_pretty_print.py │ │ └── util.py │ ├── test_generator_stop.py │ ├── test_generators.py │ ├── test_genericalias.py │ ├── test_genericclass.py │ ├── test_genericpath.py │ ├── test_genexps.py │ ├── test_getopt.py │ ├── test_getpass.py │ ├── test_getpath.py │ ├── test_gettext.py │ ├── test_glob.py │ ├── test_global.py │ ├── test_grammar.py │ ├── test_graphlib.py │ ├── test_grp.py │ ├── test_gzip.py │ ├── test_hash.py │ ├── test_hashlib.py │ ├── test_heapq.py │ ├── test_hmac.py │ ├── test_html.py │ ├── test_htmlparser.py │ ├── test_http_cookiejar.py │ ├── test_http_cookies.py │ ├── test_httplib.py │ ├── test_httpservers.py │ ├── test_idle.py │ ├── test_imaplib.py │ ├── test_imghdr.py │ ├── test_imp.py │ ├── test_import │ │ ├── __init__.py │ │ ├── __main__.py │ │ └── data │ │ │ ├── circular_imports │ │ │ ├── basic.py │ │ │ ├── basic2.py │ │ │ ├── binding.py │ │ │ ├── binding2.py │ │ │ ├── from_cycle1.py │ │ │ ├── from_cycle2.py │ │ │ ├── indirect.py │ │ │ ├── rebinding.py │ │ │ ├── rebinding2.py │ │ │ ├── source.py │ │ │ ├── subpackage.py │ │ │ ├── subpkg │ │ │ │ ├── subpackage2.py │ │ │ │ └── util.py │ │ │ ├── subpkg2 │ │ │ │ ├── __init__.py │ │ │ │ └── parent │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── child.py │ │ │ ├── use.py │ │ │ └── util.py │ │ │ ├── double_const.py │ │ │ ├── package │ │ │ ├── __init__.py │ │ │ └── submodule.py │ │ │ ├── package2 │ │ │ ├── submodule1.py │ │ │ └── submodule2.py │ │ │ └── unwritable │ │ │ ├── __init__.py │ │ │ └── x.py │ ├── test_importlib │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── abc.py │ │ ├── builtin │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── test_finder.py │ │ │ └── test_loader.py │ │ ├── data │ │ │ ├── __init__.py │ │ │ ├── example-21.12-py3-none-any.whl │ │ │ ├── example-21.12-py3.6.egg │ │ │ └── example2-1.0.0-py3-none-any.whl │ │ ├── data01 │ │ │ ├── __init__.py │ │ │ ├── binary.file │ │ │ ├── subdirectory │ │ │ │ ├── __init__.py │ │ │ │ └── binary.file │ │ │ ├── utf-16.file │ │ │ └── utf-8.file │ │ ├── data02 │ │ │ ├── __init__.py │ │ │ ├── one │ │ │ │ ├── __init__.py │ │ │ │ └── resource1.txt │ │ │ └── two │ │ │ │ ├── __init__.py │ │ │ │ └── resource2.txt │ │ ├── data03 │ │ │ ├── __init__.py │ │ │ └── namespace │ │ │ │ ├── portion1 │ │ │ │ └── __init__.py │ │ │ │ ├── portion2 │ │ │ │ └── __init__.py │ │ │ │ └── resource1.txt │ │ ├── extension │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── test_case_sensitivity.py │ │ │ ├── test_finder.py │ │ │ ├── test_loader.py │ │ │ └── test_path_hook.py │ │ ├── fixtures.py │ │ ├── frozen │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── test_finder.py │ │ │ └── test_loader.py │ │ ├── import_ │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── test___loader__.py │ │ │ ├── test___package__.py │ │ │ ├── test_api.py │ │ │ ├── test_caching.py │ │ │ ├── test_fromlist.py │ │ │ ├── test_meta_path.py │ │ │ ├── test_packages.py │ │ │ ├── test_path.py │ │ │ └── test_relative_imports.py │ │ ├── namespace_pkgs │ │ │ ├── both_portions │ │ │ │ └── foo │ │ │ │ │ ├── one.py │ │ │ │ │ └── two.py │ │ │ ├── missing_directory.zip │ │ │ ├── module_and_namespace_package │ │ │ │ ├── a_test.py │ │ │ │ └── a_test │ │ │ │ │ └── empty │ │ │ ├── nested_portion1.zip │ │ │ ├── not_a_namespace_pkg │ │ │ │ └── foo │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── one.py │ │ │ ├── portion1 │ │ │ │ └── foo │ │ │ │ │ └── one.py │ │ │ ├── portion2 │ │ │ │ └── foo │ │ │ │ │ └── two.py │ │ │ ├── project1 │ │ │ │ └── parent │ │ │ │ │ └── child │ │ │ │ │ └── one.py │ │ │ ├── project2 │ │ │ │ └── parent │ │ │ │ │ └── child │ │ │ │ │ └── two.py │ │ │ ├── project3 │ │ │ │ └── parent │ │ │ │ │ └── child │ │ │ │ │ └── three.py │ │ │ └── top_level_portion1.zip │ │ ├── namespacedata01 │ │ │ ├── binary.file │ │ │ ├── utf-16.file │ │ │ └── utf-8.file │ │ ├── partial │ │ │ ├── cfimport.py │ │ │ └── pool_in_threads.py │ │ ├── resources │ │ │ ├── __init__.py │ │ │ └── util.py │ │ ├── source │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── test_case_sensitivity.py │ │ │ ├── test_file_loader.py │ │ │ ├── test_finder.py │ │ │ ├── test_path_hook.py │ │ │ └── test_source_encoding.py │ │ ├── stubs.py │ │ ├── test_abc.py │ │ ├── test_api.py │ │ ├── test_compatibilty_files.py │ │ ├── test_contents.py │ │ ├── test_files.py │ │ ├── test_lazy.py │ │ ├── test_locks.py │ │ ├── test_main.py │ │ ├── test_metadata_api.py │ │ ├── test_namespace_pkgs.py │ │ ├── test_open.py │ │ ├── test_path.py │ │ ├── test_pkg_import.py │ │ ├── test_read.py │ │ ├── test_reader.py │ │ ├── test_resource.py │ │ ├── test_spec.py │ │ ├── test_threaded_import.py │ │ ├── test_util.py │ │ ├── test_windows.py │ │ ├── test_zip.py │ │ ├── threaded_import_hangers.py │ │ ├── update-zips.py │ │ ├── util.py │ │ ├── zipdata01 │ │ │ ├── __init__.py │ │ │ └── ziptestdata.zip │ │ └── zipdata02 │ │ │ ├── __init__.py │ │ │ └── ziptestdata.zip │ ├── test_index.py │ ├── test_inspect │ │ ├── __init__.py │ │ ├── inspect_fodder.py │ │ ├── inspect_fodder2.py │ │ ├── inspect_stock_annotations.py │ │ ├── inspect_stringized_annotations.py │ │ ├── inspect_stringized_annotations_2.py │ │ └── test_inspect.py │ ├── test_int.py │ ├── test_int_literal.py │ ├── test_interpreters.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_launcher.py │ ├── test_lib2to3.py │ ├── test_linecache.py │ ├── test_list.py │ ├── test_listcomps.py │ ├── test_lltrace.py │ ├── test_locale.py │ ├── test_logging.py │ ├── test_long.py │ ├── test_longexp.py │ ├── test_lzma.py │ ├── test_mailbox.py │ ├── test_mailcap.py │ ├── test_marshal.py │ ├── test_math.py │ ├── test_memoryio.py │ ├── test_memoryview.py │ ├── test_metaclass.py │ ├── test_mimetypes.py │ ├── test_minidom.py │ ├── test_mmap.py │ ├── test_module │ │ ├── __init__.py │ │ ├── bad_getattr.py │ │ ├── bad_getattr2.py │ │ ├── bad_getattr3.py │ │ ├── final_a.py │ │ ├── final_b.py │ │ └── good_getattr.py │ ├── test_modulefinder.py │ ├── test_msilib.py │ ├── test_multibytecodec.py │ ├── test_multiprocessing_fork │ │ ├── __init__.py │ │ ├── test_manager.py │ │ ├── test_misc.py │ │ ├── test_processes.py │ │ └── test_threads.py │ ├── test_multiprocessing_forkserver │ │ ├── __init__.py │ │ ├── test_manager.py │ │ ├── test_misc.py │ │ ├── test_processes.py │ │ └── test_threads.py │ ├── test_multiprocessing_main_handling.py │ ├── test_multiprocessing_spawn │ │ ├── __init__.py │ │ ├── test_manager.py │ │ ├── test_misc.py │ │ ├── test_processes.py │ │ └── test_threads.py │ ├── test_named_expressions.py │ ├── test_netrc.py │ ├── test_nis.py │ ├── test_nntplib.py │ ├── test_ntpath.py │ ├── test_numeric_tower.py │ ├── test_opcache.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_pathlib.py │ ├── test_patma.py │ ├── test_pdb.py │ ├── test_peepholer.py │ ├── test_peg_generator │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── test_c_parser.py │ │ ├── test_first_sets.py │ │ ├── test_grammar_validator.py │ │ └── test_pegen.py │ ├── test_pep646_syntax.py │ ├── test_pickle.py │ ├── test_picklebuffer.py │ ├── test_pickletools.py │ ├── test_pipes.py │ ├── test_pkg.py │ ├── test_pkgutil.py │ ├── test_platform.py │ ├── test_plistlib.py │ ├── test_poll.py │ ├── test_popen.py │ ├── test_poplib.py │ ├── test_positional_only_arg.py │ ├── test_posix.py │ ├── test_posixpath.py │ ├── test_pow.py │ ├── test_pprint.py │ ├── test_print.py │ ├── test_profile.py │ ├── test_property.py │ ├── test_pstats.py │ ├── test_pty.py │ ├── test_pulldom.py │ ├── test_pwd.py │ ├── test_py_compile.py │ ├── test_pyclbr.py │ ├── test_pydoc │ │ ├── __init__.py │ │ ├── pydoc_mod.py │ │ ├── pydocfodder.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_sqlite3 │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── test_backup.py │ │ ├── test_dbapi.py │ │ ├── test_dump.py │ │ ├── test_factory.py │ │ ├── test_hooks.py │ │ ├── test_regression.py │ │ ├── test_transactions.py │ │ ├── test_types.py │ │ └── test_userfunctions.py │ ├── test_ssl.py │ ├── test_stable_abi_ctypes.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_structseq.py │ ├── test_subclassinit.py │ ├── test_subprocess.py │ ├── test_sunau.py │ ├── test_sundry.py │ ├── test_super.py │ ├── test_support.py │ ├── test_symtable.py │ ├── test_syntax.py │ ├── test_sys.py │ ├── test_sys_setprofile.py │ ├── test_sys_settrace.py │ ├── test_sysconfig.py │ ├── test_syslog.py │ ├── test_tabnanny.py │ ├── test_tarfile.py │ ├── test_tcl.py │ ├── test_telnetlib.py │ ├── test_tempfile.py │ ├── test_termios.py │ ├── test_textwrap.py │ ├── test_thread.py │ ├── test_threadedtempfile.py │ ├── test_threading.py │ ├── test_threading_local.py │ ├── test_threadsignals.py │ ├── test_time.py │ ├── test_timeit.py │ ├── test_timeout.py │ ├── test_tix.py │ ├── test_tk.py │ ├── test_tokenize.py │ ├── test_tomllib │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── burntsushi.py │ │ ├── data │ │ │ ├── invalid │ │ │ │ ├── array-missing-comma.toml │ │ │ │ ├── array-of-tables │ │ │ │ │ ├── overwrite-array-in-parent.toml │ │ │ │ │ └── overwrite-bool-with-aot.toml │ │ │ │ ├── array │ │ │ │ │ ├── file-end-after-val.toml │ │ │ │ │ ├── unclosed-after-item.toml │ │ │ │ │ └── unclosed-empty.toml │ │ │ │ ├── basic-str-ends-in-escape.toml │ │ │ │ ├── boolean │ │ │ │ │ ├── invalid-false-casing.toml │ │ │ │ │ └── invalid-true-casing.toml │ │ │ │ ├── dates-and-times │ │ │ │ │ └── invalid-day.toml │ │ │ │ ├── dotted-keys │ │ │ │ │ ├── access-non-table.toml │ │ │ │ │ ├── extend-defined-aot.toml │ │ │ │ │ ├── extend-defined-table-with-subtable.toml │ │ │ │ │ └── extend-defined-table.toml │ │ │ │ ├── inline-table-missing-comma.toml │ │ │ │ ├── inline-table │ │ │ │ │ ├── define-twice-in-subtable.toml │ │ │ │ │ ├── define-twice.toml │ │ │ │ │ ├── file-end-after-key-val.toml │ │ │ │ │ ├── mutate.toml │ │ │ │ │ ├── override-val-in-table.toml │ │ │ │ │ ├── override-val-with-array.toml │ │ │ │ │ ├── override-val-with-table.toml │ │ │ │ │ ├── overwrite-implicitly.toml │ │ │ │ │ ├── overwrite-value-in-inner-array.toml │ │ │ │ │ ├── overwrite-value-in-inner-table.toml │ │ │ │ │ └── unclosed-empty.toml │ │ │ │ ├── invalid-comment-char.toml │ │ │ │ ├── invalid-escaped-unicode.toml │ │ │ │ ├── invalid-hex.toml │ │ │ │ ├── keys-and-vals │ │ │ │ │ ├── ends-early-table-def.toml │ │ │ │ │ ├── ends-early.toml │ │ │ │ │ ├── no-value.toml │ │ │ │ │ ├── only-ws-after-dot.toml │ │ │ │ │ └── overwrite-with-deep-table.toml │ │ │ │ ├── literal-str │ │ │ │ │ └── unclosed.toml │ │ │ │ ├── missing-closing-double-square-bracket.toml │ │ │ │ ├── missing-closing-square-bracket.toml │ │ │ │ ├── multiline-basic-str │ │ │ │ │ ├── carriage-return.toml │ │ │ │ │ ├── escape-only.toml │ │ │ │ │ ├── file-ends-after-opening.toml │ │ │ │ │ ├── last-line-escape.toml │ │ │ │ │ └── unclosed-ends-in-whitespace-escape.toml │ │ │ │ ├── multiline-literal-str │ │ │ │ │ ├── file-ends-after-opening.toml │ │ │ │ │ └── unclosed.toml │ │ │ │ ├── non-scalar-escaped.toml │ │ │ │ ├── table │ │ │ │ │ ├── eof-after-opening.toml │ │ │ │ │ ├── redefine-1.toml │ │ │ │ │ └── redefine-2.toml │ │ │ │ ├── unclosed-multiline-string.toml │ │ │ │ └── unclosed-string.toml │ │ │ └── valid │ │ │ │ ├── apostrophes-in-literal-string.json │ │ │ │ ├── apostrophes-in-literal-string.toml │ │ │ │ ├── array │ │ │ │ ├── array-subtables.json │ │ │ │ ├── array-subtables.toml │ │ │ │ ├── open-parent-table.json │ │ │ │ └── open-parent-table.toml │ │ │ │ ├── boolean.json │ │ │ │ ├── boolean.toml │ │ │ │ ├── dates-and-times │ │ │ │ ├── datetimes.json │ │ │ │ ├── datetimes.toml │ │ │ │ ├── localtime.json │ │ │ │ └── localtime.toml │ │ │ │ ├── empty-inline-table.json │ │ │ │ ├── empty-inline-table.toml │ │ │ │ ├── five-quotes.json │ │ │ │ ├── five-quotes.toml │ │ │ │ ├── hex-char.json │ │ │ │ ├── hex-char.toml │ │ │ │ ├── multiline-basic-str │ │ │ │ ├── ends-in-whitespace-escape.json │ │ │ │ └── ends-in-whitespace-escape.toml │ │ │ │ ├── no-newlines.json │ │ │ │ ├── no-newlines.toml │ │ │ │ ├── trailing-comma.json │ │ │ │ └── trailing-comma.toml │ │ ├── test_data.py │ │ ├── test_error.py │ │ └── test_misc.py │ ├── test_tools │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── test_fixcid.py │ │ ├── test_freeze.py │ │ ├── test_gprof2html.py │ │ ├── test_i18n.py │ │ ├── test_lll.py │ │ ├── test_makefile.py │ │ ├── test_md5sum.py │ │ ├── test_pathfix.py │ │ ├── test_pdeps.py │ │ ├── test_pindent.py │ │ ├── test_reindent.py │ │ └── test_sundry.py │ ├── test_trace.py │ ├── test_traceback.py │ ├── test_tracemalloc.py │ ├── test_ttk_guionly.py │ ├── test_ttk_textonly.py │ ├── test_tty.py │ ├── test_tuple.py │ ├── test_turtle.py │ ├── test_type_annotations.py │ ├── test_type_cache.py │ ├── test_type_comments.py │ ├── test_typechecks.py │ ├── test_types.py │ ├── test_typing.py │ ├── test_ucn.py │ ├── test_unary.py │ ├── test_unicode.py │ ├── test_unicode_file.py │ ├── test_unicode_file_functions.py │ ├── test_unicode_identifiers.py │ ├── test_unicodedata.py │ ├── test_unittest.py │ ├── test_univnewlines.py │ ├── test_unpack.py │ ├── test_unpack_ex.py │ ├── test_unparse.py │ ├── test_urllib.py │ ├── test_urllib2.py │ ├── test_urllib2_localnet.py │ ├── test_urllib2net.py │ ├── test_urllib_response.py │ ├── test_urllibnet.py │ ├── test_urlparse.py │ ├── test_userdict.py │ ├── test_userlist.py │ ├── test_userstring.py │ ├── test_utf8_mode.py │ ├── test_utf8source.py │ ├── test_uu.py │ ├── test_uuid.py │ ├── test_venv.py │ ├── test_wait3.py │ ├── test_wait4.py │ ├── test_warnings │ │ ├── __init__.py │ │ ├── __main__.py │ │ └── data │ │ │ ├── import_warning.py │ │ │ └── stacklevel.py │ ├── test_wave.py │ ├── test_weakref.py │ ├── test_weakset.py │ ├── test_webbrowser.py │ ├── test_winconsoleio.py │ ├── test_winreg.py │ ├── test_winsound.py │ ├── test_with.py │ ├── test_wsgiref.py │ ├── test_xdrlib.py │ ├── test_xml_dom_minicompat.py │ ├── test_xml_etree.py │ ├── test_xml_etree_c.py │ ├── test_xmlrpc.py │ ├── test_xmlrpc_net.py │ ├── test_xxlimited.py │ ├── test_xxtestfuzz.py │ ├── test_yield_from.py │ ├── test_zipapp.py │ ├── test_zipfile.py │ ├── test_zipfile64.py │ ├── test_zipimport.py │ ├── test_zipimport_support.py │ ├── test_zlib.py │ ├── test_zoneinfo │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _support.py │ │ ├── data │ │ │ ├── update_test_data.py │ │ │ └── zoneinfo_data.json │ │ └── test_zoneinfo.py │ ├── testcodec.py │ ├── testtar.tar │ ├── testtar.tar.xz │ ├── tf_inherit_check.py │ ├── time_hashlib.py │ ├── tokenizedata │ │ ├── __init__.py │ │ ├── bad_coding.py │ │ ├── bad_coding2.py │ │ ├── badsyntax_3131.py │ │ ├── badsyntax_pep3120.py │ │ ├── coding20731.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 │ ├── typinganndata │ │ ├── __init__.py │ │ ├── _typed_dict_helper.py │ │ ├── ann_module.py │ │ ├── ann_module2.py │ │ ├── ann_module3.py │ │ ├── ann_module4.py │ │ ├── ann_module5.py │ │ ├── ann_module6.py │ │ ├── ann_module7.py │ │ ├── ann_module8.py │ │ ├── ann_module9.py │ │ └── mod_generics_cache.py │ ├── win_console_handler.py │ ├── xmltestdata │ │ ├── c14n-20 │ │ │ ├── README │ │ │ ├── c14nComment.xml │ │ │ ├── c14nDefault.xml │ │ │ ├── c14nPrefix.xml │ │ │ ├── c14nPrefixQname.xml │ │ │ ├── c14nPrefixQnameXpathElem.xml │ │ │ ├── c14nQname.xml │ │ │ ├── c14nQnameElem.xml │ │ │ ├── c14nQnameXpathElem.xml │ │ │ ├── c14nTrim.xml │ │ │ ├── doc.dtd │ │ │ ├── doc.xsl │ │ │ ├── inC14N1.xml │ │ │ ├── inC14N2.xml │ │ │ ├── inC14N3.xml │ │ │ ├── inC14N4.xml │ │ │ ├── inC14N5.xml │ │ │ ├── inC14N6.xml │ │ │ ├── inNsContent.xml │ │ │ ├── inNsDefault.xml │ │ │ ├── inNsPushdown.xml │ │ │ ├── inNsRedecl.xml │ │ │ ├── inNsSort.xml │ │ │ ├── inNsSuperfluous.xml │ │ │ ├── inNsXml.xml │ │ │ ├── out_inC14N1_c14nComment.xml │ │ │ ├── out_inC14N1_c14nDefault.xml │ │ │ ├── out_inC14N2_c14nDefault.xml │ │ │ ├── out_inC14N2_c14nTrim.xml │ │ │ ├── out_inC14N3_c14nDefault.xml │ │ │ ├── out_inC14N3_c14nPrefix.xml │ │ │ ├── out_inC14N3_c14nTrim.xml │ │ │ ├── out_inC14N4_c14nDefault.xml │ │ │ ├── out_inC14N4_c14nTrim.xml │ │ │ ├── out_inC14N5_c14nDefault.xml │ │ │ ├── out_inC14N5_c14nTrim.xml │ │ │ ├── out_inC14N6_c14nDefault.xml │ │ │ ├── out_inNsContent_c14nDefault.xml │ │ │ ├── out_inNsContent_c14nPrefixQnameXpathElem.xml │ │ │ ├── out_inNsContent_c14nQnameElem.xml │ │ │ ├── out_inNsContent_c14nQnameXpathElem.xml │ │ │ ├── out_inNsDefault_c14nDefault.xml │ │ │ ├── out_inNsDefault_c14nPrefix.xml │ │ │ ├── out_inNsPushdown_c14nDefault.xml │ │ │ ├── out_inNsPushdown_c14nPrefix.xml │ │ │ ├── out_inNsRedecl_c14nDefault.xml │ │ │ ├── out_inNsRedecl_c14nPrefix.xml │ │ │ ├── out_inNsSort_c14nDefault.xml │ │ │ ├── out_inNsSort_c14nPrefix.xml │ │ │ ├── out_inNsSuperfluous_c14nDefault.xml │ │ │ ├── out_inNsSuperfluous_c14nPrefix.xml │ │ │ ├── out_inNsXml_c14nDefault.xml │ │ │ ├── out_inNsXml_c14nPrefix.xml │ │ │ ├── out_inNsXml_c14nPrefixQname.xml │ │ │ ├── out_inNsXml_c14nQname.xml │ │ │ └── world.txt │ │ ├── expat224_utf8_bug.xml │ │ ├── simple-ns.xml │ │ ├── simple.xml │ │ ├── test.xml │ │ └── test.xml.out │ ├── xmltests.py │ ├── zip_cp437_header.zip │ ├── zipdir.zip │ ├── zipdir_backslash.zip │ └── ziptestdata │ │ ├── README.md │ │ ├── exe_with_z64 │ │ ├── exe_with_zip │ │ ├── header.sh │ │ └── testdata_module_inside_zip.py ├── textwrap.py ├── this.py ├── threading.py ├── timeit.py ├── tkinter │ ├── __init__.py │ ├── __main__.py │ ├── colorchooser.py │ ├── commondialog.py │ ├── constants.py │ ├── dialog.py │ ├── dnd.py │ ├── filedialog.py │ ├── font.py │ ├── messagebox.py │ ├── scrolledtext.py │ ├── simpledialog.py │ ├── test │ │ ├── README │ │ ├── __init__.py │ │ ├── support.py │ │ ├── test_tkinter │ │ │ ├── __init__.py │ │ │ ├── test_colorchooser.py │ │ │ ├── test_font.py │ │ │ ├── test_geometry_managers.py │ │ │ ├── test_images.py │ │ │ ├── test_loadtk.py │ │ │ ├── test_messagebox.py │ │ │ ├── test_misc.py │ │ │ ├── test_simpledialog.py │ │ │ ├── test_text.py │ │ │ ├── test_variables.py │ │ │ └── test_widgets.py │ │ ├── test_ttk │ │ │ ├── __init__.py │ │ │ ├── test_extensions.py │ │ │ ├── test_style.py │ │ │ └── test_widgets.py │ │ └── widget_tests.py │ ├── tix.py │ └── ttk.py ├── token.py ├── tokenize.py ├── tomllib │ ├── __init__.py │ ├── _parser.py │ ├── _re.py │ └── _types.py ├── trace.py ├── traceback.py ├── tracemalloc.py ├── tty.py ├── turtle.py ├── turtledemo │ ├── __init__.py │ ├── __main__.py │ ├── bytedesign.py │ ├── chaos.py │ ├── clock.py │ ├── colormixer.py │ ├── forest.py │ ├── fractalcurves.py │ ├── lindenmayer.py │ ├── minimal_hanoi.py │ ├── nim.py │ ├── paint.py │ ├── peace.py │ ├── penrose.py │ ├── planet_and_moon.py │ ├── rosette.py │ ├── round_dance.py │ ├── sorting_animate.py │ ├── tree.py │ ├── turtle.cfg │ ├── two_canvases.py │ └── yinyang.py ├── types.py ├── typing.py ├── unittest │ ├── __init__.py │ ├── __main__.py │ ├── _log.py │ ├── async_case.py │ ├── case.py │ ├── loader.py │ ├── main.py │ ├── mock.py │ ├── result.py │ ├── runner.py │ ├── signals.py │ ├── suite.py │ ├── test │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _test_warnings.py │ │ ├── dummy.py │ │ ├── support.py │ │ ├── test_assertions.py │ │ ├── test_async_case.py │ │ ├── test_break.py │ │ ├── test_case.py │ │ ├── test_discovery.py │ │ ├── test_functiontestcase.py │ │ ├── test_loader.py │ │ ├── test_program.py │ │ ├── test_result.py │ │ ├── test_runner.py │ │ ├── test_setups.py │ │ ├── test_skipping.py │ │ ├── test_suite.py │ │ └── testmock │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── support.py │ │ │ ├── testasync.py │ │ │ ├── testcallable.py │ │ │ ├── testhelpers.py │ │ │ ├── testmagicmethods.py │ │ │ ├── testmock.py │ │ │ ├── testpatch.py │ │ │ ├── testsealable.py │ │ │ ├── testsentinel.py │ │ │ └── testwith.py │ └── util.py ├── urllib │ ├── __init__.py │ ├── error.py │ ├── parse.py │ ├── request.py │ ├── response.py │ └── robotparser.py ├── uu.py ├── uuid.py ├── venv │ ├── __init__.py │ ├── __main__.py │ └── scripts │ │ ├── common │ │ ├── Activate.ps1 │ │ └── activate │ │ ├── nt │ │ ├── activate.bat │ │ └── deactivate.bat │ │ └── posix │ │ ├── activate.csh │ │ └── activate.fish ├── warnings.py ├── wave.py ├── weakref.py ├── webbrowser.py ├── wheel.py ├── wsgiref │ ├── __init__.py │ ├── handlers.py │ ├── headers.py │ ├── simple_server.py │ ├── types.py │ ├── util.py │ └── validate.py ├── xdrlib.py ├── xml │ ├── __init__.py │ ├── dom │ │ ├── NodeFilter.py │ │ ├── __init__.py │ │ ├── domreg.py │ │ ├── expatbuilder.py │ │ ├── minicompat.py │ │ ├── minidom.py │ │ ├── pulldom.py │ │ └── xmlbuilder.py │ ├── etree │ │ ├── ElementInclude.py │ │ ├── ElementPath.py │ │ ├── ElementTree.py │ │ ├── __init__.py │ │ └── cElementTree.py │ ├── parsers │ │ ├── __init__.py │ │ └── expat.py │ └── sax │ │ ├── __init__.py │ │ ├── _exceptions.py │ │ ├── expatreader.py │ │ ├── handler.py │ │ ├── saxutils.py │ │ └── xmlreader.py ├── xmlrpc │ ├── __init__.py │ ├── client.py │ └── server.py ├── zipapp.py ├── zipfile.py ├── zipimport.py └── zoneinfo │ ├── __init__.py │ ├── _common.py │ ├── _tzpath.py │ └── _zoneinfo.py ├── Mac ├── BuildScript │ ├── README.rst │ ├── backport_gh110950_fix.patch │ ├── backport_gh71383_fix.patch │ ├── backport_gh92603_fix.patch │ ├── build-installer.py │ ├── resources │ │ ├── Conclusion.rtf │ │ ├── License.rtf │ │ ├── ReadMe.rtf │ │ ├── Welcome.rtf │ │ ├── background.jpg │ │ └── install_certificates.command │ ├── scripts │ │ ├── postflight.documentation │ │ ├── postflight.ensurepip │ │ ├── postflight.framework │ │ └── postflight.patch-profile │ ├── seticon.m │ └── tk868_on_10_8_10_9.patch ├── Extras.install.py ├── IDLE │ └── IDLE.app │ │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── IDLE │ │ ├── PkgInfo │ │ └── Resources │ │ ├── IDLE.icns │ │ ├── PythonCompiled.icns │ │ ├── PythonSource.icns │ │ └── idlemain.py ├── Icons │ ├── Disk Image.icns │ ├── IDLE.icns │ ├── Python Folder.icns │ ├── PythonCompiled.icns │ ├── PythonLauncher.icns │ ├── PythonSource.icns │ └── ReadMe.txt ├── Makefile.in ├── PythonLauncher │ ├── English.lproj │ │ ├── Credits.rtf │ │ ├── MainMenu.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── objects.nib │ │ ├── MyDocument.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── objects.nib │ │ └── PreferenceWindow.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── objects.nib │ ├── FileSettings.h │ ├── FileSettings.m │ ├── Info.plist.in │ ├── Makefile.in │ ├── MyAppDelegate.h │ ├── MyAppDelegate.m │ ├── MyDocument.h │ ├── MyDocument.m │ ├── PreferencesWindowController.h │ ├── PreferencesWindowController.m │ ├── doscript.h │ ├── doscript.m │ ├── factorySettings.plist │ └── main.m ├── README.rst ├── Resources │ ├── app │ │ ├── Info.plist.in │ │ ├── PkgInfo │ │ └── Resources │ │ │ ├── PythonApplet.icns │ │ │ └── PythonInterpreter.icns │ ├── framework │ │ └── Info.plist.in │ └── iconsrc │ │ ├── IDE.psd │ │ ├── PackageManager.psd │ │ ├── PythonApplet.psd │ │ ├── PythonCompiled.psd │ │ ├── PythonIcon.psd │ │ ├── PythonSource.psd │ │ └── PythonWSource.psd └── Tools │ ├── plistlib_generate_testdata.py │ └── pythonw.c ├── Makefile.pre.in ├── Misc ├── ACKS ├── HISTORY ├── NEWS.d │ ├── 3.10.0a1.rst │ ├── 3.10.0a2.rst │ ├── 3.10.0a3.rst │ ├── 3.10.0a4.rst │ ├── 3.10.0a5.rst │ ├── 3.10.0a6.rst │ ├── 3.10.0a7.rst │ ├── 3.10.0b1.rst │ ├── 3.11.0.rst │ ├── 3.11.0a1.rst │ ├── 3.11.0a2.rst │ ├── 3.11.0a3.rst │ ├── 3.11.0a4.rst │ ├── 3.11.0a5.rst │ ├── 3.11.0a6.rst │ ├── 3.11.0a7.rst │ ├── 3.11.0b1.rst │ ├── 3.11.0b2.rst │ ├── 3.11.0b3.rst │ ├── 3.11.0b4.rst │ ├── 3.11.0b5.rst │ ├── 3.11.0rc1.rst │ ├── 3.11.0rc2.rst │ ├── 3.11.1.rst │ ├── 3.11.2.rst │ ├── 3.11.3.rst │ ├── 3.11.4.rst │ ├── 3.11.5.rst │ ├── 3.11.6.rst │ ├── 3.11.7.rst │ ├── 3.11.8.rst │ ├── 3.11.9.rst │ ├── 3.5.0.rst │ ├── 3.5.0a1.rst │ ├── 3.5.0a2.rst │ ├── 3.5.0a3.rst │ ├── 3.5.0a4.rst │ ├── 3.5.0b1.rst │ ├── 3.5.0b2.rst │ ├── 3.5.0b3.rst │ ├── 3.5.0b4.rst │ ├── 3.5.0rc1.rst │ ├── 3.5.0rc2.rst │ ├── 3.5.0rc3.rst │ ├── 3.5.0rc4.rst │ ├── 3.5.1.rst │ ├── 3.5.1rc1.rst │ ├── 3.5.2.rst │ ├── 3.5.2rc1.rst │ ├── 3.5.3.rst │ ├── 3.5.3rc1.rst │ ├── 3.5.4.rst │ ├── 3.5.4rc1.rst │ ├── 3.5.5.rst │ ├── 3.5.5rc1.rst │ ├── 3.6.0.rst │ ├── 3.6.0a1.rst │ ├── 3.6.0a2.rst │ ├── 3.6.0a3.rst │ ├── 3.6.0a4.rst │ ├── 3.6.0b1.rst │ ├── 3.6.0b2.rst │ ├── 3.6.0b3.rst │ ├── 3.6.0b4.rst │ ├── 3.6.0rc1.rst │ ├── 3.6.0rc2.rst │ ├── 3.6.1.rst │ ├── 3.6.1rc1.rst │ ├── 3.6.2.rst │ ├── 3.6.2rc1.rst │ ├── 3.6.2rc2.rst │ ├── 3.6.3.rst │ ├── 3.6.3rc1.rst │ ├── 3.6.4.rst │ ├── 3.6.4rc1.rst │ ├── 3.6.5.rst │ ├── 3.6.5rc1.rst │ ├── 3.6.6.rst │ ├── 3.6.6rc1.rst │ ├── 3.7.0.rst │ ├── 3.7.0a1.rst │ ├── 3.7.0a2.rst │ ├── 3.7.0a3.rst │ ├── 3.7.0a4.rst │ ├── 3.7.0b1.rst │ ├── 3.7.0b2.rst │ ├── 3.7.0b3.rst │ ├── 3.7.0b4.rst │ ├── 3.7.0b5.rst │ ├── 3.7.0rc1.rst │ ├── 3.8.0a1.rst │ ├── 3.8.0a2.rst │ ├── 3.8.0a3.rst │ ├── 3.8.0a4.rst │ ├── 3.8.0b1.rst │ ├── 3.9.0a1.rst │ ├── 3.9.0a2.rst │ ├── 3.9.0a3.rst │ ├── 3.9.0a4.rst │ ├── 3.9.0a5.rst │ ├── 3.9.0a6.rst │ ├── 3.9.0b1.rst │ └── next │ │ ├── Build │ │ └── README.rst │ │ ├── C API │ │ └── README.rst │ │ ├── Core and Builtins │ │ ├── 2024-04-02-06-16-49.gh-issue-109120.X485oN.rst │ │ └── README.rst │ │ ├── Documentation │ │ └── README.rst │ │ ├── IDLE │ │ └── README.rst │ │ ├── Library │ │ ├── 2024-03-14-01-38-44.gh-issue-113171.VFnObz.rst │ │ ├── 2024-05-16-17-31-46.gh-issue-118643.hAWH4C.rst │ │ └── README.rst │ │ ├── Security │ │ ├── 2024-03-27-13-50-02.gh-issue-116741.ZoGryG.rst │ │ ├── 2024-05-01-20-57-09.gh-issue-118486.K44KJG.rst │ │ └── README.rst │ │ ├── Tests │ │ └── README.rst │ │ ├── Tools-Demos │ │ └── README.rst │ │ ├── Windows │ │ └── README.rst │ │ └── macOS │ │ └── README.rst ├── Porting ├── README ├── README.AIX ├── README.coverity ├── README.valgrind ├── SpecialBuilds.txt ├── coverity_model.c ├── gdbinit ├── indent.pro ├── python-config.in ├── python-config.sh.in ├── python-embed.pc.in ├── python.man ├── python.pc.in ├── rhel7 │ ├── README.md │ ├── openssl.pc │ ├── tcl.pc │ └── tk.pc ├── stable_abi.toml ├── svnmap.txt ├── valgrind-python.supp └── vgrindefs ├── Modules ├── README ├── Setup ├── Setup.bootstrap.in ├── Setup.macos ├── Setup.stdlib.in ├── _abc.c ├── _asynciomodule.c ├── _bisectmodule.c ├── _blake2 │ ├── blake2b2s.py │ ├── blake2b_impl.c │ ├── blake2module.c │ ├── blake2module.h │ ├── blake2s_impl.c │ ├── clinic │ │ ├── blake2b_impl.c.h │ │ └── blake2s_impl.c.h │ └── impl │ │ ├── blake2-config.h │ │ ├── blake2-impl.h │ │ ├── blake2.h │ │ ├── blake2b-load-sse2.h │ │ ├── blake2b-load-sse41.h │ │ ├── blake2b-ref.c │ │ ├── blake2b-round.h │ │ ├── blake2b.c │ │ ├── blake2s-load-sse2.h │ │ ├── blake2s-load-sse41.h │ │ ├── blake2s-load-xop.h │ │ ├── blake2s-ref.c │ │ ├── blake2s-round.h │ │ └── blake2s.c ├── _bz2module.c ├── _codecsmodule.c ├── _collectionsmodule.c ├── _contextvarsmodule.c ├── _cryptmodule.c ├── _csv.c ├── _ctypes │ ├── _ctypes.c │ ├── _ctypes_test.c │ ├── _ctypes_test.h │ ├── callbacks.c │ ├── callproc.c │ ├── cfield.c │ ├── ctypes.h │ ├── ctypes_dlfcn.h │ ├── darwin │ │ ├── LICENSE │ │ ├── README │ │ ├── README.ctypes │ │ ├── dlfcn.h │ │ └── dlfcn_simple.c │ ├── libffi_osx │ │ ├── LICENSE │ │ ├── README │ │ ├── README.pyobjc │ │ ├── ffi.c │ │ ├── include │ │ │ ├── ffi.h │ │ │ ├── ffi_common.h │ │ │ ├── fficonfig.h │ │ │ ├── ffitarget.h │ │ │ ├── ppc-ffitarget.h │ │ │ └── x86-ffitarget.h │ │ ├── powerpc │ │ │ ├── ppc-darwin.S │ │ │ ├── ppc-darwin.h │ │ │ ├── ppc-darwin_closure.S │ │ │ ├── ppc-ffi_darwin.c │ │ │ └── ppc64-darwin_closure.S │ │ ├── types.c │ │ └── x86 │ │ │ ├── darwin64.S │ │ │ ├── x86-darwin.S │ │ │ ├── x86-ffi64.c │ │ │ └── x86-ffi_darwin.c │ ├── malloc_closure.c │ └── stgdict.c ├── _curses_panel.c ├── _cursesmodule.c ├── _datetimemodule.c ├── _dbmmodule.c ├── _decimal │ ├── README.txt │ ├── _decimal.c │ ├── docstrings.h │ ├── libmpdec │ │ ├── README.txt │ │ ├── basearith.c │ │ ├── basearith.h │ │ ├── bench.c │ │ ├── bench_full.c │ │ ├── bits.h │ │ ├── constants.c │ │ ├── constants.h │ │ ├── context.c │ │ ├── convolute.c │ │ ├── convolute.h │ │ ├── crt.c │ │ ├── crt.h │ │ ├── difradix2.c │ │ ├── difradix2.h │ │ ├── examples │ │ │ ├── README.txt │ │ │ ├── compare.c │ │ │ ├── div.c │ │ │ ├── divmod.c │ │ │ ├── multiply.c │ │ │ ├── pow.c │ │ │ ├── powmod.c │ │ │ ├── shift.c │ │ │ └── sqrt.c │ │ ├── fnt.c │ │ ├── fnt.h │ │ ├── fourstep.c │ │ ├── fourstep.h │ │ ├── io.c │ │ ├── io.h │ │ ├── literature │ │ │ ├── REFERENCES.txt │ │ │ ├── bignum.txt │ │ │ ├── fnt.py │ │ │ ├── matrix-transform.txt │ │ │ ├── mulmod-64.txt │ │ │ ├── mulmod-ppro.txt │ │ │ ├── six-step.txt │ │ │ └── umodarith.lisp │ │ ├── mpalloc.c │ │ ├── mpalloc.h │ │ ├── mpdecimal.c │ │ ├── mpdecimal.h │ │ ├── mpsignal.c │ │ ├── numbertheory.c │ │ ├── numbertheory.h │ │ ├── sixstep.c │ │ ├── sixstep.h │ │ ├── transpose.c │ │ ├── transpose.h │ │ ├── typearith.h │ │ ├── umodarith.h │ │ └── vcdiv64.asm │ └── tests │ │ ├── README.txt │ │ ├── bench.py │ │ ├── bignum.py │ │ ├── deccheck.py │ │ ├── formathelper.py │ │ ├── randdec.py │ │ ├── randfloat.py │ │ ├── runall-memorydebugger.sh │ │ └── runall.bat ├── _elementtree.c ├── _functoolsmodule.c ├── _gdbmmodule.c ├── _hashopenssl.c ├── _heapqmodule.c ├── _io │ ├── _iomodule.c │ ├── _iomodule.h │ ├── bufferedio.c │ ├── bytesio.c │ ├── clinic │ │ ├── _iomodule.c.h │ │ ├── bufferedio.c.h │ │ ├── bytesio.c.h │ │ ├── fileio.c.h │ │ ├── iobase.c.h │ │ ├── stringio.c.h │ │ ├── textio.c.h │ │ └── winconsoleio.c.h │ ├── fileio.c │ ├── iobase.c │ ├── stringio.c │ ├── textio.c │ └── winconsoleio.c ├── _json.c ├── _localemodule.c ├── _lsprof.c ├── _lzmamodule.c ├── _math.h ├── _multiprocessing │ ├── clinic │ │ ├── multiprocessing.c.h │ │ ├── posixshmem.c.h │ │ └── semaphore.c.h │ ├── multiprocessing.c │ ├── multiprocessing.h │ ├── posixshmem.c │ └── semaphore.c ├── _opcode.c ├── _operator.c ├── _pickle.c ├── _posixsubprocess.c ├── _queuemodule.c ├── _randommodule.c ├── _scproxy.c ├── _sha3 │ ├── LICENSE │ ├── README.txt │ ├── clinic │ │ └── sha3module.c.h │ ├── sha3.c │ ├── sha3.h │ └── sha3module.c ├── _sqlite │ ├── blob.c │ ├── blob.h │ ├── clinic │ │ ├── blob.c.h │ │ ├── connection.c.h │ │ ├── cursor.c.h │ │ ├── module.c.h │ │ └── row.c.h │ ├── connection.c │ ├── connection.h │ ├── cursor.c │ ├── cursor.h │ ├── microprotocols.c │ ├── microprotocols.h │ ├── module.c │ ├── module.h │ ├── prepare_protocol.c │ ├── prepare_protocol.h │ ├── row.c │ ├── row.h │ ├── statement.c │ ├── statement.h │ ├── util.c │ └── util.h ├── _sre │ ├── clinic │ │ └── sre.c.h │ ├── sre.c │ ├── sre.h │ ├── sre_constants.h │ ├── sre_lib.h │ └── sre_targets.h ├── _ssl.c ├── _ssl.h ├── _ssl │ ├── cert.c │ ├── clinic │ │ └── cert.c.h │ ├── debughelpers.c │ └── misc.c ├── _ssl_data.h ├── _ssl_data_111.h ├── _ssl_data_300.h ├── _stat.c ├── _statisticsmodule.c ├── _struct.c ├── _testbuffer.c ├── _testcapi_feature_macros.inc ├── _testcapimodule.c ├── _testclinic.c ├── _testimportmultiple.c ├── _testinternalcapi.c ├── _testmultiphase.c ├── _threadmodule.c ├── _tkinter.c ├── _tracemalloc.c ├── _typingmodule.c ├── _uuidmodule.c ├── _weakref.c ├── _winapi.c ├── _xxsubinterpretersmodule.c ├── _xxtestfuzz │ ├── README.rst │ ├── _xxtestfuzz.c │ ├── dictionaries │ │ ├── fuzz_json_loads.dict │ │ └── fuzz_sre_compile.dict │ ├── fuzz_csv_reader_corpus │ │ └── test.csv │ ├── fuzz_json_loads_corpus │ │ ├── empty_array.json │ │ ├── empty_object.json │ │ ├── pass1.json │ │ ├── pass2.json │ │ ├── pass3.json │ │ └── simple_array.json │ ├── fuzz_sre_compile_corpus │ │ ├── anchor_links │ │ ├── characters │ │ ├── isbn │ │ └── phone_number │ ├── fuzz_struct_unpack_corpus │ │ ├── hello_string │ │ ├── long_zero │ │ └── varied_format_string │ ├── fuzz_tests.txt │ └── fuzzer.c ├── _zoneinfo.c ├── addrinfo.h ├── arraymodule.c ├── atexitmodule.c ├── audioop.c ├── binascii.c ├── cjkcodecs │ ├── README │ ├── _codecs_cn.c │ ├── _codecs_hk.c │ ├── _codecs_iso2022.c │ ├── _codecs_jp.c │ ├── _codecs_kr.c │ ├── _codecs_tw.c │ ├── alg_jisx0201.h │ ├── cjkcodecs.h │ ├── clinic │ │ └── multibytecodec.c.h │ ├── emu_jisx0213_2000.h │ ├── mappings_cn.h │ ├── mappings_hk.h │ ├── mappings_jisx0213_pair.h │ ├── mappings_jp.h │ ├── mappings_kr.h │ ├── mappings_tw.h │ ├── multibytecodec.c │ └── multibytecodec.h ├── clinic │ ├── _abc.c.h │ ├── _asynciomodule.c.h │ ├── _bisectmodule.c.h │ ├── _bz2module.c.h │ ├── _codecsmodule.c.h │ ├── _collectionsmodule.c.h │ ├── _contextvarsmodule.c.h │ ├── _cryptmodule.c.h │ ├── _csv.c.h │ ├── _curses_panel.c.h │ ├── _cursesmodule.c.h │ ├── _datetimemodule.c.h │ ├── _dbmmodule.c.h │ ├── _elementtree.c.h │ ├── _gdbmmodule.c.h │ ├── _hashopenssl.c.h │ ├── _heapqmodule.c.h │ ├── _localemodule.c.h │ ├── _lsprof.c.h │ ├── _lzmamodule.c.h │ ├── _opcode.c.h │ ├── _operator.c.h │ ├── _pickle.c.h │ ├── _queuemodule.c.h │ ├── _randommodule.c.h │ ├── _ssl.c.h │ ├── _statisticsmodule.c.h │ ├── _struct.c.h │ ├── _testclinic.c.h │ ├── _testmultiphase.c.h │ ├── _tkinter.c.h │ ├── _tracemalloc.c.h │ ├── _typingmodule.c.h │ ├── _weakref.c.h │ ├── _winapi.c.h │ ├── arraymodule.c.h │ ├── audioop.c.h │ ├── binascii.c.h │ ├── cmathmodule.c.h │ ├── fcntlmodule.c.h │ ├── gcmodule.c.h │ ├── grpmodule.c.h │ ├── itertoolsmodule.c.h │ ├── mathmodule.c.h │ ├── md5module.c.h │ ├── overlapped.c.h │ ├── posixmodule.c.h │ ├── pwdmodule.c.h │ ├── pyexpat.c.h │ ├── readline.c.h │ ├── resource.c.h │ ├── selectmodule.c.h │ ├── sha1module.c.h │ ├── sha256module.c.h │ ├── sha512module.c.h │ ├── signalmodule.c.h │ ├── socketmodule.c.h │ ├── spwdmodule.c.h │ ├── symtablemodule.c.h │ ├── termios.c.h │ ├── unicodedata.c.h │ └── zlibmodule.c.h ├── cmathmodule.c ├── config.c.in ├── errnomodule.c ├── expat │ ├── COPYING │ ├── ascii.h │ ├── asciitab.h │ ├── expat.h │ ├── expat_config.h │ ├── expat_external.h │ ├── iasciitab.h │ ├── internal.h │ ├── latin1tab.h │ ├── nametab.h │ ├── pyexpatns.h │ ├── siphash.h │ ├── utf8tab.h │ ├── winconfig.h │ ├── xmlparse.c │ ├── xmlrole.c │ ├── xmlrole.h │ ├── xmltok.c │ ├── xmltok.h │ ├── xmltok_impl.c │ ├── xmltok_impl.h │ └── xmltok_ns.c ├── faulthandler.c ├── fcntlmodule.c ├── gc_weakref.txt ├── gcmodule.c ├── getaddrinfo.c ├── getbuildinfo.c ├── getnameinfo.c ├── getpath.c ├── getpath.py ├── getpath_noop.c ├── grpmodule.c ├── hashlib.h ├── itertoolsmodule.c ├── ld_so_aix.in ├── main.c ├── makesetup ├── makexp_aix ├── mathmodule.c ├── md5module.c ├── mmapmodule.c ├── nismodule.c ├── ossaudiodev.c ├── overlapped.c ├── posixmodule.c ├── posixmodule.h ├── pwdmodule.c ├── pyexpat.c ├── readline.c ├── resource.c ├── rotatingtree.c ├── rotatingtree.h ├── selectmodule.c ├── sha1module.c ├── sha256module.c ├── sha512module.c ├── signalmodule.c ├── socketmodule.c ├── socketmodule.h ├── spwdmodule.c ├── symtablemodule.c ├── syslogmodule.c ├── termios.c ├── testcapi_long.h ├── timemodule.c ├── tkappinit.c ├── tkinter.h ├── unicodedata.c ├── unicodedata_db.h ├── unicodename_db.h ├── winreparse.h ├── xxlimited.c ├── xxlimited_35.c ├── xxmodule.c ├── xxsubtype.c └── zlibmodule.c ├── Objects ├── README ├── abstract.c ├── accu.c ├── boolobject.c ├── bytearrayobject.c ├── bytes_methods.c ├── bytesobject.c ├── call.c ├── capsule.c ├── cellobject.c ├── classobject.c ├── clinic │ ├── bytearrayobject.c.h │ ├── bytesobject.c.h │ ├── classobject.c.h │ ├── codeobject.c.h │ ├── complexobject.c.h │ ├── descrobject.c.h │ ├── dictobject.c.h │ ├── enumobject.c.h │ ├── floatobject.c.h │ ├── funcobject.c.h │ ├── listobject.c.h │ ├── longobject.c.h │ ├── memoryobject.c.h │ ├── moduleobject.c.h │ ├── odictobject.c.h │ ├── structseq.c.h │ ├── tupleobject.c.h │ ├── typeobject.c.h │ └── unicodeobject.c.h ├── codeobject.c ├── complexobject.c ├── descrobject.c ├── dictnotes.txt ├── dictobject.c ├── enumobject.c ├── exception_handling_notes.txt ├── exceptions.c ├── fileobject.c ├── floatobject.c ├── frame_layout.md ├── frameobject.c ├── funcobject.c ├── genericaliasobject.c ├── genobject.c ├── interpreteridobject.c ├── iterobject.c ├── listobject.c ├── listsort.txt ├── lnotab_notes.txt ├── locations.md ├── longobject.c ├── memoryobject.c ├── methodobject.c ├── moduleobject.c ├── namespaceobject.c ├── object.c ├── obmalloc.c ├── odictobject.c ├── picklebufobject.c ├── rangeobject.c ├── setobject.c ├── sliceobject.c ├── stringlib │ ├── README.txt │ ├── asciilib.h │ ├── clinic │ │ └── transmogrify.h.h │ ├── codecs.h │ ├── count.h │ ├── ctype.h │ ├── eq.h │ ├── fastsearch.h │ ├── find.h │ ├── find_max_char.h │ ├── join.h │ ├── localeutil.h │ ├── partition.h │ ├── replace.h │ ├── split.h │ ├── stringdefs.h │ ├── stringlib_find_two_way_notes.txt │ ├── transmogrify.h │ ├── ucs1lib.h │ ├── ucs2lib.h │ ├── ucs4lib.h │ ├── undef.h │ ├── unicode_format.h │ └── unicodedefs.h ├── structseq.c ├── tupleobject.c ├── typeobject.c ├── typeslots.inc ├── typeslots.py ├── unicodectype.c ├── unicodeobject.c ├── unicodetype_db.h ├── unionobject.c └── weakrefobject.c ├── PC ├── WinMain.c ├── _msi.c ├── _testconsole.c ├── classicAppCompat.can.xml ├── classicAppCompat.cat ├── classicAppCompat.sccd ├── clinic │ ├── _msi.c.h │ ├── _testconsole.c.h │ ├── msvcrtmodule.c.h │ ├── winreg.c.h │ └── winsound.c.h ├── config.c ├── config_minimal.c ├── crtlicense.txt ├── empty.c ├── errmap.h ├── frozen_dllmain.c ├── icons │ ├── Nuitka-Python-Logo-Symbol.ico │ ├── Nuitka-Python-Logo-Symbol.svg │ ├── idlex150.png │ ├── idlex44.png │ ├── launcher.icns │ ├── launcher.ico │ ├── launcher.svg │ ├── logo.svg │ ├── logox128.png │ ├── py.icns │ ├── py.ico │ ├── py.png │ ├── py.svg │ ├── pyc.icns │ ├── pyc.ico │ ├── pyc.svg │ ├── pyd.icns │ ├── pyd.ico │ ├── pyd.svg │ ├── setup.icns │ ├── setup.ico │ └── setup.svg ├── invalid_parameter_handler.c ├── launcher-usage.txt ├── launcher.c ├── launcher2.c ├── layout │ ├── __init__.py │ ├── __main__.py │ ├── main.py │ └── support │ │ ├── __init__.py │ │ ├── appxmanifest.py │ │ ├── catalog.py │ │ ├── constants.py │ │ ├── filesets.py │ │ ├── logging.py │ │ ├── nuspec.py │ │ ├── options.py │ │ ├── pip.py │ │ ├── props.py │ │ └── python.props ├── msvcrtmodule.c ├── pyconfig.h ├── pyshellext.cpp ├── pyshellext.def ├── pyshellext.rc ├── python.manifest ├── python3dll.c ├── python_exe.rc ├── python_nt.rc ├── python_uwp.cpp ├── python_ver_rc.h ├── pythonw_exe.rc ├── readme.txt ├── sqlite3.rc ├── store_info.txt ├── testpy.py ├── validate_ucrtbase.py ├── winreg.c └── winsound.c ├── PCbuild ├── Directory.Build.props ├── Directory.Build.targets ├── _asyncio.vcxproj ├── _asyncio.vcxproj.filters ├── _bz2.vcxproj ├── _bz2.vcxproj.filters ├── _ctypes.vcxproj ├── _ctypes.vcxproj.filters ├── _ctypes_test.vcxproj ├── _ctypes_test.vcxproj.filters ├── _decimal.vcxproj ├── _decimal.vcxproj.filters ├── _elementtree.vcxproj ├── _elementtree.vcxproj.filters ├── _freeze_module.vcxproj ├── _freeze_module.vcxproj.filters ├── _hashlib.vcxproj ├── _hashlib.vcxproj.filters ├── _lzma.vcxproj ├── _lzma.vcxproj.filters ├── _msi.vcxproj ├── _msi.vcxproj.filters ├── _multiprocessing.vcxproj ├── _multiprocessing.vcxproj.filters ├── _overlapped.vcxproj ├── _overlapped.vcxproj.filters ├── _queue.vcxproj ├── _queue.vcxproj.filters ├── _socket.vcxproj ├── _socket.vcxproj.filters ├── _sqlite3.vcxproj ├── _sqlite3.vcxproj.filters ├── _ssl.vcxproj ├── _ssl.vcxproj.filters ├── _testbuffer.vcxproj ├── _testbuffer.vcxproj.filters ├── _testcapi.vcxproj ├── _testcapi.vcxproj.filters ├── _testconsole.vcxproj ├── _testconsole.vcxproj.filters ├── _testembed.vcxproj ├── _testembed.vcxproj.filters ├── _testimportmultiple.vcxproj ├── _testimportmultiple.vcxproj.filters ├── _testinternalcapi.vcxproj ├── _testinternalcapi.vcxproj.filters ├── _testmultiphase.vcxproj ├── _testmultiphase.vcxproj.filters ├── _tkinter.vcxproj ├── _tkinter.vcxproj.filters ├── _uuid.vcxproj ├── _uuid.vcxproj.filters ├── _zoneinfo.vcxproj ├── _zoneinfo.vcxproj.filters ├── blurb.bat ├── build.bat ├── build_env.bat ├── clean.bat ├── env.bat ├── env.ps1 ├── field3.py ├── find_msbuild.bat ├── find_python.bat ├── fix_encoding.py ├── get_external.py ├── get_externals.bat ├── idle.bat ├── lib.pyproj ├── libffi.props ├── liblzma.vcxproj ├── liblzma.vcxproj.filters ├── openssl.props ├── openssl.vcxproj ├── pcbuild.proj ├── pcbuild.sln ├── prepare_libffi.bat ├── prepare_ssl.bat ├── prepare_ssl.py ├── prepare_tcltk.bat ├── pyexpat.vcxproj ├── pyexpat.vcxproj.filters ├── pyproject.props ├── pyshellext.vcxproj ├── pyshellext.vcxproj.filters ├── python.props ├── python.vcxproj ├── python.vcxproj.filters ├── python3dll.vcxproj ├── python3dll.vcxproj.filters ├── python_uwp.vcxproj ├── python_uwp.vcxproj.filters ├── pythoncore.vcxproj ├── pythoncore.vcxproj.filters ├── pythonw.vcxproj ├── pythonw.vcxproj.filters ├── pythonw_uwp.vcxproj ├── pythonw_uwp.vcxproj.filters ├── readme.txt ├── regen.targets ├── rmpyc.py ├── rt.bat ├── select.vcxproj ├── select.vcxproj.filters ├── sqlite3.vcxproj ├── sqlite3.vcxproj.filters ├── tcl.vcxproj ├── tcltk.props ├── tix.vcxproj ├── tk.vcxproj ├── unicodedata.vcxproj ├── unicodedata.vcxproj.filters ├── urlretrieve.py ├── winsound.vcxproj ├── winsound.vcxproj.filters ├── xxlimited.vcxproj ├── xxlimited.vcxproj.filters ├── xxlimited_35.vcxproj └── xxlimited_35.vcxproj.filters ├── Parser ├── Python.asdl ├── action_helpers.c ├── asdl.py ├── asdl_c.py ├── myreadline.c ├── parser.c ├── peg_api.c ├── pegen.c ├── pegen.h ├── pegen_errors.c ├── string_parser.c ├── string_parser.h ├── token.c ├── tokenizer.c └── tokenizer.h ├── Programs ├── README ├── _bootstrap_python.c ├── _freeze_module.c ├── _freeze_module.py ├── _testembed.c ├── freeze_test_frozenmain.py ├── python.c ├── test_frozenmain.h └── test_frozenmain.py ├── Python ├── Python-ast.c ├── Python-tokenize.c ├── README ├── _warnings.c ├── adaptive.md ├── asdl.c ├── ast.c ├── ast_opt.c ├── ast_unparse.c ├── bltinmodule.c ├── bootstrap_hash.c ├── ceval.c ├── ceval_gil.h ├── clinic │ ├── Python-tokenize.c.h │ ├── _warnings.c.h │ ├── bltinmodule.c.h │ ├── context.c.h │ ├── import.c.h │ ├── marshal.c.h │ ├── sysmodule.c.h │ └── traceback.c.h ├── codecs.c ├── compile.c ├── condvar.h ├── context.c ├── deepfreeze │ └── README.txt ├── dtoa.c ├── dup2.c ├── dynamic_annotations.c ├── dynload_hpux.c ├── dynload_shlib.c ├── dynload_stub.c ├── emscripten_signal.c ├── errors.c ├── fileutils.c ├── formatter_unicode.c ├── frame.c ├── frozen.c ├── frozen_modules │ └── README.txt ├── frozenmain.c ├── future.c ├── getargs.c ├── getcompiler.c ├── getcopyright.c ├── getopt.c ├── getplatform.c ├── getversion.c ├── hamt.c ├── hashtable.c ├── import.c ├── importdl.c ├── importdl.h ├── initconfig.c ├── makeopcodetargets.py ├── marshal.c ├── modsupport.c ├── mysnprintf.c ├── mystrtoul.c ├── opcode_targets.h ├── pathcch.c ├── pathconfig.c ├── preconfig.c ├── pyarena.c ├── pyctype.c ├── pyfpe.c ├── pyhash.c ├── pylifecycle.c ├── pymath.c ├── pystate.c ├── pystrcmp.c ├── pystrhex.c ├── pystrtod.c ├── pythonrun.c ├── pytime.c ├── specialize.c ├── stdlib_module_names.h ├── structmember.c ├── suggestions.c ├── symtable.c ├── sysmodule.c ├── thread.c ├── thread_nt.h ├── thread_pthread.h ├── thread_pthread_stubs.h └── traceback.c ├── README.rst ├── Tools ├── README ├── buildbot │ ├── build.bat │ ├── buildmsi.bat │ ├── clean.bat │ ├── remoteDeploy.bat │ ├── remotePythonInfo.bat │ └── test.bat ├── c-analyzer │ ├── README │ ├── TODO │ ├── c-analyzer.py │ ├── c_analyzer │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── analyze.py │ │ ├── datafiles.py │ │ ├── info.py │ │ └── match.py │ ├── c_common │ │ ├── __init__.py │ │ ├── clsutil.py │ │ ├── fsutil.py │ │ ├── info.py │ │ ├── iterutil.py │ │ ├── logging.py │ │ ├── misc.py │ │ ├── scriptutil.py │ │ ├── show.py │ │ ├── strutil.py │ │ └── tables.py │ ├── c_parser │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _state_machine.py │ │ ├── datafiles.py │ │ ├── info.py │ │ ├── match.py │ │ ├── parser │ │ │ ├── __init__.py │ │ │ ├── _alt.py │ │ │ ├── _common.py │ │ │ ├── _compound_decl_body.py │ │ │ ├── _delim.py │ │ │ ├── _func_body.py │ │ │ ├── _global.py │ │ │ ├── _info.py │ │ │ └── _regexes.py │ │ ├── preprocessor │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── common.py │ │ │ ├── errors.py │ │ │ ├── gcc.py │ │ │ └── pure.py │ │ └── source.py │ ├── check-c-globals.py │ ├── cpython │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _analyzer.py │ │ ├── _capi.py │ │ ├── _files.py │ │ ├── _parser.py │ │ ├── globals-to-fix.tsv │ │ ├── ignored.tsv │ │ └── known.tsv │ ├── must-resolve.sh │ └── table-file.py ├── ccbench │ └── ccbench.py ├── clinic │ ├── clinic.py │ └── cpp.py ├── demo │ ├── README │ ├── beer.py │ ├── eiffel.py │ ├── hanoi.py │ ├── life.py │ ├── markov.py │ ├── mcast.py │ ├── queens.py │ ├── redemo.py │ ├── rpython.py │ ├── rpythond.py │ ├── sortvisu.py │ ├── spreadsheet.py │ └── vector.py ├── freeze │ ├── README │ ├── bkfile.py │ ├── checkextensions.py │ ├── checkextensions_win32.py │ ├── extensions_win32.ini │ ├── flag.py │ ├── freeze.py │ ├── hello.py │ ├── makeconfig.py │ ├── makefreeze.py │ ├── makemakefile.py │ ├── parsesetup.py │ ├── regen_frozen.py │ ├── test │ │ ├── Makefile │ │ ├── freeze.py │ │ └── ok.py │ ├── win32.html │ └── winmakemakefile.py ├── gdb │ └── libpython.py ├── i18n │ ├── makelocalealias.py │ ├── msgfmt.py │ └── pygettext.py ├── importbench │ ├── README │ └── importbench.py ├── iobench │ └── iobench.py ├── msi │ ├── README.txt │ ├── appendpath │ │ ├── appendpath.wixproj │ │ ├── appendpath.wxs │ │ └── appendpath_en-US.wxl │ ├── build.bat │ ├── buildrelease.bat │ ├── bundle │ │ ├── Default.ARM64.xsl │ │ ├── Default.thm │ │ ├── Default.wxl │ │ ├── SideBar.png │ │ ├── bootstrap │ │ │ ├── LICENSE.txt │ │ │ ├── PythonBootstrapperApplication.cpp │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ ├── pythonba.cpp │ │ │ ├── pythonba.def │ │ │ ├── pythonba.sln │ │ │ ├── pythonba.vcxproj │ │ │ └── resource.h │ │ ├── bundle.targets │ │ ├── bundle.wxl │ │ ├── bundle.wxs │ │ ├── full.wixproj │ │ ├── packagegroups │ │ │ ├── core.wxs │ │ │ ├── crt.wxs │ │ │ ├── dev.wxs │ │ │ ├── doc.wxs │ │ │ ├── exe.wxs │ │ │ ├── launcher.wxs │ │ │ ├── lib.wxs │ │ │ ├── packageinstall.wxs │ │ │ ├── pip.wxs │ │ │ ├── postinstall.wxs │ │ │ ├── tcltk.wxs │ │ │ ├── test.wxs │ │ │ └── tools.wxs │ │ ├── releaselocal.wixproj │ │ ├── releaseweb.wixproj │ │ └── snapshot.wixproj │ ├── common.wxs │ ├── common_en-US.wxl_template │ ├── core │ │ ├── core.wixproj │ │ ├── core.wxs │ │ ├── core_d.wixproj │ │ ├── core_d.wxs │ │ ├── core_en-US.wxl │ │ ├── core_files.wxs │ │ ├── core_pdb.wixproj │ │ └── core_pdb.wxs │ ├── csv_to_wxs.py │ ├── dev │ │ ├── dev.wixproj │ │ ├── dev.wxs │ │ ├── dev_d.wixproj │ │ ├── dev_d.wxs │ │ ├── dev_en-US.wxl │ │ └── dev_files.wxs │ ├── doc │ │ ├── doc.wixproj │ │ ├── doc.wxs │ │ └── doc_en-US.wxl_template │ ├── exe │ │ ├── exe.wixproj │ │ ├── exe.wxs │ │ ├── exe_d.wixproj │ │ ├── exe_d.wxs │ │ ├── exe_en-US.wxl_template │ │ ├── exe_files.wxs │ │ ├── exe_pdb.wixproj │ │ ├── exe_pdb.wxs │ │ └── exe_reg.wxs │ ├── generate_md5.py │ ├── get_externals.bat │ ├── launcher │ │ ├── launcher.wixproj │ │ ├── launcher.wxs │ │ ├── launcher_en-US.wxl │ │ ├── launcher_files.wxs │ │ └── launcher_reg.wxs │ ├── lib │ │ ├── lib.wixproj │ │ ├── lib.wxs │ │ ├── lib_d.wixproj │ │ ├── lib_d.wxs │ │ ├── lib_en-US.wxl │ │ ├── lib_files.wxs │ │ ├── lib_pdb.wixproj │ │ └── lib_pdb.wxs │ ├── make_appx.ps1 │ ├── make_cat.ps1 │ ├── make_zip.proj │ ├── msi.props │ ├── msi.targets │ ├── path │ │ ├── path.wixproj │ │ ├── path.wxs │ │ └── path_en-US.wxl │ ├── pip │ │ ├── pip.wixproj │ │ ├── pip.wxs │ │ └── pip_en-US.wxl │ ├── purge.py │ ├── sdktools.psm1 │ ├── sign_build.ps1 │ ├── tcltk │ │ ├── tcltk.wixproj │ │ ├── tcltk.wxs │ │ ├── tcltk_d.wixproj │ │ ├── tcltk_d.wxs │ │ ├── tcltk_en-US.wxl_template │ │ ├── tcltk_files.wxs │ │ ├── tcltk_pdb.wixproj │ │ ├── tcltk_pdb.wxs │ │ └── tcltk_reg.wxs │ ├── test │ │ ├── test.wixproj │ │ ├── test.wxs │ │ ├── test_d.wixproj │ │ ├── test_d.wxs │ │ ├── test_en-US.wxl │ │ ├── test_files.wxs │ │ ├── test_pdb.wixproj │ │ └── test_pdb.wxs │ ├── testrelease.bat │ ├── tools │ │ ├── tools.wixproj │ │ ├── tools.wxs │ │ ├── tools_en-US.wxl │ │ └── tools_files.wxs │ ├── ucrt │ │ ├── ucrt.wixproj │ │ ├── ucrt.wxs │ │ └── ucrt_en-US.wxl │ ├── uploadrelease.bat │ ├── uploadrelease.proj │ ├── uploadrelease.ps1 │ └── wix.props ├── nuget │ ├── NuitkaPython.nuspec │ ├── NuitkaPythonarm32.nuspec │ ├── NuitkaPythonx86.nuspec │ ├── build.bat │ ├── make_pkg.proj │ ├── pythondaily.nuspec │ └── pythondaily.symbols.nuspec ├── peg_generator │ ├── .clang-format │ ├── .gitignore │ ├── Makefile │ ├── data │ │ ├── cprog.py │ │ ├── top-pypi-packages-365-days.json │ │ └── xxl.zip │ ├── mypy.ini │ ├── peg_extension │ │ ├── __init__.py │ │ └── peg_extension.c │ ├── pegen │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── ast_dump.py │ │ ├── build.py │ │ ├── c_generator.py │ │ ├── first_sets.py │ │ ├── grammar.py │ │ ├── grammar_parser.py │ │ ├── grammar_visualizer.py │ │ ├── keywordgen.py │ │ ├── metagrammar.gram │ │ ├── parser.py │ │ ├── parser_generator.py │ │ ├── python_generator.py │ │ ├── sccutils.py │ │ ├── testutil.py │ │ ├── tokenizer.py │ │ └── validator.py │ ├── pyproject.toml │ ├── requirements.pip │ └── scripts │ │ ├── __init__.py │ │ ├── ast_timings.py │ │ ├── benchmark.py │ │ ├── download_pypi_packages.py │ │ ├── find_max_nesting.py │ │ ├── grammar_grapher.py │ │ ├── joinstats.py │ │ ├── test_parse_directory.py │ │ └── test_pypi_packages.py ├── scripts │ ├── 2to3 │ ├── README │ ├── abitype.py │ ├── analyze_dxp.py │ ├── byext.py │ ├── byteyears.py │ ├── checkpip.py │ ├── cleanfuture.py │ ├── combinerefs.py │ ├── copytime.py │ ├── crlf.py │ ├── db2pickle.py │ ├── deepfreeze.py │ ├── diff.py │ ├── dutree.doc │ ├── dutree.py │ ├── eptags.py │ ├── find-uname.py │ ├── find_recursionlimit.py │ ├── finddiv.py │ ├── findlinksto.py │ ├── findnocoding.py │ ├── fixcid.py │ ├── fixdiv.py │ ├── fixheader.py │ ├── fixnotice.py │ ├── fixps.py │ ├── freeze_modules.py │ ├── generate_global_objects.py │ ├── generate_opcode_h.py │ ├── generate_re_casefix.py │ ├── generate_sre_constants.py │ ├── generate_stdlib_module_names.py │ ├── generate_token.py │ ├── get-remote-certificate.py │ ├── google.py │ ├── gprof2html.py │ ├── highlight.py │ ├── idle3 │ ├── ifdef.py │ ├── import_diagnostics.py │ ├── lfcr.py │ ├── linktree.py │ ├── lll.py │ ├── mailerdaemon.py │ ├── make_ctype.py │ ├── md5sum.py │ ├── mkreal.py │ ├── ndiff.py │ ├── nm2def.py │ ├── objgraph.py │ ├── parse_html5_entities.py │ ├── parseentities.py │ ├── patchcheck.py │ ├── pathfix.py │ ├── pdeps.py │ ├── pep384_macrocheck.py │ ├── pickle2db.py │ ├── pindent.py │ ├── ptags.py │ ├── pydoc3 │ ├── pysource.py │ ├── reindent-rst.py │ ├── reindent.py │ ├── rgrep.py │ ├── run_tests.py │ ├── smelly.py │ ├── sortperf.py │ ├── stable_abi.py │ ├── startuptime.py │ ├── suff.py │ ├── summarize_stats.py │ ├── texi2html.py │ ├── umarshal.py │ ├── untabify.py │ ├── update_file.py │ ├── var_access_benchmark.py │ ├── verify_ensurepip_wheels.py │ ├── which.py │ └── win_add2path.py ├── ssl │ ├── make_ssl_data.py │ └── multissltests.py ├── stringbench │ ├── README │ └── stringbench.py ├── tz │ └── zdump.py ├── unicode │ ├── Makefile │ ├── comparecodecs.py │ ├── gencjkcodecs.py │ ├── gencodec.py │ ├── genmap_japanese.py │ ├── genmap_korean.py │ ├── genmap_schinese.py │ ├── genmap_support.py │ ├── genwincodec.py │ ├── genwincodecs.bat │ ├── listcodecs.py │ ├── makeunicodedata.py │ ├── mkstringprep.py │ └── python-mappings │ │ ├── CP1140.TXT │ │ ├── CP273.TXT │ │ ├── GB2312.TXT │ │ ├── KOI8-U.TXT │ │ ├── TIS-620.TXT │ │ ├── diff │ │ ├── jisx0213-2000-std.txt.diff │ │ └── jisx0213-2004-std.txt.diff │ │ ├── gb-18030-2000.xml │ │ └── jisx0213-2004-std.txt ├── unittestgui │ ├── README.txt │ └── unittestgui.py └── wasm │ ├── .editorconfig │ ├── README.md │ ├── Setup.local.example │ ├── config.site-wasm32-emscripten │ ├── config.site-wasm32-wasi │ ├── python.html │ ├── python.worker.js │ ├── wasi-env │ ├── wasm_assets.py │ ├── wasm_build.py │ └── wasm_webserver.py ├── aclocal.m4 ├── config.guess ├── config.sub ├── configure ├── configure.ac ├── install-sh ├── pyconfig.h.in └── setup.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/.mailmap -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /Doc/c-api/frame.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Doc/c-api/frame.rst -------------------------------------------------------------------------------- /Doc/c-api/hash.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Doc/c-api/hash.rst -------------------------------------------------------------------------------- /Doc/constraints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Doc/constraints.txt -------------------------------------------------------------------------------- /Doc/howto/enum.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Doc/howto/enum.rst -------------------------------------------------------------------------------- /Doc/tools/.nitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Doc/tools/.nitignore -------------------------------------------------------------------------------- /Doc/whatsnew/3.10.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Doc/whatsnew/3.10.rst -------------------------------------------------------------------------------- /Doc/whatsnew/3.11.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Doc/whatsnew/3.11.rst -------------------------------------------------------------------------------- /Embedded/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Embedded/.gitignore -------------------------------------------------------------------------------- /Embedded/np_embed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Embedded/np_embed.c -------------------------------------------------------------------------------- /Grammar/Tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Grammar/Tokens -------------------------------------------------------------------------------- /Grammar/python.gram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Grammar/python.gram -------------------------------------------------------------------------------- /Include/Python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/Python.h -------------------------------------------------------------------------------- /Include/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/README.rst -------------------------------------------------------------------------------- /Include/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/abstract.h -------------------------------------------------------------------------------- /Include/bltinmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/bltinmodule.h -------------------------------------------------------------------------------- /Include/boolobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/boolobject.h -------------------------------------------------------------------------------- /Include/bytesobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/bytesobject.h -------------------------------------------------------------------------------- /Include/ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/ceval.h -------------------------------------------------------------------------------- /Include/codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/codecs.h -------------------------------------------------------------------------------- /Include/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/compile.h -------------------------------------------------------------------------------- /Include/cpython/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/cpython/code.h -------------------------------------------------------------------------------- /Include/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/datetime.h -------------------------------------------------------------------------------- /Include/descrobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/descrobject.h -------------------------------------------------------------------------------- /Include/dictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/dictobject.h -------------------------------------------------------------------------------- /Include/enumobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/enumobject.h -------------------------------------------------------------------------------- /Include/errcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/errcode.h -------------------------------------------------------------------------------- /Include/exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/exports.h -------------------------------------------------------------------------------- /Include/fileobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/fileobject.h -------------------------------------------------------------------------------- /Include/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/fileutils.h -------------------------------------------------------------------------------- /Include/floatobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/floatobject.h -------------------------------------------------------------------------------- /Include/frameobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/frameobject.h -------------------------------------------------------------------------------- /Include/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/import.h -------------------------------------------------------------------------------- /Include/intrcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/intrcheck.h -------------------------------------------------------------------------------- /Include/iterobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/iterobject.h -------------------------------------------------------------------------------- /Include/listobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/listobject.h -------------------------------------------------------------------------------- /Include/longobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/longobject.h -------------------------------------------------------------------------------- /Include/marshal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/marshal.h -------------------------------------------------------------------------------- /Include/memoryobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/memoryobject.h -------------------------------------------------------------------------------- /Include/methodobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/methodobject.h -------------------------------------------------------------------------------- /Include/modsupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/modsupport.h -------------------------------------------------------------------------------- /Include/moduleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/moduleobject.h -------------------------------------------------------------------------------- /Include/np_embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/np_embed.h -------------------------------------------------------------------------------- /Include/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/object.h -------------------------------------------------------------------------------- /Include/objimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/objimpl.h -------------------------------------------------------------------------------- /Include/opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/opcode.h -------------------------------------------------------------------------------- /Include/osdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/osdefs.h -------------------------------------------------------------------------------- /Include/osmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/osmodule.h -------------------------------------------------------------------------------- /Include/patchlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/patchlevel.h -------------------------------------------------------------------------------- /Include/py_curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/py_curses.h -------------------------------------------------------------------------------- /Include/pybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/pybuffer.h -------------------------------------------------------------------------------- /Include/pycapsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/pycapsule.h -------------------------------------------------------------------------------- /Include/pydtrace.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/pydtrace.d -------------------------------------------------------------------------------- /Include/pydtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/pydtrace.h -------------------------------------------------------------------------------- /Include/pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/pyerrors.h -------------------------------------------------------------------------------- /Include/pyexpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/pyexpat.h -------------------------------------------------------------------------------- /Include/pyframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/pyframe.h -------------------------------------------------------------------------------- /Include/pyhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/pyhash.h -------------------------------------------------------------------------------- /Include/pylifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/pylifecycle.h -------------------------------------------------------------------------------- /Include/pymacconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/pymacconfig.h -------------------------------------------------------------------------------- /Include/pymacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/pymacro.h -------------------------------------------------------------------------------- /Include/pymath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/pymath.h -------------------------------------------------------------------------------- /Include/pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/pymem.h -------------------------------------------------------------------------------- /Include/pyport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/pyport.h -------------------------------------------------------------------------------- /Include/pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/pystate.h -------------------------------------------------------------------------------- /Include/pystrcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/pystrcmp.h -------------------------------------------------------------------------------- /Include/pystrtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/pystrtod.h -------------------------------------------------------------------------------- /Include/pythonrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/pythonrun.h -------------------------------------------------------------------------------- /Include/pythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/pythread.h -------------------------------------------------------------------------------- /Include/pytypedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/pytypedefs.h -------------------------------------------------------------------------------- /Include/rangeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/rangeobject.h -------------------------------------------------------------------------------- /Include/setobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/setobject.h -------------------------------------------------------------------------------- /Include/sliceobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/sliceobject.h -------------------------------------------------------------------------------- /Include/staticinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/staticinit.h -------------------------------------------------------------------------------- /Include/structmember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/structmember.h -------------------------------------------------------------------------------- /Include/structseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/structseq.h -------------------------------------------------------------------------------- /Include/sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/sysmodule.h -------------------------------------------------------------------------------- /Include/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/token.h -------------------------------------------------------------------------------- /Include/traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/traceback.h -------------------------------------------------------------------------------- /Include/tracemalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/tracemalloc.h -------------------------------------------------------------------------------- /Include/tupleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/tupleobject.h -------------------------------------------------------------------------------- /Include/typeslots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/typeslots.h -------------------------------------------------------------------------------- /Include/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Include/warnings.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/LICENSE -------------------------------------------------------------------------------- /Lib/__future__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/__future__.py -------------------------------------------------------------------------------- /Lib/__hello__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/__hello__.py -------------------------------------------------------------------------------- /Lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/__np__/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/__np__/__init__.py -------------------------------------------------------------------------------- /Lib/__np__/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/__np__/common.py -------------------------------------------------------------------------------- /Lib/__np__/darwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/__np__/darwin.py -------------------------------------------------------------------------------- /Lib/__np__/linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/__np__/linux.py -------------------------------------------------------------------------------- /Lib/__np__/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/__np__/windows.py -------------------------------------------------------------------------------- /Lib/__phello__/ham/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/__phello__/ham/eggs.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/__phello__/spam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/__phello__/spam.py -------------------------------------------------------------------------------- /Lib/_aix_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/_aix_support.py -------------------------------------------------------------------------------- /Lib/_bootsubprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/_bootsubprocess.py -------------------------------------------------------------------------------- /Lib/_compat_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/_compat_pickle.py -------------------------------------------------------------------------------- /Lib/_compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/_compression.py -------------------------------------------------------------------------------- /Lib/_markupbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/_markupbase.py -------------------------------------------------------------------------------- /Lib/_osx_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/_osx_support.py -------------------------------------------------------------------------------- /Lib/_py_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/_py_abc.py -------------------------------------------------------------------------------- /Lib/_pydecimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/_pydecimal.py -------------------------------------------------------------------------------- /Lib/_pyio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/_pyio.py -------------------------------------------------------------------------------- /Lib/_sitebuiltins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/_sitebuiltins.py -------------------------------------------------------------------------------- /Lib/_strptime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/_strptime.py -------------------------------------------------------------------------------- /Lib/_weakrefset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/_weakrefset.py -------------------------------------------------------------------------------- /Lib/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/abc.py -------------------------------------------------------------------------------- /Lib/aifc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/aifc.py -------------------------------------------------------------------------------- /Lib/antigravity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/antigravity.py -------------------------------------------------------------------------------- /Lib/argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/argparse.py -------------------------------------------------------------------------------- /Lib/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/ast.py -------------------------------------------------------------------------------- /Lib/asynchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/asynchat.py -------------------------------------------------------------------------------- /Lib/asyncio/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/asyncio/events.py -------------------------------------------------------------------------------- /Lib/asyncio/futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/asyncio/futures.py -------------------------------------------------------------------------------- /Lib/asyncio/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/asyncio/locks.py -------------------------------------------------------------------------------- /Lib/asyncio/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/asyncio/log.py -------------------------------------------------------------------------------- /Lib/asyncio/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/asyncio/mixins.py -------------------------------------------------------------------------------- /Lib/asyncio/queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/asyncio/queues.py -------------------------------------------------------------------------------- /Lib/asyncio/runners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/asyncio/runners.py -------------------------------------------------------------------------------- /Lib/asyncio/streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/asyncio/streams.py -------------------------------------------------------------------------------- /Lib/asyncio/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/asyncio/tasks.py -------------------------------------------------------------------------------- /Lib/asyncio/threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/asyncio/threads.py -------------------------------------------------------------------------------- /Lib/asyncio/trsock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/asyncio/trsock.py -------------------------------------------------------------------------------- /Lib/asyncore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/asyncore.py -------------------------------------------------------------------------------- /Lib/base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/base64.py -------------------------------------------------------------------------------- /Lib/bdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/bdb.py -------------------------------------------------------------------------------- /Lib/bisect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/bisect.py -------------------------------------------------------------------------------- /Lib/bz2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/bz2.py -------------------------------------------------------------------------------- /Lib/cProfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/cProfile.py -------------------------------------------------------------------------------- /Lib/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/calendar.py -------------------------------------------------------------------------------- /Lib/cgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/cgi.py -------------------------------------------------------------------------------- /Lib/cgitb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/cgitb.py -------------------------------------------------------------------------------- /Lib/chunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/chunk.py -------------------------------------------------------------------------------- /Lib/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/cmd.py -------------------------------------------------------------------------------- /Lib/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/code.py -------------------------------------------------------------------------------- /Lib/codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/codecs.py -------------------------------------------------------------------------------- /Lib/codeop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/codeop.py -------------------------------------------------------------------------------- /Lib/collections/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/collections/abc.py -------------------------------------------------------------------------------- /Lib/colorsys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/colorsys.py -------------------------------------------------------------------------------- /Lib/compileall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/compileall.py -------------------------------------------------------------------------------- /Lib/concurrent/__init__.py: -------------------------------------------------------------------------------- 1 | # This directory is a Python package. 2 | -------------------------------------------------------------------------------- /Lib/configparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/configparser.py -------------------------------------------------------------------------------- /Lib/contextlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/contextlib.py -------------------------------------------------------------------------------- /Lib/contextvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/contextvars.py -------------------------------------------------------------------------------- /Lib/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/copy.py -------------------------------------------------------------------------------- /Lib/copyreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/copyreg.py -------------------------------------------------------------------------------- /Lib/crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/crypt.py -------------------------------------------------------------------------------- /Lib/csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/csv.py -------------------------------------------------------------------------------- /Lib/ctypes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/ctypes/__init__.py -------------------------------------------------------------------------------- /Lib/ctypes/_aix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/ctypes/_aix.py -------------------------------------------------------------------------------- /Lib/ctypes/_endian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/ctypes/_endian.py -------------------------------------------------------------------------------- /Lib/ctypes/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/ctypes/util.py -------------------------------------------------------------------------------- /Lib/ctypes/wintypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/ctypes/wintypes.py -------------------------------------------------------------------------------- /Lib/curses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/curses/__init__.py -------------------------------------------------------------------------------- /Lib/curses/ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/curses/ascii.py -------------------------------------------------------------------------------- /Lib/curses/has_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/curses/has_key.py -------------------------------------------------------------------------------- /Lib/curses/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/curses/panel.py -------------------------------------------------------------------------------- /Lib/curses/textpad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/curses/textpad.py -------------------------------------------------------------------------------- /Lib/dataclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/dataclasses.py -------------------------------------------------------------------------------- /Lib/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/datetime.py -------------------------------------------------------------------------------- /Lib/dbm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/dbm/__init__.py -------------------------------------------------------------------------------- /Lib/dbm/dumb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/dbm/dumb.py -------------------------------------------------------------------------------- /Lib/dbm/gnu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/dbm/gnu.py -------------------------------------------------------------------------------- /Lib/dbm/ndbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/dbm/ndbm.py -------------------------------------------------------------------------------- /Lib/decimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/decimal.py -------------------------------------------------------------------------------- /Lib/difflib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/difflib.py -------------------------------------------------------------------------------- /Lib/dis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/dis.py -------------------------------------------------------------------------------- /Lib/distutils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/distutils/README -------------------------------------------------------------------------------- /Lib/distutils/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/distutils/cmd.py -------------------------------------------------------------------------------- /Lib/distutils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/distutils/core.py -------------------------------------------------------------------------------- /Lib/distutils/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/distutils/debug.py -------------------------------------------------------------------------------- /Lib/distutils/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/distutils/dist.py -------------------------------------------------------------------------------- /Lib/distutils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/distutils/log.py -------------------------------------------------------------------------------- /Lib/distutils/spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/distutils/spawn.py -------------------------------------------------------------------------------- /Lib/distutils/tests/includetest.rst: -------------------------------------------------------------------------------- 1 | This should be included. 2 | -------------------------------------------------------------------------------- /Lib/distutils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/distutils/util.py -------------------------------------------------------------------------------- /Lib/doctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/doctest.py -------------------------------------------------------------------------------- /Lib/email/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/email/__init__.py -------------------------------------------------------------------------------- /Lib/email/charset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/email/charset.py -------------------------------------------------------------------------------- /Lib/email/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/email/encoders.py -------------------------------------------------------------------------------- /Lib/email/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/email/errors.py -------------------------------------------------------------------------------- /Lib/email/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/email/generator.py -------------------------------------------------------------------------------- /Lib/email/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/email/header.py -------------------------------------------------------------------------------- /Lib/email/iterators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/email/iterators.py -------------------------------------------------------------------------------- /Lib/email/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/email/message.py -------------------------------------------------------------------------------- /Lib/email/mime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/email/mime/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/email/mime/base.py -------------------------------------------------------------------------------- /Lib/email/mime/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/email/mime/text.py -------------------------------------------------------------------------------- /Lib/email/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/email/parser.py -------------------------------------------------------------------------------- /Lib/email/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/email/policy.py -------------------------------------------------------------------------------- /Lib/email/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/email/utils.py -------------------------------------------------------------------------------- /Lib/encodings/ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/ascii.py -------------------------------------------------------------------------------- /Lib/encodings/big5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/big5.py -------------------------------------------------------------------------------- /Lib/encodings/cp037.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp037.py -------------------------------------------------------------------------------- /Lib/encodings/cp273.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp273.py -------------------------------------------------------------------------------- /Lib/encodings/cp424.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp424.py -------------------------------------------------------------------------------- /Lib/encodings/cp437.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp437.py -------------------------------------------------------------------------------- /Lib/encodings/cp500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp500.py -------------------------------------------------------------------------------- /Lib/encodings/cp720.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp720.py -------------------------------------------------------------------------------- /Lib/encodings/cp737.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp737.py -------------------------------------------------------------------------------- /Lib/encodings/cp775.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp775.py -------------------------------------------------------------------------------- /Lib/encodings/cp850.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp850.py -------------------------------------------------------------------------------- /Lib/encodings/cp852.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp852.py -------------------------------------------------------------------------------- /Lib/encodings/cp855.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp855.py -------------------------------------------------------------------------------- /Lib/encodings/cp856.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp856.py -------------------------------------------------------------------------------- /Lib/encodings/cp857.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp857.py -------------------------------------------------------------------------------- /Lib/encodings/cp858.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp858.py -------------------------------------------------------------------------------- /Lib/encodings/cp860.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp860.py -------------------------------------------------------------------------------- /Lib/encodings/cp861.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp861.py -------------------------------------------------------------------------------- /Lib/encodings/cp862.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp862.py -------------------------------------------------------------------------------- /Lib/encodings/cp863.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp863.py -------------------------------------------------------------------------------- /Lib/encodings/cp864.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp864.py -------------------------------------------------------------------------------- /Lib/encodings/cp865.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp865.py -------------------------------------------------------------------------------- /Lib/encodings/cp866.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp866.py -------------------------------------------------------------------------------- /Lib/encodings/cp869.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp869.py -------------------------------------------------------------------------------- /Lib/encodings/cp874.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp874.py -------------------------------------------------------------------------------- /Lib/encodings/cp875.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp875.py -------------------------------------------------------------------------------- /Lib/encodings/cp932.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp932.py -------------------------------------------------------------------------------- /Lib/encodings/cp949.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp949.py -------------------------------------------------------------------------------- /Lib/encodings/cp950.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/cp950.py -------------------------------------------------------------------------------- /Lib/encodings/gbk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/gbk.py -------------------------------------------------------------------------------- /Lib/encodings/hz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/hz.py -------------------------------------------------------------------------------- /Lib/encodings/idna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/idna.py -------------------------------------------------------------------------------- /Lib/encodings/johab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/johab.py -------------------------------------------------------------------------------- /Lib/encodings/mbcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/mbcs.py -------------------------------------------------------------------------------- /Lib/encodings/oem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/oem.py -------------------------------------------------------------------------------- /Lib/encodings/utf_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/utf_7.py -------------------------------------------------------------------------------- /Lib/encodings/utf_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/encodings/utf_8.py -------------------------------------------------------------------------------- /Lib/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/enum.py -------------------------------------------------------------------------------- /Lib/filecmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/filecmp.py -------------------------------------------------------------------------------- /Lib/fileinput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/fileinput.py -------------------------------------------------------------------------------- /Lib/fnmatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/fnmatch.py -------------------------------------------------------------------------------- /Lib/fractions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/fractions.py -------------------------------------------------------------------------------- /Lib/ftplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/ftplib.py -------------------------------------------------------------------------------- /Lib/functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/functools.py -------------------------------------------------------------------------------- /Lib/genericpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/genericpath.py -------------------------------------------------------------------------------- /Lib/getopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/getopt.py -------------------------------------------------------------------------------- /Lib/getpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/getpass.py -------------------------------------------------------------------------------- /Lib/gettext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/gettext.py -------------------------------------------------------------------------------- /Lib/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/glob.py -------------------------------------------------------------------------------- /Lib/graphlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/graphlib.py -------------------------------------------------------------------------------- /Lib/gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/gzip.py -------------------------------------------------------------------------------- /Lib/hashlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/hashlib.py -------------------------------------------------------------------------------- /Lib/heapq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/heapq.py -------------------------------------------------------------------------------- /Lib/hmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/hmac.py -------------------------------------------------------------------------------- /Lib/html/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/html/__init__.py -------------------------------------------------------------------------------- /Lib/html/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/html/entities.py -------------------------------------------------------------------------------- /Lib/html/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/html/parser.py -------------------------------------------------------------------------------- /Lib/http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/http/__init__.py -------------------------------------------------------------------------------- /Lib/http/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/http/client.py -------------------------------------------------------------------------------- /Lib/http/cookiejar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/http/cookiejar.py -------------------------------------------------------------------------------- /Lib/http/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/http/cookies.py -------------------------------------------------------------------------------- /Lib/http/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/http/server.py -------------------------------------------------------------------------------- /Lib/idlelib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/ChangeLog -------------------------------------------------------------------------------- /Lib/idlelib/NEWS2x.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/NEWS2x.txt -------------------------------------------------------------------------------- /Lib/idlelib/News3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/News3.txt -------------------------------------------------------------------------------- /Lib/idlelib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/README.txt -------------------------------------------------------------------------------- /Lib/idlelib/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/TODO.txt -------------------------------------------------------------------------------- /Lib/idlelib/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/browser.py -------------------------------------------------------------------------------- /Lib/idlelib/calltip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/calltip.py -------------------------------------------------------------------------------- /Lib/idlelib/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/config.py -------------------------------------------------------------------------------- /Lib/idlelib/editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/editor.py -------------------------------------------------------------------------------- /Lib/idlelib/extend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/extend.txt -------------------------------------------------------------------------------- /Lib/idlelib/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/format.py -------------------------------------------------------------------------------- /Lib/idlelib/grep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/grep.py -------------------------------------------------------------------------------- /Lib/idlelib/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/help.html -------------------------------------------------------------------------------- /Lib/idlelib/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/help.py -------------------------------------------------------------------------------- /Lib/idlelib/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/history.py -------------------------------------------------------------------------------- /Lib/idlelib/idle.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/idle.bat -------------------------------------------------------------------------------- /Lib/idlelib/idle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/idle.py -------------------------------------------------------------------------------- /Lib/idlelib/idle.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/idle.pyw -------------------------------------------------------------------------------- /Lib/idlelib/iomenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/iomenu.py -------------------------------------------------------------------------------- /Lib/idlelib/macosx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/macosx.py -------------------------------------------------------------------------------- /Lib/idlelib/outwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/outwin.py -------------------------------------------------------------------------------- /Lib/idlelib/pyparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/pyparse.py -------------------------------------------------------------------------------- /Lib/idlelib/pyshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/pyshell.py -------------------------------------------------------------------------------- /Lib/idlelib/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/query.py -------------------------------------------------------------------------------- /Lib/idlelib/replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/replace.py -------------------------------------------------------------------------------- /Lib/idlelib/rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/rpc.py -------------------------------------------------------------------------------- /Lib/idlelib/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/run.py -------------------------------------------------------------------------------- /Lib/idlelib/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/search.py -------------------------------------------------------------------------------- /Lib/idlelib/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/sidebar.py -------------------------------------------------------------------------------- /Lib/idlelib/tooltip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/tooltip.py -------------------------------------------------------------------------------- /Lib/idlelib/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/tree.py -------------------------------------------------------------------------------- /Lib/idlelib/undo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/undo.py -------------------------------------------------------------------------------- /Lib/idlelib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/util.py -------------------------------------------------------------------------------- /Lib/idlelib/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/window.py -------------------------------------------------------------------------------- /Lib/idlelib/zzdummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/idlelib/zzdummy.py -------------------------------------------------------------------------------- /Lib/imaplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/imaplib.py -------------------------------------------------------------------------------- /Lib/imghdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/imghdr.py -------------------------------------------------------------------------------- /Lib/imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/imp.py -------------------------------------------------------------------------------- /Lib/importlib/_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/importlib/_abc.py -------------------------------------------------------------------------------- /Lib/importlib/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/importlib/abc.py -------------------------------------------------------------------------------- /Lib/importlib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/importlib/util.py -------------------------------------------------------------------------------- /Lib/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/inspect.py -------------------------------------------------------------------------------- /Lib/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/io.py -------------------------------------------------------------------------------- /Lib/ipaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/ipaddress.py -------------------------------------------------------------------------------- /Lib/json/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/json/__init__.py -------------------------------------------------------------------------------- /Lib/json/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/json/decoder.py -------------------------------------------------------------------------------- /Lib/json/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/json/encoder.py -------------------------------------------------------------------------------- /Lib/json/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/json/scanner.py -------------------------------------------------------------------------------- /Lib/json/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/json/tool.py -------------------------------------------------------------------------------- /Lib/keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/keyword.py -------------------------------------------------------------------------------- /Lib/lib2to3/fixes/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /Lib/lib2to3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/lib2to3/main.py -------------------------------------------------------------------------------- /Lib/lib2to3/patcomp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/lib2to3/patcomp.py -------------------------------------------------------------------------------- /Lib/lib2to3/pygram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/lib2to3/pygram.py -------------------------------------------------------------------------------- /Lib/lib2to3/pytree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/lib2to3/pytree.py -------------------------------------------------------------------------------- /Lib/lib2to3/tests/data/bom.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | print "BOM BOOM!" 3 | -------------------------------------------------------------------------------- /Lib/lib2to3/tests/data/false_encoding.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | print '#coding=0' 3 | -------------------------------------------------------------------------------- /Lib/lib2to3/tests/data/fixers/myfixes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/lib2to3/tests/data/fixers/parrot_example.py: -------------------------------------------------------------------------------- 1 | def parrot(): 2 | pass 3 | -------------------------------------------------------------------------------- /Lib/linecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/linecache.py -------------------------------------------------------------------------------- /Lib/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/locale.py -------------------------------------------------------------------------------- /Lib/logging/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/logging/config.py -------------------------------------------------------------------------------- /Lib/lzma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/lzma.py -------------------------------------------------------------------------------- /Lib/mailbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/mailbox.py -------------------------------------------------------------------------------- /Lib/mailcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/mailcap.py -------------------------------------------------------------------------------- /Lib/mimetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/mimetypes.py -------------------------------------------------------------------------------- /Lib/mkembeddata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/mkembeddata.py -------------------------------------------------------------------------------- /Lib/modulefinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/modulefinder.py -------------------------------------------------------------------------------- /Lib/msilib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/msilib/__init__.py -------------------------------------------------------------------------------- /Lib/msilib/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/msilib/schema.py -------------------------------------------------------------------------------- /Lib/msilib/sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/msilib/sequence.py -------------------------------------------------------------------------------- /Lib/msilib/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/msilib/text.py -------------------------------------------------------------------------------- /Lib/netrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/netrc.py -------------------------------------------------------------------------------- /Lib/nntplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/nntplib.py -------------------------------------------------------------------------------- /Lib/ntpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/ntpath.py -------------------------------------------------------------------------------- /Lib/nturl2path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/nturl2path.py -------------------------------------------------------------------------------- /Lib/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/numbers.py -------------------------------------------------------------------------------- /Lib/opcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/opcode.py -------------------------------------------------------------------------------- /Lib/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/operator.py -------------------------------------------------------------------------------- /Lib/optparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/optparse.py -------------------------------------------------------------------------------- /Lib/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/os.py -------------------------------------------------------------------------------- /Lib/pathlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/pathlib.py -------------------------------------------------------------------------------- /Lib/pdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/pdb.py -------------------------------------------------------------------------------- /Lib/pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/pickle.py -------------------------------------------------------------------------------- /Lib/pickletools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/pickletools.py -------------------------------------------------------------------------------- /Lib/pip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/pip.py -------------------------------------------------------------------------------- /Lib/pipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/pipes.py -------------------------------------------------------------------------------- /Lib/pkgutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/pkgutil.py -------------------------------------------------------------------------------- /Lib/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/platform.py -------------------------------------------------------------------------------- /Lib/plistlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/plistlib.py -------------------------------------------------------------------------------- /Lib/poplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/poplib.py -------------------------------------------------------------------------------- /Lib/posixpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/posixpath.py -------------------------------------------------------------------------------- /Lib/pprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/pprint.py -------------------------------------------------------------------------------- /Lib/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/profile.py -------------------------------------------------------------------------------- /Lib/pstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/pstats.py -------------------------------------------------------------------------------- /Lib/pty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/pty.py -------------------------------------------------------------------------------- /Lib/py_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/py_compile.py -------------------------------------------------------------------------------- /Lib/pyclbr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/pyclbr.py -------------------------------------------------------------------------------- /Lib/pydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/pydoc.py -------------------------------------------------------------------------------- /Lib/pydoc_data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/queue.py -------------------------------------------------------------------------------- /Lib/quopri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/quopri.py -------------------------------------------------------------------------------- /Lib/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/random.py -------------------------------------------------------------------------------- /Lib/re/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/re/__init__.py -------------------------------------------------------------------------------- /Lib/re/_casefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/re/_casefix.py -------------------------------------------------------------------------------- /Lib/re/_compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/re/_compiler.py -------------------------------------------------------------------------------- /Lib/re/_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/re/_constants.py -------------------------------------------------------------------------------- /Lib/re/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/re/_parser.py -------------------------------------------------------------------------------- /Lib/rebuildembed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/rebuildembed.py -------------------------------------------------------------------------------- /Lib/rebuildpython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/rebuildpython.py -------------------------------------------------------------------------------- /Lib/reprlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/reprlib.py -------------------------------------------------------------------------------- /Lib/rlcompleter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/rlcompleter.py -------------------------------------------------------------------------------- /Lib/runpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/runpy.py -------------------------------------------------------------------------------- /Lib/sched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/sched.py -------------------------------------------------------------------------------- /Lib/secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/secrets.py -------------------------------------------------------------------------------- /Lib/selectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/selectors.py -------------------------------------------------------------------------------- /Lib/shelve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/shelve.py -------------------------------------------------------------------------------- /Lib/shlex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/shlex.py -------------------------------------------------------------------------------- /Lib/shutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/shutil.py -------------------------------------------------------------------------------- /Lib/signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/signal.py -------------------------------------------------------------------------------- /Lib/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/site.py -------------------------------------------------------------------------------- /Lib/smtpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/smtpd.py -------------------------------------------------------------------------------- /Lib/smtplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/smtplib.py -------------------------------------------------------------------------------- /Lib/sndhdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/sndhdr.py -------------------------------------------------------------------------------- /Lib/socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/socket.py -------------------------------------------------------------------------------- /Lib/socketserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/socketserver.py -------------------------------------------------------------------------------- /Lib/sqlite3/dbapi2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/sqlite3/dbapi2.py -------------------------------------------------------------------------------- /Lib/sqlite3/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/sqlite3/dump.py -------------------------------------------------------------------------------- /Lib/sre_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/sre_compile.py -------------------------------------------------------------------------------- /Lib/sre_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/sre_constants.py -------------------------------------------------------------------------------- /Lib/sre_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/sre_parse.py -------------------------------------------------------------------------------- /Lib/ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/ssl.py -------------------------------------------------------------------------------- /Lib/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/stat.py -------------------------------------------------------------------------------- /Lib/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/statistics.py -------------------------------------------------------------------------------- /Lib/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/string.py -------------------------------------------------------------------------------- /Lib/stringprep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/stringprep.py -------------------------------------------------------------------------------- /Lib/struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/struct.py -------------------------------------------------------------------------------- /Lib/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/subprocess.py -------------------------------------------------------------------------------- /Lib/sunau.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/sunau.py -------------------------------------------------------------------------------- /Lib/symtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/symtable.py -------------------------------------------------------------------------------- /Lib/sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/sysconfig.py -------------------------------------------------------------------------------- /Lib/tabnanny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/tabnanny.py -------------------------------------------------------------------------------- /Lib/tarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/tarfile.py -------------------------------------------------------------------------------- /Lib/telnetlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/telnetlib.py -------------------------------------------------------------------------------- /Lib/tempfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/tempfile.py -------------------------------------------------------------------------------- /Lib/test/.ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/.ruff.toml -------------------------------------------------------------------------------- /Lib/test/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /Lib/test/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/__main__.py -------------------------------------------------------------------------------- /Lib/test/audiotest.au: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/audiotest.au -------------------------------------------------------------------------------- /Lib/test/audiotests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/audiotests.py -------------------------------------------------------------------------------- /Lib/test/autotest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/autotest.py -------------------------------------------------------------------------------- /Lib/test/bisect_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/bisect_cmd.py -------------------------------------------------------------------------------- /Lib/test/certdata/nullcert.pem: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/cjkencodings/big5hkscs-utf8.txt: -------------------------------------------------------------------------------- 1 | 𠄌Ě鵮罓洆 2 | ÊÊ̄ê êê̄ 3 | -------------------------------------------------------------------------------- /Lib/test/clinic.test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/clinic.test.c -------------------------------------------------------------------------------- /Lib/test/data/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/data/README -------------------------------------------------------------------------------- /Lib/test/dis_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/dis_module.py -------------------------------------------------------------------------------- /Lib/test/empty.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/empty.vbs -------------------------------------------------------------------------------- /Lib/test/fork_wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/fork_wait.py -------------------------------------------------------------------------------- /Lib/test/ieee754.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/ieee754.txt -------------------------------------------------------------------------------- /Lib/test/imp_dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/imp_dummy.py -------------------------------------------------------------------------------- /Lib/test/leakers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/libregrtest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/list_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/list_tests.py -------------------------------------------------------------------------------- /Lib/test/lock_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/lock_tests.py -------------------------------------------------------------------------------- /Lib/test/mailcap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/mailcap.txt -------------------------------------------------------------------------------- /Lib/test/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/mime.types -------------------------------------------------------------------------------- /Lib/test/mp_preload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/mp_preload.py -------------------------------------------------------------------------------- /Lib/test/profilee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/profilee.py -------------------------------------------------------------------------------- /Lib/test/pstats.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/pstats.pck -------------------------------------------------------------------------------- /Lib/test/pythoninfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/pythoninfo.py -------------------------------------------------------------------------------- /Lib/test/randv2_32.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/randv2_32.pck -------------------------------------------------------------------------------- /Lib/test/randv2_64.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/randv2_64.pck -------------------------------------------------------------------------------- /Lib/test/randv3.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/randv3.pck -------------------------------------------------------------------------------- /Lib/test/re_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/re_tests.py -------------------------------------------------------------------------------- /Lib/test/recursion.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/recursion.tar -------------------------------------------------------------------------------- /Lib/test/regrtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/regrtest.py -------------------------------------------------------------------------------- /Lib/test/regrtestdata/import_from_tests/test_regrtest_b/util.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/relimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/relimport.py -------------------------------------------------------------------------------- /Lib/test/reperf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/reperf.py -------------------------------------------------------------------------------- /Lib/test/seq_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/seq_tests.py -------------------------------------------------------------------------------- /Lib/test/ssltests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/ssltests.py -------------------------------------------------------------------------------- /Lib/test/test_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_abc.py -------------------------------------------------------------------------------- /Lib/test/test_aifc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_aifc.py -------------------------------------------------------------------------------- /Lib/test/test_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_array.py -------------------------------------------------------------------------------- /Lib/test/test_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_ast.py -------------------------------------------------------------------------------- /Lib/test/test_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_audit.py -------------------------------------------------------------------------------- /Lib/test/test_bdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_bdb.py -------------------------------------------------------------------------------- /Lib/test/test_binop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_binop.py -------------------------------------------------------------------------------- /Lib/test/test_bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_bool.py -------------------------------------------------------------------------------- /Lib/test/test_bufio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_bufio.py -------------------------------------------------------------------------------- /Lib/test/test_bytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_bytes.py -------------------------------------------------------------------------------- /Lib/test/test_bz2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_bz2.py -------------------------------------------------------------------------------- /Lib/test/test_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_call.py -------------------------------------------------------------------------------- /Lib/test/test_cgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_cgi.py -------------------------------------------------------------------------------- /Lib/test/test_cgitb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_cgitb.py -------------------------------------------------------------------------------- /Lib/test/test_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_class.py -------------------------------------------------------------------------------- /Lib/test/test_cmath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_cmath.py -------------------------------------------------------------------------------- /Lib/test/test_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_cmd.py -------------------------------------------------------------------------------- /Lib/test/test_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_code.py -------------------------------------------------------------------------------- /Lib/test/test_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_copy.py -------------------------------------------------------------------------------- /Lib/test/test_crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_crypt.py -------------------------------------------------------------------------------- /Lib/test/test_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_csv.py -------------------------------------------------------------------------------- /Lib/test/test_dbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_dbm.py -------------------------------------------------------------------------------- /Lib/test/test_deque.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_deque.py -------------------------------------------------------------------------------- /Lib/test/test_descr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_descr.py -------------------------------------------------------------------------------- /Lib/test/test_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_dict.py -------------------------------------------------------------------------------- /Lib/test/test_dis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_dis.py -------------------------------------------------------------------------------- /Lib/test/test_eintr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_eintr.py -------------------------------------------------------------------------------- /Lib/test/test_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_embed.py -------------------------------------------------------------------------------- /Lib/test/test_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_enum.py -------------------------------------------------------------------------------- /Lib/test/test_eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_eof.py -------------------------------------------------------------------------------- /Lib/test/test_epoll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_epoll.py -------------------------------------------------------------------------------- /Lib/test/test_errno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_errno.py -------------------------------------------------------------------------------- /Lib/test/test_fcntl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_fcntl.py -------------------------------------------------------------------------------- /Lib/test/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_file.py -------------------------------------------------------------------------------- /Lib/test/test_float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_float.py -------------------------------------------------------------------------------- /Lib/test/test_flufl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_flufl.py -------------------------------------------------------------------------------- /Lib/test/test_fork1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_fork1.py -------------------------------------------------------------------------------- /Lib/test/test_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_frame.py -------------------------------------------------------------------------------- /Lib/test/test_gc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_gc.py -------------------------------------------------------------------------------- /Lib/test/test_glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_glob.py -------------------------------------------------------------------------------- /Lib/test/test_grp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_grp.py -------------------------------------------------------------------------------- /Lib/test/test_gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_gzip.py -------------------------------------------------------------------------------- /Lib/test/test_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_hash.py -------------------------------------------------------------------------------- /Lib/test/test_heapq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_heapq.py -------------------------------------------------------------------------------- /Lib/test/test_hmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_hmac.py -------------------------------------------------------------------------------- /Lib/test/test_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_html.py -------------------------------------------------------------------------------- /Lib/test/test_idle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_idle.py -------------------------------------------------------------------------------- /Lib/test/test_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_imp.py -------------------------------------------------------------------------------- /Lib/test/test_import/data/circular_imports/basic2.py: -------------------------------------------------------------------------------- 1 | from . import basic 2 | -------------------------------------------------------------------------------- /Lib/test/test_import/data/circular_imports/from_cycle1.py: -------------------------------------------------------------------------------- 1 | from .from_cycle2 import a 2 | b = 1 3 | -------------------------------------------------------------------------------- /Lib/test/test_import/data/circular_imports/from_cycle2.py: -------------------------------------------------------------------------------- 1 | from .from_cycle1 import b 2 | a = 1 3 | -------------------------------------------------------------------------------- /Lib/test/test_import/data/circular_imports/source.py: -------------------------------------------------------------------------------- 1 | from . import use 2 | spam = 1 3 | -------------------------------------------------------------------------------- /Lib/test/test_import/data/circular_imports/subpkg/util.py: -------------------------------------------------------------------------------- 1 | def util(): 2 | pass 3 | -------------------------------------------------------------------------------- /Lib/test/test_import/data/circular_imports/subpkg2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_import/data/circular_imports/util.py: -------------------------------------------------------------------------------- 1 | def util(): 2 | pass 3 | -------------------------------------------------------------------------------- /Lib/test/test_import/data/package/submodule.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_import/data/package2/submodule2.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_import/data/unwritable/x.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data01/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data01/binary.file: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Lib/test/test_importlib/data01/subdirectory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data01/subdirectory/binary.file: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Lib/test/test_importlib/data01/utf-8.file: -------------------------------------------------------------------------------- 1 | Hello, UTF-8 world! 2 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data02/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data02/one/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data02/one/resource1.txt: -------------------------------------------------------------------------------- 1 | one resource 2 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data02/two/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data02/two/resource2.txt: -------------------------------------------------------------------------------- 1 | two resource 2 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data03/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data03/namespace/portion1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data03/namespace/portion2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data03/namespace/resource1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/namespace_pkgs/both_portions/foo/one.py: -------------------------------------------------------------------------------- 1 | attr = 'both_portions foo one' 2 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/namespace_pkgs/both_portions/foo/two.py: -------------------------------------------------------------------------------- 1 | attr = 'both_portions foo two' 2 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/namespace_pkgs/portion1/foo/one.py: -------------------------------------------------------------------------------- 1 | attr = 'portion1 foo one' 2 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/namespace_pkgs/portion2/foo/two.py: -------------------------------------------------------------------------------- 1 | attr = 'portion2 foo two' 2 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/namespace_pkgs/project1/parent/child/one.py: -------------------------------------------------------------------------------- 1 | attr = 'parent child one' 2 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/namespace_pkgs/project2/parent/child/two.py: -------------------------------------------------------------------------------- 1 | attr = 'parent child two' 2 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/namespacedata01/binary.file: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Lib/test/test_importlib/namespacedata01/utf-8.file: -------------------------------------------------------------------------------- 1 | Hello, UTF-8 world! 2 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/zipdata01/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/zipdata02/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_index.py -------------------------------------------------------------------------------- /Lib/test/test_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_int.py -------------------------------------------------------------------------------- /Lib/test/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_io.py -------------------------------------------------------------------------------- /Lib/test/test_ioctl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_ioctl.py -------------------------------------------------------------------------------- /Lib/test/test_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_iter.py -------------------------------------------------------------------------------- /Lib/test/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_list.py -------------------------------------------------------------------------------- /Lib/test/test_long.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_long.py -------------------------------------------------------------------------------- /Lib/test/test_lzma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_lzma.py -------------------------------------------------------------------------------- /Lib/test/test_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_math.py -------------------------------------------------------------------------------- /Lib/test/test_mmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_mmap.py -------------------------------------------------------------------------------- /Lib/test/test_netrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_netrc.py -------------------------------------------------------------------------------- /Lib/test/test_nis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_nis.py -------------------------------------------------------------------------------- /Lib/test/test_os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_os.py -------------------------------------------------------------------------------- /Lib/test/test_patma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_patma.py -------------------------------------------------------------------------------- /Lib/test/test_pdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_pdb.py -------------------------------------------------------------------------------- /Lib/test/test_pipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_pipes.py -------------------------------------------------------------------------------- /Lib/test/test_pkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_pkg.py -------------------------------------------------------------------------------- /Lib/test/test_poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_poll.py -------------------------------------------------------------------------------- /Lib/test/test_popen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_popen.py -------------------------------------------------------------------------------- /Lib/test/test_posix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_posix.py -------------------------------------------------------------------------------- /Lib/test/test_pow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_pow.py -------------------------------------------------------------------------------- /Lib/test/test_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_print.py -------------------------------------------------------------------------------- /Lib/test/test_pty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_pty.py -------------------------------------------------------------------------------- /Lib/test/test_pwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_pwd.py -------------------------------------------------------------------------------- /Lib/test/test_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_re.py -------------------------------------------------------------------------------- /Lib/test/test_sax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_sax.py -------------------------------------------------------------------------------- /Lib/test/test_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_set.py -------------------------------------------------------------------------------- /Lib/test/test_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_ssl.py -------------------------------------------------------------------------------- /Lib/test/test_sys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_sys.py -------------------------------------------------------------------------------- /Lib/test/test_tcl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_tcl.py -------------------------------------------------------------------------------- /Lib/test/test_tix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_tix.py -------------------------------------------------------------------------------- /Lib/test/test_tk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_tk.py -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/invalid/array-missing-comma.toml: -------------------------------------------------------------------------------- 1 | arrr = [true false] 2 | -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/invalid/array/file-end-after-val.toml: -------------------------------------------------------------------------------- 1 | a=[1 -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/invalid/array/unclosed-after-item.toml: -------------------------------------------------------------------------------- 1 | v=[1, -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/invalid/array/unclosed-empty.toml: -------------------------------------------------------------------------------- 1 | v=[ -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/invalid/basic-str-ends-in-escape.toml: -------------------------------------------------------------------------------- 1 | "backslash is the last char\ -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/invalid/boolean/invalid-false-casing.toml: -------------------------------------------------------------------------------- 1 | val=falsE -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/invalid/boolean/invalid-true-casing.toml: -------------------------------------------------------------------------------- 1 | val=trUe -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/invalid/dotted-keys/access-non-table.toml: -------------------------------------------------------------------------------- 1 | a = false 2 | a.b = true -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/invalid/inline-table/file-end-after-key-val.toml: -------------------------------------------------------------------------------- 1 | a={b=1 -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/invalid/inline-table/unclosed-empty.toml: -------------------------------------------------------------------------------- 1 | a={ -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/invalid/invalid-hex.toml: -------------------------------------------------------------------------------- 1 | hex = 0xgabba00f1 2 | -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/invalid/keys-and-vals/ends-early-table-def.toml: -------------------------------------------------------------------------------- 1 | [fwfw.wafw -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/invalid/keys-and-vals/ends-early.toml: -------------------------------------------------------------------------------- 1 | fs.fw -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/invalid/keys-and-vals/no-value.toml: -------------------------------------------------------------------------------- 1 | why-no-value= -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/invalid/keys-and-vals/only-ws-after-dot.toml: -------------------------------------------------------------------------------- 1 | fs. -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/invalid/literal-str/unclosed.toml: -------------------------------------------------------------------------------- 1 | unclosed='dwdd -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/invalid/multiline-basic-str/escape-only.toml: -------------------------------------------------------------------------------- 1 | bee = """\""" 2 | -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/invalid/multiline-basic-str/file-ends-after-opening.toml: -------------------------------------------------------------------------------- 1 | a=""" -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/invalid/multiline-literal-str/file-ends-after-opening.toml: -------------------------------------------------------------------------------- 1 | a=''' -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/invalid/non-scalar-escaped.toml: -------------------------------------------------------------------------------- 1 | a="\ud800" -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/invalid/table/eof-after-opening.toml: -------------------------------------------------------------------------------- 1 | [ -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/invalid/table/redefine-1.toml: -------------------------------------------------------------------------------- 1 | [t1] 2 | t2.t3.v = 0 3 | [t1.t2] 4 | -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/invalid/unclosed-string.toml: -------------------------------------------------------------------------------- 1 | "a-string".must-be = "closed -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/valid/boolean.toml: -------------------------------------------------------------------------------- 1 | 'a'=true 2 | "b"=false -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/valid/empty-inline-table.json: -------------------------------------------------------------------------------- 1 | {"empty": {}} -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/valid/no-newlines.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/valid/no-newlines.toml: -------------------------------------------------------------------------------- 1 | #no newlines at all here -------------------------------------------------------------------------------- /Lib/test/test_tomllib/data/valid/trailing-comma.toml: -------------------------------------------------------------------------------- 1 | arr=[1,] -------------------------------------------------------------------------------- /Lib/test/test_tty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_tty.py -------------------------------------------------------------------------------- /Lib/test/test_ucn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_ucn.py -------------------------------------------------------------------------------- /Lib/test/test_uu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/test_uu.py -------------------------------------------------------------------------------- /Lib/test/test_zoneinfo/__init__.py: -------------------------------------------------------------------------------- 1 | from .test_zoneinfo import * 2 | -------------------------------------------------------------------------------- /Lib/test/testtar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/testtar.tar -------------------------------------------------------------------------------- /Lib/test/tokenizedata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/tokenizedata/bad_coding.py: -------------------------------------------------------------------------------- 1 | # -*- coding: uft-8 -*- 2 | -------------------------------------------------------------------------------- /Lib/test/tokenizedata/bad_coding2.py: -------------------------------------------------------------------------------- 1 | #coding: utf8 2 | print('我') 3 | -------------------------------------------------------------------------------- /Lib/test/tokenizedata/badsyntax_3131.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | € = 2 3 | -------------------------------------------------------------------------------- /Lib/test/typinganndata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/xmltestdata/c14n-20/out_inC14N6_c14nDefault.xml: -------------------------------------------------------------------------------- 1 | © -------------------------------------------------------------------------------- /Lib/test/xmltestdata/c14n-20/world.txt: -------------------------------------------------------------------------------- 1 | world -------------------------------------------------------------------------------- /Lib/test/xmltests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/xmltests.py -------------------------------------------------------------------------------- /Lib/test/zipdir.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/test/zipdir.zip -------------------------------------------------------------------------------- /Lib/textwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/textwrap.py -------------------------------------------------------------------------------- /Lib/this.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/this.py -------------------------------------------------------------------------------- /Lib/threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/threading.py -------------------------------------------------------------------------------- /Lib/timeit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/timeit.py -------------------------------------------------------------------------------- /Lib/tkinter/dnd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/tkinter/dnd.py -------------------------------------------------------------------------------- /Lib/tkinter/font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/tkinter/font.py -------------------------------------------------------------------------------- /Lib/tkinter/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/tkinter/test/test_tkinter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/tkinter/test/test_ttk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/tkinter/tix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/tkinter/tix.py -------------------------------------------------------------------------------- /Lib/tkinter/ttk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/tkinter/ttk.py -------------------------------------------------------------------------------- /Lib/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/token.py -------------------------------------------------------------------------------- /Lib/tokenize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/tokenize.py -------------------------------------------------------------------------------- /Lib/tomllib/_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/tomllib/_re.py -------------------------------------------------------------------------------- /Lib/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/trace.py -------------------------------------------------------------------------------- /Lib/traceback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/traceback.py -------------------------------------------------------------------------------- /Lib/tracemalloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/tracemalloc.py -------------------------------------------------------------------------------- /Lib/tty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/tty.py -------------------------------------------------------------------------------- /Lib/turtle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/turtle.py -------------------------------------------------------------------------------- /Lib/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/types.py -------------------------------------------------------------------------------- /Lib/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/typing.py -------------------------------------------------------------------------------- /Lib/unittest/_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/unittest/_log.py -------------------------------------------------------------------------------- /Lib/unittest/case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/unittest/case.py -------------------------------------------------------------------------------- /Lib/unittest/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/unittest/main.py -------------------------------------------------------------------------------- /Lib/unittest/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/unittest/mock.py -------------------------------------------------------------------------------- /Lib/unittest/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/unittest/util.py -------------------------------------------------------------------------------- /Lib/urllib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/urllib/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/urllib/error.py -------------------------------------------------------------------------------- /Lib/urllib/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/urllib/parse.py -------------------------------------------------------------------------------- /Lib/uu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/uu.py -------------------------------------------------------------------------------- /Lib/uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/uuid.py -------------------------------------------------------------------------------- /Lib/venv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/venv/__init__.py -------------------------------------------------------------------------------- /Lib/venv/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/venv/__main__.py -------------------------------------------------------------------------------- /Lib/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/warnings.py -------------------------------------------------------------------------------- /Lib/wave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/wave.py -------------------------------------------------------------------------------- /Lib/weakref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/weakref.py -------------------------------------------------------------------------------- /Lib/webbrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/webbrowser.py -------------------------------------------------------------------------------- /Lib/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/wheel.py -------------------------------------------------------------------------------- /Lib/wsgiref/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/wsgiref/types.py -------------------------------------------------------------------------------- /Lib/wsgiref/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/wsgiref/util.py -------------------------------------------------------------------------------- /Lib/xdrlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/xdrlib.py -------------------------------------------------------------------------------- /Lib/xml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/xml/__init__.py -------------------------------------------------------------------------------- /Lib/xmlrpc/__init__.py: -------------------------------------------------------------------------------- 1 | # This directory is a Python package. 2 | -------------------------------------------------------------------------------- /Lib/xmlrpc/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/xmlrpc/client.py -------------------------------------------------------------------------------- /Lib/xmlrpc/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/xmlrpc/server.py -------------------------------------------------------------------------------- /Lib/zipapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/zipapp.py -------------------------------------------------------------------------------- /Lib/zipfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/zipfile.py -------------------------------------------------------------------------------- /Lib/zipimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Lib/zipimport.py -------------------------------------------------------------------------------- /Mac/IDLE/IDLE.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Mac/Icons/IDLE.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Mac/Icons/IDLE.icns -------------------------------------------------------------------------------- /Mac/Icons/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Mac/Icons/ReadMe.txt -------------------------------------------------------------------------------- /Mac/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Mac/Makefile.in -------------------------------------------------------------------------------- /Mac/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Mac/README.rst -------------------------------------------------------------------------------- /Mac/Resources/app/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLPytX -------------------------------------------------------------------------------- /Mac/Tools/pythonw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Mac/Tools/pythonw.c -------------------------------------------------------------------------------- /Makefile.pre.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Makefile.pre.in -------------------------------------------------------------------------------- /Misc/ACKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Misc/ACKS -------------------------------------------------------------------------------- /Misc/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Misc/HISTORY -------------------------------------------------------------------------------- /Misc/Porting: -------------------------------------------------------------------------------- 1 | This document is moved to https://devguide.python.org/porting/ 2 | -------------------------------------------------------------------------------- /Misc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Misc/README -------------------------------------------------------------------------------- /Misc/README.AIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Misc/README.AIX -------------------------------------------------------------------------------- /Misc/README.coverity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Misc/README.coverity -------------------------------------------------------------------------------- /Misc/README.valgrind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Misc/README.valgrind -------------------------------------------------------------------------------- /Misc/gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Misc/gdbinit -------------------------------------------------------------------------------- /Misc/indent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Misc/indent.pro -------------------------------------------------------------------------------- /Misc/python.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Misc/python.man -------------------------------------------------------------------------------- /Misc/python.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Misc/python.pc.in -------------------------------------------------------------------------------- /Misc/rhel7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Misc/rhel7/README.md -------------------------------------------------------------------------------- /Misc/rhel7/tcl.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Misc/rhel7/tcl.pc -------------------------------------------------------------------------------- /Misc/rhel7/tk.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Misc/rhel7/tk.pc -------------------------------------------------------------------------------- /Misc/stable_abi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Misc/stable_abi.toml -------------------------------------------------------------------------------- /Misc/svnmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Misc/svnmap.txt -------------------------------------------------------------------------------- /Misc/vgrindefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Misc/vgrindefs -------------------------------------------------------------------------------- /Modules/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/README -------------------------------------------------------------------------------- /Modules/Setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/Setup -------------------------------------------------------------------------------- /Modules/Setup.macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/Setup.macos -------------------------------------------------------------------------------- /Modules/_abc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_abc.c -------------------------------------------------------------------------------- /Modules/_bz2module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_bz2module.c -------------------------------------------------------------------------------- /Modules/_csv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_csv.c -------------------------------------------------------------------------------- /Modules/_dbmmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_dbmmodule.c -------------------------------------------------------------------------------- /Modules/_io/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_io/fileio.c -------------------------------------------------------------------------------- /Modules/_io/iobase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_io/iobase.c -------------------------------------------------------------------------------- /Modules/_io/textio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_io/textio.c -------------------------------------------------------------------------------- /Modules/_json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_json.c -------------------------------------------------------------------------------- /Modules/_lsprof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_lsprof.c -------------------------------------------------------------------------------- /Modules/_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_math.h -------------------------------------------------------------------------------- /Modules/_opcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_opcode.c -------------------------------------------------------------------------------- /Modules/_operator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_operator.c -------------------------------------------------------------------------------- /Modules/_pickle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_pickle.c -------------------------------------------------------------------------------- /Modules/_scproxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_scproxy.c -------------------------------------------------------------------------------- /Modules/_sha3/sha3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_sha3/sha3.c -------------------------------------------------------------------------------- /Modules/_sha3/sha3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_sha3/sha3.h -------------------------------------------------------------------------------- /Modules/_sre/sre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_sre/sre.c -------------------------------------------------------------------------------- /Modules/_sre/sre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_sre/sre.h -------------------------------------------------------------------------------- /Modules/_ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_ssl.c -------------------------------------------------------------------------------- /Modules/_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_ssl.h -------------------------------------------------------------------------------- /Modules/_ssl/cert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_ssl/cert.c -------------------------------------------------------------------------------- /Modules/_ssl/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_ssl/misc.c -------------------------------------------------------------------------------- /Modules/_ssl_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_ssl_data.h -------------------------------------------------------------------------------- /Modules/_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_stat.c -------------------------------------------------------------------------------- /Modules/_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_struct.c -------------------------------------------------------------------------------- /Modules/_tkinter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_tkinter.c -------------------------------------------------------------------------------- /Modules/_weakref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_weakref.c -------------------------------------------------------------------------------- /Modules/_winapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_winapi.c -------------------------------------------------------------------------------- /Modules/_xxtestfuzz/fuzz_json_loads_corpus/empty_array.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /Modules/_xxtestfuzz/fuzz_json_loads_corpus/empty_object.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /Modules/_xxtestfuzz/fuzz_json_loads_corpus/simple_array.json: -------------------------------------------------------------------------------- 1 | [1, 2, 3, "abcd", "xyz"] 2 | -------------------------------------------------------------------------------- /Modules/_xxtestfuzz/fuzz_sre_compile_corpus/anchor_links: -------------------------------------------------------------------------------- 1 | XX] 2 | -------------------------------------------------------------------------------- /Modules/_xxtestfuzz/fuzz_struct_unpack_corpus/hello_string: -------------------------------------------------------------------------------- 1 | 6sHello -------------------------------------------------------------------------------- /Modules/_zoneinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/_zoneinfo.c -------------------------------------------------------------------------------- /Modules/addrinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/addrinfo.h -------------------------------------------------------------------------------- /Modules/audioop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/audioop.c -------------------------------------------------------------------------------- /Modules/binascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/binascii.c -------------------------------------------------------------------------------- /Modules/config.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/config.c.in -------------------------------------------------------------------------------- /Modules/gcmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/gcmodule.c -------------------------------------------------------------------------------- /Modules/getpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/getpath.c -------------------------------------------------------------------------------- /Modules/getpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/getpath.py -------------------------------------------------------------------------------- /Modules/grpmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/grpmodule.c -------------------------------------------------------------------------------- /Modules/hashlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/hashlib.h -------------------------------------------------------------------------------- /Modules/ld_so_aix.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/ld_so_aix.in -------------------------------------------------------------------------------- /Modules/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/main.c -------------------------------------------------------------------------------- /Modules/makesetup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/makesetup -------------------------------------------------------------------------------- /Modules/makexp_aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/makexp_aix -------------------------------------------------------------------------------- /Modules/mathmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/mathmodule.c -------------------------------------------------------------------------------- /Modules/md5module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/md5module.c -------------------------------------------------------------------------------- /Modules/mmapmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/mmapmodule.c -------------------------------------------------------------------------------- /Modules/nismodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/nismodule.c -------------------------------------------------------------------------------- /Modules/overlapped.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/overlapped.c -------------------------------------------------------------------------------- /Modules/pwdmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/pwdmodule.c -------------------------------------------------------------------------------- /Modules/pyexpat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/pyexpat.c -------------------------------------------------------------------------------- /Modules/readline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/readline.c -------------------------------------------------------------------------------- /Modules/resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/resource.c -------------------------------------------------------------------------------- /Modules/sha1module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/sha1module.c -------------------------------------------------------------------------------- /Modules/spwdmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/spwdmodule.c -------------------------------------------------------------------------------- /Modules/termios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/termios.c -------------------------------------------------------------------------------- /Modules/timemodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/timemodule.c -------------------------------------------------------------------------------- /Modules/tkappinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/tkappinit.c -------------------------------------------------------------------------------- /Modules/tkinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/tkinter.h -------------------------------------------------------------------------------- /Modules/winreparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/winreparse.h -------------------------------------------------------------------------------- /Modules/xxlimited.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/xxlimited.c -------------------------------------------------------------------------------- /Modules/xxmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/xxmodule.c -------------------------------------------------------------------------------- /Modules/xxsubtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/xxsubtype.c -------------------------------------------------------------------------------- /Modules/zlibmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Modules/zlibmodule.c -------------------------------------------------------------------------------- /Objects/README: -------------------------------------------------------------------------------- 1 | Source files for various builtin objects 2 | -------------------------------------------------------------------------------- /Objects/abstract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Objects/abstract.c -------------------------------------------------------------------------------- /Objects/accu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Objects/accu.c -------------------------------------------------------------------------------- /Objects/boolobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Objects/boolobject.c -------------------------------------------------------------------------------- /Objects/call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Objects/call.c -------------------------------------------------------------------------------- /Objects/capsule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Objects/capsule.c -------------------------------------------------------------------------------- /Objects/cellobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Objects/cellobject.c -------------------------------------------------------------------------------- /Objects/codeobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Objects/codeobject.c -------------------------------------------------------------------------------- /Objects/dictobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Objects/dictobject.c -------------------------------------------------------------------------------- /Objects/enumobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Objects/enumobject.c -------------------------------------------------------------------------------- /Objects/exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Objects/exceptions.c -------------------------------------------------------------------------------- /Objects/fileobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Objects/fileobject.c -------------------------------------------------------------------------------- /Objects/funcobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Objects/funcobject.c -------------------------------------------------------------------------------- /Objects/genobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Objects/genobject.c -------------------------------------------------------------------------------- /Objects/iterobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Objects/iterobject.c -------------------------------------------------------------------------------- /Objects/listobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Objects/listobject.c -------------------------------------------------------------------------------- /Objects/listsort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Objects/listsort.txt -------------------------------------------------------------------------------- /Objects/locations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Objects/locations.md -------------------------------------------------------------------------------- /Objects/longobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Objects/longobject.c -------------------------------------------------------------------------------- /Objects/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Objects/object.c -------------------------------------------------------------------------------- /Objects/obmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Objects/obmalloc.c -------------------------------------------------------------------------------- /Objects/setobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Objects/setobject.c -------------------------------------------------------------------------------- /Objects/structseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Objects/structseq.c -------------------------------------------------------------------------------- /Objects/typeobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Objects/typeobject.c -------------------------------------------------------------------------------- /Objects/typeslots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Objects/typeslots.py -------------------------------------------------------------------------------- /PC/WinMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/WinMain.c -------------------------------------------------------------------------------- /PC/_msi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/_msi.c -------------------------------------------------------------------------------- /PC/_testconsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/_testconsole.c -------------------------------------------------------------------------------- /PC/clinic/_msi.c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/clinic/_msi.c.h -------------------------------------------------------------------------------- /PC/clinic/winreg.c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/clinic/winreg.c.h -------------------------------------------------------------------------------- /PC/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/config.c -------------------------------------------------------------------------------- /PC/config_minimal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/config_minimal.c -------------------------------------------------------------------------------- /PC/crtlicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/crtlicense.txt -------------------------------------------------------------------------------- /PC/empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/empty.c -------------------------------------------------------------------------------- /PC/errmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/errmap.h -------------------------------------------------------------------------------- /PC/frozen_dllmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/frozen_dllmain.c -------------------------------------------------------------------------------- /PC/icons/idlex44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/icons/idlex44.png -------------------------------------------------------------------------------- /PC/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/icons/logo.svg -------------------------------------------------------------------------------- /PC/icons/py.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/icons/py.icns -------------------------------------------------------------------------------- /PC/icons/py.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/icons/py.ico -------------------------------------------------------------------------------- /PC/icons/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/icons/py.png -------------------------------------------------------------------------------- /PC/icons/py.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/icons/py.svg -------------------------------------------------------------------------------- /PC/icons/pyc.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/icons/pyc.icns -------------------------------------------------------------------------------- /PC/icons/pyc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/icons/pyc.ico -------------------------------------------------------------------------------- /PC/icons/pyc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/icons/pyc.svg -------------------------------------------------------------------------------- /PC/icons/pyd.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/icons/pyd.icns -------------------------------------------------------------------------------- /PC/icons/pyd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/icons/pyd.ico -------------------------------------------------------------------------------- /PC/icons/pyd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/icons/pyd.svg -------------------------------------------------------------------------------- /PC/icons/setup.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/icons/setup.icns -------------------------------------------------------------------------------- /PC/icons/setup.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/icons/setup.ico -------------------------------------------------------------------------------- /PC/icons/setup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/icons/setup.svg -------------------------------------------------------------------------------- /PC/launcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/launcher.c -------------------------------------------------------------------------------- /PC/launcher2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/launcher2.c -------------------------------------------------------------------------------- /PC/layout/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PC/layout/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/layout/main.py -------------------------------------------------------------------------------- /PC/layout/support/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PC/msvcrtmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/msvcrtmodule.c -------------------------------------------------------------------------------- /PC/pyconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/pyconfig.h -------------------------------------------------------------------------------- /PC/pyshellext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/pyshellext.cpp -------------------------------------------------------------------------------- /PC/pyshellext.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/pyshellext.def -------------------------------------------------------------------------------- /PC/pyshellext.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/pyshellext.rc -------------------------------------------------------------------------------- /PC/python.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/python.manifest -------------------------------------------------------------------------------- /PC/python3dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/python3dll.c -------------------------------------------------------------------------------- /PC/python_exe.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/python_exe.rc -------------------------------------------------------------------------------- /PC/python_nt.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/python_nt.rc -------------------------------------------------------------------------------- /PC/python_uwp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/python_uwp.cpp -------------------------------------------------------------------------------- /PC/python_ver_rc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/python_ver_rc.h -------------------------------------------------------------------------------- /PC/pythonw_exe.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/pythonw_exe.rc -------------------------------------------------------------------------------- /PC/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/readme.txt -------------------------------------------------------------------------------- /PC/sqlite3.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/sqlite3.rc -------------------------------------------------------------------------------- /PC/store_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/store_info.txt -------------------------------------------------------------------------------- /PC/testpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/testpy.py -------------------------------------------------------------------------------- /PC/winreg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/winreg.c -------------------------------------------------------------------------------- /PC/winsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PC/winsound.c -------------------------------------------------------------------------------- /PCbuild/_bz2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PCbuild/_bz2.vcxproj -------------------------------------------------------------------------------- /PCbuild/_msi.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PCbuild/_msi.vcxproj -------------------------------------------------------------------------------- /PCbuild/_ssl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PCbuild/_ssl.vcxproj -------------------------------------------------------------------------------- /PCbuild/blurb.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PCbuild/blurb.bat -------------------------------------------------------------------------------- /PCbuild/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PCbuild/build.bat -------------------------------------------------------------------------------- /PCbuild/build_env.bat: -------------------------------------------------------------------------------- 1 | @%comspec% /k env.bat %* 2 | -------------------------------------------------------------------------------- /PCbuild/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PCbuild/clean.bat -------------------------------------------------------------------------------- /PCbuild/env.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PCbuild/env.bat -------------------------------------------------------------------------------- /PCbuild/env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PCbuild/env.ps1 -------------------------------------------------------------------------------- /PCbuild/field3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PCbuild/field3.py -------------------------------------------------------------------------------- /PCbuild/idle.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PCbuild/idle.bat -------------------------------------------------------------------------------- /PCbuild/lib.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PCbuild/lib.pyproj -------------------------------------------------------------------------------- /PCbuild/libffi.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PCbuild/libffi.props -------------------------------------------------------------------------------- /PCbuild/pcbuild.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PCbuild/pcbuild.proj -------------------------------------------------------------------------------- /PCbuild/pcbuild.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PCbuild/pcbuild.sln -------------------------------------------------------------------------------- /PCbuild/python.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PCbuild/python.props -------------------------------------------------------------------------------- /PCbuild/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PCbuild/readme.txt -------------------------------------------------------------------------------- /PCbuild/rmpyc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PCbuild/rmpyc.py -------------------------------------------------------------------------------- /PCbuild/rt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PCbuild/rt.bat -------------------------------------------------------------------------------- /PCbuild/tcl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PCbuild/tcl.vcxproj -------------------------------------------------------------------------------- /PCbuild/tcltk.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PCbuild/tcltk.props -------------------------------------------------------------------------------- /PCbuild/tix.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PCbuild/tix.vcxproj -------------------------------------------------------------------------------- /PCbuild/tk.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/PCbuild/tk.vcxproj -------------------------------------------------------------------------------- /Parser/Python.asdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Parser/Python.asdl -------------------------------------------------------------------------------- /Parser/asdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Parser/asdl.py -------------------------------------------------------------------------------- /Parser/asdl_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Parser/asdl_c.py -------------------------------------------------------------------------------- /Parser/myreadline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Parser/myreadline.c -------------------------------------------------------------------------------- /Parser/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Parser/parser.c -------------------------------------------------------------------------------- /Parser/peg_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Parser/peg_api.c -------------------------------------------------------------------------------- /Parser/pegen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Parser/pegen.c -------------------------------------------------------------------------------- /Parser/pegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Parser/pegen.h -------------------------------------------------------------------------------- /Parser/token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Parser/token.c -------------------------------------------------------------------------------- /Parser/tokenizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Parser/tokenizer.c -------------------------------------------------------------------------------- /Parser/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Parser/tokenizer.h -------------------------------------------------------------------------------- /Programs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Programs/README -------------------------------------------------------------------------------- /Programs/python.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Programs/python.c -------------------------------------------------------------------------------- /Python/Python-ast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/Python-ast.c -------------------------------------------------------------------------------- /Python/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/README -------------------------------------------------------------------------------- /Python/_warnings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/_warnings.c -------------------------------------------------------------------------------- /Python/adaptive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/adaptive.md -------------------------------------------------------------------------------- /Python/asdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/asdl.c -------------------------------------------------------------------------------- /Python/ast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/ast.c -------------------------------------------------------------------------------- /Python/ast_opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/ast_opt.c -------------------------------------------------------------------------------- /Python/ast_unparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/ast_unparse.c -------------------------------------------------------------------------------- /Python/bltinmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/bltinmodule.c -------------------------------------------------------------------------------- /Python/ceval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/ceval.c -------------------------------------------------------------------------------- /Python/ceval_gil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/ceval_gil.h -------------------------------------------------------------------------------- /Python/codecs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/codecs.c -------------------------------------------------------------------------------- /Python/compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/compile.c -------------------------------------------------------------------------------- /Python/condvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/condvar.h -------------------------------------------------------------------------------- /Python/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/context.c -------------------------------------------------------------------------------- /Python/dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/dtoa.c -------------------------------------------------------------------------------- /Python/dup2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/dup2.c -------------------------------------------------------------------------------- /Python/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/errors.c -------------------------------------------------------------------------------- /Python/fileutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/fileutils.c -------------------------------------------------------------------------------- /Python/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/frame.c -------------------------------------------------------------------------------- /Python/frozen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/frozen.c -------------------------------------------------------------------------------- /Python/frozenmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/frozenmain.c -------------------------------------------------------------------------------- /Python/future.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/future.c -------------------------------------------------------------------------------- /Python/getargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/getargs.c -------------------------------------------------------------------------------- /Python/getcompiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/getcompiler.c -------------------------------------------------------------------------------- /Python/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/getopt.c -------------------------------------------------------------------------------- /Python/getplatform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/getplatform.c -------------------------------------------------------------------------------- /Python/getversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/getversion.c -------------------------------------------------------------------------------- /Python/hamt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/hamt.c -------------------------------------------------------------------------------- /Python/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/hashtable.c -------------------------------------------------------------------------------- /Python/import.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/import.c -------------------------------------------------------------------------------- /Python/importdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/importdl.c -------------------------------------------------------------------------------- /Python/importdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/importdl.h -------------------------------------------------------------------------------- /Python/initconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/initconfig.c -------------------------------------------------------------------------------- /Python/marshal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/marshal.c -------------------------------------------------------------------------------- /Python/modsupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/modsupport.c -------------------------------------------------------------------------------- /Python/mysnprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/mysnprintf.c -------------------------------------------------------------------------------- /Python/mystrtoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/mystrtoul.c -------------------------------------------------------------------------------- /Python/pathcch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/pathcch.c -------------------------------------------------------------------------------- /Python/pathconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/pathconfig.c -------------------------------------------------------------------------------- /Python/preconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/preconfig.c -------------------------------------------------------------------------------- /Python/pyarena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/pyarena.c -------------------------------------------------------------------------------- /Python/pyctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/pyctype.c -------------------------------------------------------------------------------- /Python/pyfpe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/pyfpe.c -------------------------------------------------------------------------------- /Python/pyhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/pyhash.c -------------------------------------------------------------------------------- /Python/pylifecycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/pylifecycle.c -------------------------------------------------------------------------------- /Python/pymath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/pymath.c -------------------------------------------------------------------------------- /Python/pystate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/pystate.c -------------------------------------------------------------------------------- /Python/pystrcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/pystrcmp.c -------------------------------------------------------------------------------- /Python/pystrhex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/pystrhex.c -------------------------------------------------------------------------------- /Python/pystrtod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/pystrtod.c -------------------------------------------------------------------------------- /Python/pythonrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/pythonrun.c -------------------------------------------------------------------------------- /Python/pytime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/pytime.c -------------------------------------------------------------------------------- /Python/specialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/specialize.c -------------------------------------------------------------------------------- /Python/suggestions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/suggestions.c -------------------------------------------------------------------------------- /Python/symtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/symtable.c -------------------------------------------------------------------------------- /Python/sysmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/sysmodule.c -------------------------------------------------------------------------------- /Python/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/thread.c -------------------------------------------------------------------------------- /Python/thread_nt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/thread_nt.h -------------------------------------------------------------------------------- /Python/traceback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Python/traceback.c -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/README.rst -------------------------------------------------------------------------------- /Tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/README -------------------------------------------------------------------------------- /Tools/c-analyzer/c_common/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | NOT_SET = object() 3 | -------------------------------------------------------------------------------- /Tools/c-analyzer/c_common/info.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/c-analyzer/c_common/show.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/clinic/cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/clinic/cpp.py -------------------------------------------------------------------------------- /Tools/demo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/demo/README -------------------------------------------------------------------------------- /Tools/demo/beer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/demo/beer.py -------------------------------------------------------------------------------- /Tools/demo/eiffel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/demo/eiffel.py -------------------------------------------------------------------------------- /Tools/demo/hanoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/demo/hanoi.py -------------------------------------------------------------------------------- /Tools/demo/life.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/demo/life.py -------------------------------------------------------------------------------- /Tools/demo/markov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/demo/markov.py -------------------------------------------------------------------------------- /Tools/demo/mcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/demo/mcast.py -------------------------------------------------------------------------------- /Tools/demo/queens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/demo/queens.py -------------------------------------------------------------------------------- /Tools/demo/redemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/demo/redemo.py -------------------------------------------------------------------------------- /Tools/demo/vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/demo/vector.py -------------------------------------------------------------------------------- /Tools/freeze/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/freeze/README -------------------------------------------------------------------------------- /Tools/freeze/flag.py: -------------------------------------------------------------------------------- 1 | initialized = True 2 | print("Hello world!") 3 | -------------------------------------------------------------------------------- /Tools/freeze/hello.py: -------------------------------------------------------------------------------- 1 | print('Hello world...') 2 | -------------------------------------------------------------------------------- /Tools/freeze/test/ok.py: -------------------------------------------------------------------------------- 1 | import sys 2 | sys.exit(0) 3 | -------------------------------------------------------------------------------- /Tools/i18n/msgfmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/i18n/msgfmt.py -------------------------------------------------------------------------------- /Tools/msi/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/msi/README.txt -------------------------------------------------------------------------------- /Tools/msi/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/msi/build.bat -------------------------------------------------------------------------------- /Tools/msi/bundle/bootstrap/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /Tools/msi/common.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/msi/common.wxs -------------------------------------------------------------------------------- /Tools/msi/msi.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/msi/msi.props -------------------------------------------------------------------------------- /Tools/msi/purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/msi/purge.py -------------------------------------------------------------------------------- /Tools/msi/wix.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/msi/wix.props -------------------------------------------------------------------------------- /Tools/peg_generator/.gitignore: -------------------------------------------------------------------------------- 1 | peg_extension/parse.c 2 | data/xxl.py 3 | venv/ 4 | @data 5 | -------------------------------------------------------------------------------- /Tools/peg_generator/peg_extension/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/peg_generator/pegen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/peg_generator/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | # This exists to let mypy find modules here 2 | -------------------------------------------------------------------------------- /Tools/scripts/2to3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/scripts/2to3 -------------------------------------------------------------------------------- /Tools/scripts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/scripts/README -------------------------------------------------------------------------------- /Tools/scripts/idle3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/scripts/idle3 -------------------------------------------------------------------------------- /Tools/scripts/lll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/scripts/lll.py -------------------------------------------------------------------------------- /Tools/scripts/pydoc3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/scripts/pydoc3 -------------------------------------------------------------------------------- /Tools/tz/zdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/tz/zdump.py -------------------------------------------------------------------------------- /Tools/wasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/wasm/README.md -------------------------------------------------------------------------------- /Tools/wasm/wasi-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/Tools/wasm/wasi-env -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/config.guess -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/configure.ac -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/install-sh -------------------------------------------------------------------------------- /pyconfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/pyconfig.h.in -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nuitka/MonolithPy/HEAD/setup.py --------------------------------------------------------------------------------