gitextract_8msbk7ao/ ├── .editorconfig ├── .gitattributes ├── .githooks/ │ └── pre-commit ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ └── testing.yml ├── .gitignore ├── .gitmodules ├── .sourcery.yaml ├── .vscode/ │ ├── c_cpp_properties.json │ ├── extensions.json │ └── settings.json ├── CODE_OF_CONDUCT.rst ├── CONTRIBUTING.md ├── Changelog.rst ├── Developer_Manual.rst ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── SECURITY.md ├── Standard-Plugins-Documentation.rst ├── UserPlugin-Creation.rst ├── Using-Plugin-Options.rst ├── bin/ │ ├── autoformat-nuitka-source │ ├── check-nuitka-with-codespell │ ├── check-nuitka-with-pylint │ ├── check-nuitka-with-restlint │ ├── check-nuitka-with-yamllint │ ├── check-reference-counts │ ├── compare_with_cpython │ ├── compare_with_xml │ ├── find_sxs_modules │ ├── generate-specialized-c-code │ ├── generate-specialized-python-code │ ├── measure-construct-performance │ ├── nuitka │ ├── nuitka-run │ ├── nuitka-watch │ ├── nuitka3 │ ├── nuitka3-run │ └── run-inside-nuitka-container ├── debian/ │ ├── README.source │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── nuitka.docs │ ├── nuitka.manpages │ ├── pbuilder-hookdir/ │ │ └── B92test-installed-nuitka │ ├── rules │ ├── source/ │ │ ├── format │ │ └── lintian-overrides │ ├── upstream-signing-key.pgp │ └── watch ├── doc/ │ ├── Doxyfile.template │ ├── custom.css │ ├── nuitka-man-include.txt │ ├── nuitka-run.1 │ ├── nuitka.1 │ └── uml/ │ ├── standalone-overview.plantuml │ └── use-cases.plantuml ├── lib/ │ └── hints.py ├── misc/ │ ├── codespell-ignore.txt │ ├── create-pbuilder-image.py │ ├── dump-config-options.py │ ├── install-git-hooks.py │ ├── make-apidoc.py │ ├── make-coverage-rendering.py │ ├── make-deb-mentors-release.py │ ├── make-deb-release.py │ ├── make-pypi-upload.py │ ├── make-release.py │ ├── make-upload.py │ ├── make-version-bump.py │ ├── nuitka-package-config-schema.json │ ├── nuitka-run.bat │ ├── nuitka.bat │ ├── run-valgrind.py │ └── update-doc.py ├── nuitka/ │ ├── Builtins.py │ ├── BytecodeCaching.py │ ├── Bytecodes.py │ ├── CacheCleanup.py │ ├── Constants.py │ ├── Errors.py │ ├── HardImportRegistry.py │ ├── MainControl.py │ ├── ModuleRegistry.py │ ├── OptionParsing.py │ ├── Options.py │ ├── OutputDirectories.py │ ├── PostProcessing.py │ ├── Progress.py │ ├── PythonFlavors.py │ ├── PythonOperators.py │ ├── PythonVersions.py │ ├── Serialization.py │ ├── SourceCodeReferences.py │ ├── Tracing.py │ ├── TreeXML.py │ ├── Variables.py │ ├── Version.py │ ├── __init__.py │ ├── __main__.py │ ├── __past__.py │ ├── build/ │ │ ├── Backend.scons │ │ ├── CCompilerVersion.scons │ │ ├── DataComposerInterface.py │ │ ├── Onefile.scons │ │ ├── SconsCaching.py │ │ ├── SconsCompilerSettings.py │ │ ├── SconsHacks.py │ │ ├── SconsInterface.py │ │ ├── SconsProgress.py │ │ ├── SconsSpawn.py │ │ ├── SconsUtils.py │ │ ├── __init__.py │ │ ├── include/ │ │ │ └── nuitka/ │ │ │ ├── allocator.h │ │ │ ├── builtins.h │ │ │ ├── calling.h │ │ │ ├── checkers.h │ │ │ ├── checksum_tools.h │ │ │ ├── compiled_asyncgen.h │ │ │ ├── compiled_cell.h │ │ │ ├── compiled_coroutine.h │ │ │ ├── compiled_frame.h │ │ │ ├── compiled_function.h │ │ │ ├── compiled_generator.h │ │ │ ├── compiled_method.h │ │ │ ├── constants.h │ │ │ ├── constants_blob.h │ │ │ ├── environment_variables.h │ │ │ ├── environment_variables_system.h │ │ │ ├── exception_groups.h │ │ │ ├── exceptions.h │ │ │ ├── filesystem_paths.h │ │ │ ├── freelists.h │ │ │ ├── hedley.h │ │ │ ├── helper/ │ │ │ │ ├── attributes.h │ │ │ │ ├── boolean.h │ │ │ │ ├── bytearrays.h │ │ │ │ ├── bytes.h │ │ │ │ ├── calling_generated.h │ │ │ │ ├── comparisons_eq.h │ │ │ │ ├── comparisons_ge.h │ │ │ │ ├── comparisons_gt.h │ │ │ │ ├── comparisons_le.h │ │ │ │ ├── comparisons_lt.h │ │ │ │ ├── comparisons_ne.h │ │ │ │ ├── complex.h │ │ │ │ ├── dictionaries.h │ │ │ │ ├── floats.h │ │ │ │ ├── import_hard.h │ │ │ │ ├── indexes.h │ │ │ │ ├── ints.h │ │ │ │ ├── iterators.h │ │ │ │ ├── lists.h │ │ │ │ ├── lists_generated.h │ │ │ │ ├── mappings.h │ │ │ │ ├── operations.h │ │ │ │ ├── operations_binary_add.h │ │ │ │ ├── operations_binary_bitand.h │ │ │ │ ├── operations_binary_bitor.h │ │ │ │ ├── operations_binary_bitxor.h │ │ │ │ ├── operations_binary_divmod.h │ │ │ │ ├── operations_binary_floordiv.h │ │ │ │ ├── operations_binary_lshift.h │ │ │ │ ├── operations_binary_matmult.h │ │ │ │ ├── operations_binary_mod.h │ │ │ │ ├── operations_binary_mult.h │ │ │ │ ├── operations_binary_olddiv.h │ │ │ │ ├── operations_binary_pow.h │ │ │ │ ├── operations_binary_rshift.h │ │ │ │ ├── operations_binary_sub.h │ │ │ │ ├── operations_binary_truediv.h │ │ │ │ ├── operations_builtin_types.h │ │ │ │ ├── operations_inplace_add.h │ │ │ │ ├── operations_inplace_bitand.h │ │ │ │ ├── operations_inplace_bitor.h │ │ │ │ ├── operations_inplace_bitxor.h │ │ │ │ ├── operations_inplace_floordiv.h │ │ │ │ ├── operations_inplace_lshift.h │ │ │ │ ├── operations_inplace_matmult.h │ │ │ │ ├── operations_inplace_mod.h │ │ │ │ ├── operations_inplace_mult.h │ │ │ │ ├── operations_inplace_olddiv.h │ │ │ │ ├── operations_inplace_pow.h │ │ │ │ ├── operations_inplace_rshift.h │ │ │ │ ├── operations_inplace_sub.h │ │ │ │ ├── operations_inplace_truediv.h │ │ │ │ ├── raising.h │ │ │ │ ├── rangeobjects.h │ │ │ │ ├── richcomparisons.h │ │ │ │ ├── sequences.h │ │ │ │ ├── sets.h │ │ │ │ ├── slices.h │ │ │ │ ├── strings.h │ │ │ │ ├── subscripts.h │ │ │ │ └── tuples.h │ │ │ ├── helpers.h │ │ │ ├── importing.h │ │ │ ├── incbin.h │ │ │ ├── jit_sources.h │ │ │ ├── prelude.h │ │ │ ├── printing.h │ │ │ ├── python_pgo.h │ │ │ ├── safe_string_ops.h │ │ │ ├── threading.h │ │ │ ├── tracing.h │ │ │ └── unfreezing.h │ │ ├── inline_copy/ │ │ │ ├── appdirs/ │ │ │ │ ├── LICENSE.txt │ │ │ │ └── appdirs.py │ │ │ ├── atomicwrites/ │ │ │ │ ├── LICENSE │ │ │ │ └── atomicwrites.py │ │ │ ├── bin/ │ │ │ │ └── scons.py │ │ │ ├── clcache/ │ │ │ │ └── clcache/ │ │ │ │ ├── LICENSE │ │ │ │ ├── __init__.py │ │ │ │ └── caching.py │ │ │ ├── colorama/ │ │ │ │ ├── LICENSE.txt │ │ │ │ └── colorama/ │ │ │ │ ├── __init__.py │ │ │ │ ├── ansi.py │ │ │ │ ├── ansitowin32.py │ │ │ │ ├── initialise.py │ │ │ │ ├── win32.py │ │ │ │ └── winterm.py │ │ │ ├── glob2/ │ │ │ │ ├── LICENSE │ │ │ │ └── glob2/ │ │ │ │ ├── __init__.py │ │ │ │ ├── compat.py │ │ │ │ ├── fnmatch.py │ │ │ │ └── impl.py │ │ │ ├── jinja2/ │ │ │ │ ├── LICENSE.rst │ │ │ │ ├── README.rst │ │ │ │ └── jinja2/ │ │ │ │ ├── __init__.py │ │ │ │ ├── _compat.py │ │ │ │ ├── _identifier.py │ │ │ │ ├── bccache.py │ │ │ │ ├── compiler.py │ │ │ │ ├── constants.py │ │ │ │ ├── debug.py │ │ │ │ ├── defaults.py │ │ │ │ ├── environment.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── ext.py │ │ │ │ ├── filters.py │ │ │ │ ├── idtracking.py │ │ │ │ ├── lexer.py │ │ │ │ ├── loaders.py │ │ │ │ ├── meta.py │ │ │ │ ├── nativetypes.py │ │ │ │ ├── nodes.py │ │ │ │ ├── optimizer.py │ │ │ │ ├── parser.py │ │ │ │ ├── runtime.py │ │ │ │ ├── sandbox.py │ │ │ │ ├── tests.py │ │ │ │ ├── utils.py │ │ │ │ └── visitor.py │ │ │ ├── jinja2_35/ │ │ │ │ ├── LICENSE.rst │ │ │ │ ├── README.rst │ │ │ │ └── jinja2/ │ │ │ │ ├── __init__.py │ │ │ │ ├── _compat.py │ │ │ │ ├── _identifier.py │ │ │ │ ├── bccache.py │ │ │ │ ├── compiler.py │ │ │ │ ├── constants.py │ │ │ │ ├── debug.py │ │ │ │ ├── defaults.py │ │ │ │ ├── environment.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── ext.py │ │ │ │ ├── filters.py │ │ │ │ ├── idtracking.py │ │ │ │ ├── lexer.py │ │ │ │ ├── loaders.py │ │ │ │ ├── meta.py │ │ │ │ ├── nativetypes.py │ │ │ │ ├── nodes.py │ │ │ │ ├── optimizer.py │ │ │ │ ├── parser.py │ │ │ │ ├── runtime.py │ │ │ │ ├── sandbox.py │ │ │ │ ├── tests.py │ │ │ │ ├── utils.py │ │ │ │ └── visitor.py │ │ │ ├── lib/ │ │ │ │ ├── scons-2.3.2/ │ │ │ │ │ └── SCons/ │ │ │ │ │ ├── Action.py │ │ │ │ │ ├── Builder.py │ │ │ │ │ ├── CacheDir.py │ │ │ │ │ ├── Conftest.py │ │ │ │ │ ├── Debug.py │ │ │ │ │ ├── Defaults.py │ │ │ │ │ ├── Environment.py │ │ │ │ │ ├── Errors.py │ │ │ │ │ ├── Executor.py │ │ │ │ │ ├── Job.py │ │ │ │ │ ├── Memoize.py │ │ │ │ │ ├── Node/ │ │ │ │ │ │ ├── Alias.py │ │ │ │ │ │ ├── FS.py │ │ │ │ │ │ ├── Python.py │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── Options/ │ │ │ │ │ │ ├── BoolOption.py │ │ │ │ │ │ ├── EnumOption.py │ │ │ │ │ │ ├── ListOption.py │ │ │ │ │ │ ├── PackageOption.py │ │ │ │ │ │ ├── PathOption.py │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── PathList.py │ │ │ │ │ ├── Platform/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── aix.py │ │ │ │ │ │ ├── cygwin.py │ │ │ │ │ │ ├── darwin.py │ │ │ │ │ │ ├── hpux.py │ │ │ │ │ │ ├── irix.py │ │ │ │ │ │ ├── os2.py │ │ │ │ │ │ ├── posix.py │ │ │ │ │ │ ├── sunos.py │ │ │ │ │ │ └── win32.py │ │ │ │ │ ├── SConf.py │ │ │ │ │ ├── SConsign.py │ │ │ │ │ ├── Scanner/ │ │ │ │ │ │ ├── C.py │ │ │ │ │ │ ├── Dir.py │ │ │ │ │ │ ├── Prog.py │ │ │ │ │ │ ├── RC.py │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── Script/ │ │ │ │ │ │ ├── Interactive.py │ │ │ │ │ │ ├── Main.py │ │ │ │ │ │ ├── SConsOptions.py │ │ │ │ │ │ ├── SConscript.py │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── Sig.py │ │ │ │ │ ├── Subst.py │ │ │ │ │ ├── Taskmaster.py │ │ │ │ │ ├── Tool/ │ │ │ │ │ │ ├── 386asm.py │ │ │ │ │ │ ├── BitKeeper.py │ │ │ │ │ │ ├── CVS.py │ │ │ │ │ │ ├── GettextCommon.py │ │ │ │ │ │ ├── MSCommon/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── arch.py │ │ │ │ │ │ │ ├── common.py │ │ │ │ │ │ │ ├── netframework.py │ │ │ │ │ │ │ ├── sdk.py │ │ │ │ │ │ │ ├── vc.py │ │ │ │ │ │ │ └── vs.py │ │ │ │ │ │ ├── Perforce.py │ │ │ │ │ │ ├── PharLapCommon.py │ │ │ │ │ │ ├── RCS.py │ │ │ │ │ │ ├── SCCS.py │ │ │ │ │ │ ├── Subversion.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── aixc++.py │ │ │ │ │ │ ├── aixcc.py │ │ │ │ │ │ ├── aixf77.py │ │ │ │ │ │ ├── aixlink.py │ │ │ │ │ │ ├── applelink.py │ │ │ │ │ │ ├── ar.py │ │ │ │ │ │ ├── as.py │ │ │ │ │ │ ├── bcc32.py │ │ │ │ │ │ ├── c++.py │ │ │ │ │ │ ├── cc.py │ │ │ │ │ │ ├── cyglink.py │ │ │ │ │ │ ├── default.py │ │ │ │ │ │ ├── dmd.py │ │ │ │ │ │ ├── docbook/ │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ ├── filesystem.py │ │ │ │ │ │ ├── g++.py │ │ │ │ │ │ ├── g77.py │ │ │ │ │ │ ├── gas.py │ │ │ │ │ │ ├── gcc.py │ │ │ │ │ │ ├── gdc.py │ │ │ │ │ │ ├── gettext.py │ │ │ │ │ │ ├── gfortran.py │ │ │ │ │ │ ├── gnulink.py │ │ │ │ │ │ ├── hpc++.py │ │ │ │ │ │ ├── hpcc.py │ │ │ │ │ │ ├── hplink.py │ │ │ │ │ │ ├── icc.py │ │ │ │ │ │ ├── icl.py │ │ │ │ │ │ ├── ilink.py │ │ │ │ │ │ ├── ilink32.py │ │ │ │ │ │ ├── install.py │ │ │ │ │ │ ├── intelc.py │ │ │ │ │ │ ├── lex.py │ │ │ │ │ │ ├── link.py │ │ │ │ │ │ ├── linkloc.py │ │ │ │ │ │ ├── m4.py │ │ │ │ │ │ ├── masm.py │ │ │ │ │ │ ├── mingw.py │ │ │ │ │ │ ├── msgfmt.py │ │ │ │ │ │ ├── msginit.py │ │ │ │ │ │ ├── msgmerge.py │ │ │ │ │ │ ├── mslib.py │ │ │ │ │ │ ├── mslink.py │ │ │ │ │ │ ├── mssdk.py │ │ │ │ │ │ ├── msvc.py │ │ │ │ │ │ ├── msvs.py │ │ │ │ │ │ ├── mwcc.py │ │ │ │ │ │ ├── mwld.py │ │ │ │ │ │ ├── nasm.py │ │ │ │ │ │ ├── rmic.py │ │ │ │ │ │ ├── rpcgen.py │ │ │ │ │ │ ├── sgiar.py │ │ │ │ │ │ ├── sgic++.py │ │ │ │ │ │ ├── sgicc.py │ │ │ │ │ │ ├── sgilink.py │ │ │ │ │ │ ├── sunar.py │ │ │ │ │ │ ├── sunc++.py │ │ │ │ │ │ ├── suncc.py │ │ │ │ │ │ ├── sunlink.py │ │ │ │ │ │ ├── tar.py │ │ │ │ │ │ ├── textfile.py │ │ │ │ │ │ ├── tlib.py │ │ │ │ │ │ ├── wix.py │ │ │ │ │ │ ├── xgettext.py │ │ │ │ │ │ └── zip.py │ │ │ │ │ ├── Util.py │ │ │ │ │ ├── Variables/ │ │ │ │ │ │ ├── BoolVariable.py │ │ │ │ │ │ ├── EnumVariable.py │ │ │ │ │ │ ├── ListVariable.py │ │ │ │ │ │ ├── PackageVariable.py │ │ │ │ │ │ ├── PathVariable.py │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── Warnings.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── compat/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _scons_builtins.py │ │ │ │ │ │ ├── _scons_collections.py │ │ │ │ │ │ ├── _scons_dbm.py │ │ │ │ │ │ ├── _scons_hashlib.py │ │ │ │ │ │ ├── _scons_io.py │ │ │ │ │ │ ├── _scons_sets.py │ │ │ │ │ │ └── _scons_subprocess.py │ │ │ │ │ ├── cpp.py │ │ │ │ │ ├── dblite.py │ │ │ │ │ └── exitfuncs.py │ │ │ │ ├── scons-3.1.2/ │ │ │ │ │ └── SCons/ │ │ │ │ │ ├── Action.py │ │ │ │ │ ├── Builder.py │ │ │ │ │ ├── CacheDir.py │ │ │ │ │ ├── Conftest.py │ │ │ │ │ ├── Debug.py │ │ │ │ │ ├── Defaults.py │ │ │ │ │ ├── Environment.py │ │ │ │ │ ├── Errors.py │ │ │ │ │ ├── Executor.py │ │ │ │ │ ├── Job.py │ │ │ │ │ ├── Memoize.py │ │ │ │ │ ├── Node/ │ │ │ │ │ │ ├── Alias.py │ │ │ │ │ │ ├── FS.py │ │ │ │ │ │ ├── Python.py │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── PathList.py │ │ │ │ │ ├── Platform/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── aix.py │ │ │ │ │ │ ├── cygwin.py │ │ │ │ │ │ ├── darwin.py │ │ │ │ │ │ ├── hpux.py │ │ │ │ │ │ ├── irix.py │ │ │ │ │ │ ├── mingw.py │ │ │ │ │ │ ├── os2.py │ │ │ │ │ │ ├── posix.py │ │ │ │ │ │ ├── sunos.py │ │ │ │ │ │ ├── virtualenv.py │ │ │ │ │ │ └── win32.py │ │ │ │ │ ├── SConf.py │ │ │ │ │ ├── SConsign.py │ │ │ │ │ ├── Scanner/ │ │ │ │ │ │ ├── C.py │ │ │ │ │ │ ├── Dir.py │ │ │ │ │ │ ├── Prog.py │ │ │ │ │ │ ├── RC.py │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── Script/ │ │ │ │ │ │ ├── Interactive.py │ │ │ │ │ │ ├── Main.py │ │ │ │ │ │ ├── SConsOptions.py │ │ │ │ │ │ ├── SConscript.py │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── Subst.py │ │ │ │ │ ├── Taskmaster.py │ │ │ │ │ ├── Tool/ │ │ │ │ │ │ ├── 386asm.py │ │ │ │ │ │ ├── GettextCommon.py │ │ │ │ │ │ ├── MSCommon/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── arch.py │ │ │ │ │ │ │ ├── common.py │ │ │ │ │ │ │ ├── netframework.py │ │ │ │ │ │ │ ├── sdk.py │ │ │ │ │ │ │ ├── vc.py │ │ │ │ │ │ │ └── vs.py │ │ │ │ │ │ ├── PharLapCommon.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── aixc++.py │ │ │ │ │ │ ├── aixcc.py │ │ │ │ │ │ ├── aixcxx.py │ │ │ │ │ │ ├── aixlink.py │ │ │ │ │ │ ├── applelink.py │ │ │ │ │ │ ├── ar.py │ │ │ │ │ │ ├── as.py │ │ │ │ │ │ ├── bcc32.py │ │ │ │ │ │ ├── c++.py │ │ │ │ │ │ ├── cc.py │ │ │ │ │ │ ├── clang.py │ │ │ │ │ │ ├── clangCommon/ │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ ├── clangxx.py │ │ │ │ │ │ ├── cxx.py │ │ │ │ │ │ ├── cyglink.py │ │ │ │ │ │ ├── default.py │ │ │ │ │ │ ├── docbook/ │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ ├── filesystem.py │ │ │ │ │ │ ├── g++.py │ │ │ │ │ │ ├── gas.py │ │ │ │ │ │ ├── gcc.py │ │ │ │ │ │ ├── gettext_tool.py │ │ │ │ │ │ ├── gnulink.py │ │ │ │ │ │ ├── gxx.py │ │ │ │ │ │ ├── hpc++.py │ │ │ │ │ │ ├── hpcc.py │ │ │ │ │ │ ├── hpcxx.py │ │ │ │ │ │ ├── hplink.py │ │ │ │ │ │ ├── icc.py │ │ │ │ │ │ ├── icl.py │ │ │ │ │ │ ├── ilink.py │ │ │ │ │ │ ├── ilink32.py │ │ │ │ │ │ ├── install.py │ │ │ │ │ │ ├── intelc.py │ │ │ │ │ │ ├── link.py │ │ │ │ │ │ ├── linkloc.py │ │ │ │ │ │ ├── m4.py │ │ │ │ │ │ ├── masm.py │ │ │ │ │ │ ├── mingw.py │ │ │ │ │ │ ├── msgfmt.py │ │ │ │ │ │ ├── msginit.py │ │ │ │ │ │ ├── msgmerge.py │ │ │ │ │ │ ├── mslib.py │ │ │ │ │ │ ├── mslink.py │ │ │ │ │ │ ├── mssdk.py │ │ │ │ │ │ ├── msvc.py │ │ │ │ │ │ ├── msvs.py │ │ │ │ │ │ ├── mwcc.py │ │ │ │ │ │ ├── mwld.py │ │ │ │ │ │ ├── nasm.py │ │ │ │ │ │ ├── rmic.py │ │ │ │ │ │ ├── rpcgen.py │ │ │ │ │ │ ├── sgiar.py │ │ │ │ │ │ ├── sgic++.py │ │ │ │ │ │ ├── sgicc.py │ │ │ │ │ │ ├── sgicxx.py │ │ │ │ │ │ ├── sgilink.py │ │ │ │ │ │ ├── sunar.py │ │ │ │ │ │ ├── sunc++.py │ │ │ │ │ │ ├── suncc.py │ │ │ │ │ │ ├── suncxx.py │ │ │ │ │ │ ├── sunlink.py │ │ │ │ │ │ ├── tar.py │ │ │ │ │ │ ├── textfile.py │ │ │ │ │ │ ├── tlib.py │ │ │ │ │ │ ├── wix.py │ │ │ │ │ │ ├── xgettext.py │ │ │ │ │ │ └── zip.py │ │ │ │ │ ├── Util.py │ │ │ │ │ ├── Variables/ │ │ │ │ │ │ ├── BoolVariable.py │ │ │ │ │ │ ├── EnumVariable.py │ │ │ │ │ │ ├── ListVariable.py │ │ │ │ │ │ ├── PackageVariable.py │ │ │ │ │ │ ├── PathVariable.py │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── Warnings.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── compat/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _scons_dbm.py │ │ │ │ │ ├── cpp.py │ │ │ │ │ ├── dblite.py │ │ │ │ │ └── exitfuncs.py │ │ │ │ └── scons-4.3.0/ │ │ │ │ └── SCons/ │ │ │ │ ├── Action.py │ │ │ │ ├── Builder.py │ │ │ │ ├── CacheDir.py │ │ │ │ ├── Conftest.py │ │ │ │ ├── Debug.py │ │ │ │ ├── Defaults.py │ │ │ │ ├── Environment.py │ │ │ │ ├── EnvironmentValues.py │ │ │ │ ├── Errors.py │ │ │ │ ├── Executor.py │ │ │ │ ├── Job.py │ │ │ │ ├── Memoize.py │ │ │ │ ├── Node/ │ │ │ │ │ ├── Alias.py │ │ │ │ │ ├── FS.py │ │ │ │ │ ├── Python.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── PathList.py │ │ │ │ ├── Platform/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── aix.py │ │ │ │ │ ├── cygwin.py │ │ │ │ │ ├── darwin.py │ │ │ │ │ ├── hpux.py │ │ │ │ │ ├── irix.py │ │ │ │ │ ├── mingw.py │ │ │ │ │ ├── os2.py │ │ │ │ │ ├── posix.py │ │ │ │ │ ├── sunos.py │ │ │ │ │ ├── virtualenv.py │ │ │ │ │ └── win32.py │ │ │ │ ├── SConf.py │ │ │ │ ├── SConsign.py │ │ │ │ ├── Scanner/ │ │ │ │ │ ├── C.py │ │ │ │ │ ├── Dir.py │ │ │ │ │ ├── Prog.py │ │ │ │ │ ├── RC.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── Script/ │ │ │ │ │ ├── Interactive.py │ │ │ │ │ ├── Main.py │ │ │ │ │ ├── SConsOptions.py │ │ │ │ │ ├── SConscript.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── Subst.py │ │ │ │ ├── Taskmaster.py │ │ │ │ ├── Tool/ │ │ │ │ │ ├── 386asm.py │ │ │ │ │ ├── GettextCommon.py │ │ │ │ │ ├── MSCommon/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── arch.py │ │ │ │ │ │ ├── common.py │ │ │ │ │ │ ├── netframework.py │ │ │ │ │ │ ├── sdk.py │ │ │ │ │ │ ├── vc.py │ │ │ │ │ │ └── vs.py │ │ │ │ │ ├── PharLapCommon.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── aixc++.py │ │ │ │ │ ├── aixcc.py │ │ │ │ │ ├── aixcxx.py │ │ │ │ │ ├── aixlink.py │ │ │ │ │ ├── applelink.py │ │ │ │ │ ├── ar.py │ │ │ │ │ ├── as.py │ │ │ │ │ ├── asm.py │ │ │ │ │ ├── bcc32.py │ │ │ │ │ ├── c++.py │ │ │ │ │ ├── cc.py │ │ │ │ │ ├── clang.py │ │ │ │ │ ├── clangCommon/ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── clangxx.py │ │ │ │ │ ├── cxx.py │ │ │ │ │ ├── cyglink.py │ │ │ │ │ ├── default.py │ │ │ │ │ ├── filesystem.py │ │ │ │ │ ├── g++.py │ │ │ │ │ ├── gas.py │ │ │ │ │ ├── gcc.py │ │ │ │ │ ├── gettext_tool.py │ │ │ │ │ ├── gnulink.py │ │ │ │ │ ├── gxx.py │ │ │ │ │ ├── hpc++.py │ │ │ │ │ ├── hpcc.py │ │ │ │ │ ├── hpcxx.py │ │ │ │ │ ├── hplink.py │ │ │ │ │ ├── icc.py │ │ │ │ │ ├── icl.py │ │ │ │ │ ├── ilink.py │ │ │ │ │ ├── ilink32.py │ │ │ │ │ ├── install.py │ │ │ │ │ ├── intelc.py │ │ │ │ │ ├── link.py │ │ │ │ │ ├── linkCommon/ │ │ │ │ │ │ ├── LoadableModule.py │ │ │ │ │ │ ├── SharedLibrary.py │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── linkloc.py │ │ │ │ │ ├── m4.py │ │ │ │ │ ├── masm.py │ │ │ │ │ ├── mingw.py │ │ │ │ │ ├── msgfmt.py │ │ │ │ │ ├── msginit.py │ │ │ │ │ ├── msgmerge.py │ │ │ │ │ ├── mslib.py │ │ │ │ │ ├── mslink.py │ │ │ │ │ ├── mssdk.py │ │ │ │ │ ├── msvc.py │ │ │ │ │ ├── msvs.py │ │ │ │ │ ├── mwcc.py │ │ │ │ │ ├── mwld.py │ │ │ │ │ ├── nasm.py │ │ │ │ │ ├── rmic.py │ │ │ │ │ ├── rpcgen.py │ │ │ │ │ ├── sgiar.py │ │ │ │ │ ├── sgic++.py │ │ │ │ │ ├── sgicc.py │ │ │ │ │ ├── sgicxx.py │ │ │ │ │ ├── sgilink.py │ │ │ │ │ ├── sunar.py │ │ │ │ │ ├── sunc++.py │ │ │ │ │ ├── suncc.py │ │ │ │ │ ├── suncxx.py │ │ │ │ │ ├── sunlink.py │ │ │ │ │ ├── tar.py │ │ │ │ │ ├── textfile.py │ │ │ │ │ ├── tlib.py │ │ │ │ │ ├── wix.py │ │ │ │ │ ├── xgettext.py │ │ │ │ │ └── zip.py │ │ │ │ ├── Util.py │ │ │ │ ├── Utilities/ │ │ │ │ │ ├── ConfigureCache.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── sconsign.py │ │ │ │ ├── Variables/ │ │ │ │ │ ├── BoolVariable.py │ │ │ │ │ ├── EnumVariable.py │ │ │ │ │ ├── ListVariable.py │ │ │ │ │ ├── PackageVariable.py │ │ │ │ │ ├── PathVariable.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── Warnings.py │ │ │ │ ├── __init__.py │ │ │ │ ├── compat/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _scons_dbm.py │ │ │ │ │ └── win32.py │ │ │ │ ├── cpp.py │ │ │ │ ├── dblite.py │ │ │ │ └── exitfuncs.py │ │ │ ├── libbacktrace/ │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── backtrace/ │ │ │ │ ├── alloc.c │ │ │ │ ├── backtrace-supported.h │ │ │ │ ├── backtrace.c │ │ │ │ ├── backtrace.h │ │ │ │ ├── config.h │ │ │ │ ├── dwarf.c │ │ │ │ ├── elf.c │ │ │ │ ├── fileline.c │ │ │ │ ├── filenames.h │ │ │ │ ├── internal.h │ │ │ │ ├── macho.c │ │ │ │ ├── mmap.c │ │ │ │ ├── pecoff.c │ │ │ │ ├── posix.c │ │ │ │ ├── read.c │ │ │ │ ├── sort.c │ │ │ │ ├── state.c │ │ │ │ └── xcoff.c │ │ │ ├── markupsafe/ │ │ │ │ ├── LICENSE.rst │ │ │ │ └── markupsafe/ │ │ │ │ ├── __init__.py │ │ │ │ ├── _compat.py │ │ │ │ ├── _constants.py │ │ │ │ └── _native.py │ │ │ ├── pkg_resources/ │ │ │ │ └── pkg_resources/ │ │ │ │ ├── __init__.py │ │ │ │ └── py31compat.py │ │ │ ├── pkg_resources_27/ │ │ │ │ └── pkg_resources/ │ │ │ │ └── __init__.py │ │ │ ├── tqdm/ │ │ │ │ ├── LICENCE │ │ │ │ └── tqdm/ │ │ │ │ ├── __init__.py │ │ │ │ ├── _main.py │ │ │ │ ├── _monitor.py │ │ │ │ ├── _tqdm.py │ │ │ │ ├── _tqdm_notebook.py │ │ │ │ ├── _tqdm_pandas.py │ │ │ │ ├── _utils.py │ │ │ │ ├── auto.py │ │ │ │ ├── autonotebook.py │ │ │ │ ├── dask.py │ │ │ │ ├── notebook.py │ │ │ │ ├── std.py │ │ │ │ ├── tk.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ ├── wax_off/ │ │ │ │ ├── LICENSE │ │ │ │ └── wax_off.py │ │ │ ├── yaml/ │ │ │ │ ├── LICENSE │ │ │ │ └── yaml/ │ │ │ │ ├── __init__.py │ │ │ │ ├── composer.py │ │ │ │ ├── constructor.py │ │ │ │ ├── cyaml.py │ │ │ │ ├── dumper.py │ │ │ │ ├── emitter.py │ │ │ │ ├── error.py │ │ │ │ ├── events.py │ │ │ │ ├── loader.py │ │ │ │ ├── nodes.py │ │ │ │ ├── parser.py │ │ │ │ ├── reader.py │ │ │ │ ├── representer.py │ │ │ │ ├── resolver.py │ │ │ │ ├── scanner.py │ │ │ │ ├── serializer.py │ │ │ │ └── tokens.py │ │ │ ├── yaml_27/ │ │ │ │ ├── LICENSE │ │ │ │ └── yaml/ │ │ │ │ ├── __init__.py │ │ │ │ ├── composer.py │ │ │ │ ├── constructor.py │ │ │ │ ├── cyaml.py │ │ │ │ ├── dumper.py │ │ │ │ ├── emitter.py │ │ │ │ ├── error.py │ │ │ │ ├── events.py │ │ │ │ ├── loader.py │ │ │ │ ├── nodes.py │ │ │ │ ├── parser.py │ │ │ │ ├── reader.py │ │ │ │ ├── representer.py │ │ │ │ ├── resolver.py │ │ │ │ ├── scanner.py │ │ │ │ ├── serializer.py │ │ │ │ └── tokens.py │ │ │ ├── yaml_35/ │ │ │ │ ├── LICENSE │ │ │ │ └── yaml/ │ │ │ │ ├── __init__.py │ │ │ │ ├── composer.py │ │ │ │ ├── constructor.py │ │ │ │ ├── cyaml.py │ │ │ │ ├── dumper.py │ │ │ │ ├── emitter.py │ │ │ │ ├── error.py │ │ │ │ ├── events.py │ │ │ │ ├── loader.py │ │ │ │ ├── nodes.py │ │ │ │ ├── parser.py │ │ │ │ ├── reader.py │ │ │ │ ├── representer.py │ │ │ │ ├── resolver.py │ │ │ │ ├── scanner.py │ │ │ │ ├── serializer.py │ │ │ │ └── tokens.py │ │ │ ├── zlib/ │ │ │ │ ├── LICENSE │ │ │ │ ├── crc32.c │ │ │ │ ├── crc32.h │ │ │ │ ├── zconf.h │ │ │ │ ├── zlib.h │ │ │ │ └── zutil.h │ │ │ └── zstd/ │ │ │ ├── LICENSE.txt │ │ │ ├── common/ │ │ │ │ ├── bitstream.h │ │ │ │ ├── compiler.h │ │ │ │ ├── cpu.h │ │ │ │ ├── debug.h │ │ │ │ ├── entropy_common.c │ │ │ │ ├── error_private.c │ │ │ │ ├── error_private.h │ │ │ │ ├── fse.h │ │ │ │ ├── fse_decompress.c │ │ │ │ ├── huf.h │ │ │ │ ├── mem.h │ │ │ │ ├── xxhash.c │ │ │ │ ├── xxhash.h │ │ │ │ ├── zstd_common.c │ │ │ │ ├── zstd_deps.h │ │ │ │ ├── zstd_errors.h │ │ │ │ └── zstd_internal.h │ │ │ ├── decompress/ │ │ │ │ ├── huf_decompress.c │ │ │ │ ├── zstd_ddict.c │ │ │ │ ├── zstd_ddict.h │ │ │ │ ├── zstd_decompress.c │ │ │ │ ├── zstd_decompress_block.c │ │ │ │ ├── zstd_decompress_block.h │ │ │ │ └── zstd_decompress_internal.h │ │ │ └── zstd.h │ │ └── static_src/ │ │ ├── CompiledAsyncgenType.c │ │ ├── CompiledCellType.c │ │ ├── CompiledCodeHelpers.c │ │ ├── CompiledCoroutineType.c │ │ ├── CompiledFrameType.c │ │ ├── CompiledFunctionType.c │ │ ├── CompiledGeneratorType.c │ │ ├── CompiledGeneratorTypeUncompiledIntegration.c │ │ ├── CompiledMethodType.c │ │ ├── HelpersAllocator.c │ │ ├── HelpersAttributes.c │ │ ├── HelpersBuiltin.c │ │ ├── HelpersBuiltinTypeMethods.c │ │ ├── HelpersBytes.c │ │ ├── HelpersCalling.c │ │ ├── HelpersCallingGenerated.c │ │ ├── HelpersChecksumTools.c │ │ ├── HelpersClasses.c │ │ ├── HelpersComparisonEq.c │ │ ├── HelpersComparisonEqUtils.c │ │ ├── HelpersComparisonGe.c │ │ ├── HelpersComparisonGt.c │ │ ├── HelpersComparisonLe.c │ │ ├── HelpersComparisonLt.c │ │ ├── HelpersComparisonNe.c │ │ ├── HelpersConstantsBlob.c │ │ ├── HelpersDeepcopy.c │ │ ├── HelpersDictionaries.c │ │ ├── HelpersDictionariesGenerated.c │ │ ├── HelpersDumpBacktraces.c │ │ ├── HelpersEnvironmentVariables.c │ │ ├── HelpersEnvironmentVariablesSystem.c │ │ ├── HelpersExceptions.c │ │ ├── HelpersFiles.c │ │ ├── HelpersFilesystemPaths.c │ │ ├── HelpersFloats.c │ │ ├── HelpersHeapStorage.c │ │ ├── HelpersImport.c │ │ ├── HelpersImportHard.c │ │ ├── HelpersJitSources.c │ │ ├── HelpersLists.c │ │ ├── HelpersListsGenerated.c │ │ ├── HelpersMappings.c │ │ ├── HelpersMatching.c │ │ ├── HelpersOperationBinaryAdd.c │ │ ├── HelpersOperationBinaryAddUtils.c │ │ ├── HelpersOperationBinaryBitand.c │ │ ├── HelpersOperationBinaryBitor.c │ │ ├── HelpersOperationBinaryBitxor.c │ │ ├── HelpersOperationBinaryDivmod.c │ │ ├── HelpersOperationBinaryDivmodUtils.c │ │ ├── HelpersOperationBinaryFloordiv.c │ │ ├── HelpersOperationBinaryInplaceAdd.c │ │ ├── HelpersOperationBinaryLshift.c │ │ ├── HelpersOperationBinaryMatmult.c │ │ ├── HelpersOperationBinaryMod.c │ │ ├── HelpersOperationBinaryMult.c │ │ ├── HelpersOperationBinaryMultUtils.c │ │ ├── HelpersOperationBinaryOlddiv.c │ │ ├── HelpersOperationBinaryPow.c │ │ ├── HelpersOperationBinaryPowUtils.c │ │ ├── HelpersOperationBinaryRshift.c │ │ ├── HelpersOperationBinarySub.c │ │ ├── HelpersOperationBinaryTruediv.c │ │ ├── HelpersOperationInplaceAdd.c │ │ ├── HelpersOperationInplaceAddUtils.c │ │ ├── HelpersOperationInplaceBitand.c │ │ ├── HelpersOperationInplaceBitor.c │ │ ├── HelpersOperationInplaceBitxor.c │ │ ├── HelpersOperationInplaceFloordiv.c │ │ ├── HelpersOperationInplaceLshift.c │ │ ├── HelpersOperationInplaceMatmult.c │ │ ├── HelpersOperationInplaceMod.c │ │ ├── HelpersOperationInplaceMult.c │ │ ├── HelpersOperationInplaceOlddiv.c │ │ ├── HelpersOperationInplacePow.c │ │ ├── HelpersOperationInplaceRshift.c │ │ ├── HelpersOperationInplaceSub.c │ │ ├── HelpersOperationInplaceTruediv.c │ │ ├── HelpersProfiling.c │ │ ├── HelpersPythonPgo.c │ │ ├── HelpersRaising.c │ │ ├── HelpersSafeStrings.c │ │ ├── HelpersSequences.c │ │ ├── HelpersSlices.c │ │ ├── HelpersStrings.c │ │ ├── HelpersTuples.c │ │ ├── HelpersTypes.c │ │ ├── InspectPatcher.c │ │ ├── MainProgram.c │ │ ├── MetaPathBasedLoader.c │ │ ├── MetaPathBasedLoaderImportlibMetadataDistribution.c │ │ ├── MetaPathBasedLoaderResourceReader.c │ │ ├── MetaPathBasedLoaderResourceReaderFiles.c │ │ ├── OnefileBootstrap.c │ │ └── OnefileSplashScreen.cpp │ ├── code_generation/ │ │ ├── AsyncgenCodes.py │ │ ├── AttributeCodes.py │ │ ├── BinaryOperationHelperDefinitions.py │ │ ├── BranchCodes.py │ │ ├── BuiltinCodes.py │ │ ├── CallCodes.py │ │ ├── ClassCodes.py │ │ ├── CodeGeneration.py │ │ ├── CodeHelperSelection.py │ │ ├── CodeHelpers.py │ │ ├── CodeObjectCodes.py │ │ ├── ComparisonCodes.py │ │ ├── ComparisonHelperDefinitions.py │ │ ├── ConditionalCodes.py │ │ ├── ConstantCodes.py │ │ ├── Contexts.py │ │ ├── CoroutineCodes.py │ │ ├── CtypesCodes.py │ │ ├── DictCodes.py │ │ ├── Emission.py │ │ ├── ErrorCodes.py │ │ ├── EvalCodes.py │ │ ├── ExceptionCodes.py │ │ ├── ExpressionCTypeSelectionHelpers.py │ │ ├── ExpressionCodes.py │ │ ├── FrameCodes.py │ │ ├── FunctionCodes.py │ │ ├── GeneratorCodes.py │ │ ├── GlobalConstants.py │ │ ├── GlobalsLocalsCodes.py │ │ ├── IdCodes.py │ │ ├── ImportCodes.py │ │ ├── Indentation.py │ │ ├── IndexCodes.py │ │ ├── InjectCCodes.py │ │ ├── IntegerCodes.py │ │ ├── IteratorCodes.py │ │ ├── LabelCodes.py │ │ ├── LineNumberCodes.py │ │ ├── ListCodes.py │ │ ├── LoaderCodes.py │ │ ├── LocalsDictCodes.py │ │ ├── LoopCodes.py │ │ ├── MatchCodes.py │ │ ├── ModuleCodes.py │ │ ├── Namify.py │ │ ├── OperationCodes.py │ │ ├── PackageResourceCodes.py │ │ ├── PrintCodes.py │ │ ├── PythonAPICodes.py │ │ ├── RaisingCodes.py │ │ ├── Reports.py │ │ ├── ReturnCodes.py │ │ ├── SetCodes.py │ │ ├── SliceCodes.py │ │ ├── StringCodes.py │ │ ├── SubscriptCodes.py │ │ ├── TensorflowCodes.py │ │ ├── TryCodes.py │ │ ├── TupleCodes.py │ │ ├── VariableCodes.py │ │ ├── VariableDeclarations.py │ │ ├── YieldCodes.py │ │ ├── __init__.py │ │ ├── c_types/ │ │ │ ├── CTypeBases.py │ │ │ ├── CTypeBooleans.py │ │ │ ├── CTypeCFloats.py │ │ │ ├── CTypeCLongs.py │ │ │ ├── CTypeModuleDictVariables.py │ │ │ ├── CTypeNuitkaBooleans.py │ │ │ ├── CTypeNuitkaInts.py │ │ │ ├── CTypeNuitkaVoids.py │ │ │ ├── CTypePyObjectPointers.py │ │ │ ├── CTypeVoids.py │ │ │ └── __init__.py │ │ ├── templates/ │ │ │ ├── CodeTemplatesAsyncgens.py │ │ │ ├── CodeTemplatesConstants.py │ │ │ ├── CodeTemplatesCoroutines.py │ │ │ ├── CodeTemplatesExceptions.py │ │ │ ├── CodeTemplatesFrames.py │ │ │ ├── CodeTemplatesFunction.py │ │ │ ├── CodeTemplatesGeneratorFunction.py │ │ │ ├── CodeTemplatesIterators.py │ │ │ ├── CodeTemplatesLoader.py │ │ │ ├── CodeTemplatesModules.py │ │ │ ├── CodeTemplatesVariables.py │ │ │ ├── TemplateDebugWrapper.py │ │ │ └── __init__.py │ │ └── templates_c/ │ │ ├── CodeTemplateCallsMethodPositional.c.j2 │ │ ├── CodeTemplateCallsMixed.c.j2 │ │ ├── CodeTemplateCallsPositional.c.j2 │ │ ├── CodeTemplateCallsPositionalMethodDescr.c.j2 │ │ ├── CodeTemplateMakeListHinted.c.j2 │ │ ├── CodeTemplateMakeListSmall.c.j2 │ │ ├── HelperBuiltinMethodOperation.c.j2 │ │ ├── HelperDictionaryCopy.c.j2 │ │ ├── HelperImportHard.c.j2 │ │ ├── HelperLongTools.c.j2 │ │ ├── HelperObjectTools.c.j2 │ │ ├── HelperOperationBinary.c.j2 │ │ ├── HelperOperationComparison.c.j2 │ │ ├── HelperOperationComparisonBytes.c.j2 │ │ ├── HelperOperationComparisonFloat.c.j2 │ │ ├── HelperOperationComparisonInt.c.j2 │ │ ├── HelperOperationComparisonList.c.j2 │ │ ├── HelperOperationComparisonLong.c.j2 │ │ ├── HelperOperationComparisonStr.c.j2 │ │ ├── HelperOperationComparisonTuple.c.j2 │ │ ├── HelperOperationComparisonUnicode.c.j2 │ │ ├── HelperOperationInplace.c.j2 │ │ ├── HelperSlotsBinary.c.j2 │ │ ├── HelperSlotsBytes.c.j2 │ │ ├── HelperSlotsCommon.c.j2 │ │ ├── HelperSlotsFloat.c.j2 │ │ ├── HelperSlotsInt.c.j2 │ │ ├── HelperSlotsList.c.j2 │ │ ├── HelperSlotsLong.c.j2 │ │ ├── HelperSlotsSet.c.j2 │ │ ├── HelperSlotsStr.c.j2 │ │ ├── HelperSlotsTuple.c.j2 │ │ └── HelperSlotsUnicode.c.j2 │ ├── containers/ │ │ ├── Namedtuples.py │ │ ├── OrderedDicts.py │ │ ├── OrderedSets.py │ │ ├── OrderedSetsFallback.py │ │ └── __init__.py │ ├── distutils/ │ │ ├── Build.py │ │ ├── DistutilCommands.py │ │ └── __init__.py │ ├── finalizations/ │ │ ├── Finalization.py │ │ ├── FinalizeMarkups.py │ │ └── __init__.py │ ├── freezer/ │ │ ├── DependsExe.py │ │ ├── DllDependenciesCommon.py │ │ ├── DllDependenciesMacOS.py │ │ ├── DllDependenciesPosix.py │ │ ├── DllDependenciesWin32.py │ │ ├── ImportDetection.py │ │ ├── IncludedDataFiles.py │ │ ├── IncludedEntryPoints.py │ │ ├── Onefile.py │ │ ├── Standalone.py │ │ └── __init__.py │ ├── importing/ │ │ ├── IgnoreListing.py │ │ ├── ImportCache.py │ │ ├── ImportResolving.py │ │ ├── Importing.py │ │ ├── PreloadedPackages.py │ │ ├── Recursion.py │ │ ├── StandardLibrary.py │ │ └── __init__.py │ ├── nodes/ │ │ ├── AsyncgenNodes.py │ │ ├── AttributeLookupNodes.py │ │ ├── AttributeNodes.py │ │ ├── AttributeNodesGenerated.py │ │ ├── BuiltinAllNodes.py │ │ ├── BuiltinAnyNodes.py │ │ ├── BuiltinComplexNodes.py │ │ ├── BuiltinDecodingNodes.py │ │ ├── BuiltinDecoratorNodes.py │ │ ├── BuiltinDictNodes.py │ │ ├── BuiltinFormatNodes.py │ │ ├── BuiltinHashNodes.py │ │ ├── BuiltinInputNodes.py │ │ ├── BuiltinIntegerNodes.py │ │ ├── BuiltinIteratorNodes.py │ │ ├── BuiltinLenNodes.py │ │ ├── BuiltinNextNodes.py │ │ ├── BuiltinOpenNodes.py │ │ ├── BuiltinOperationNodeBasesGenerated.py │ │ ├── BuiltinRangeNodes.py │ │ ├── BuiltinRefNodes.py │ │ ├── BuiltinSumNodes.py │ │ ├── BuiltinTypeNodes.py │ │ ├── BuiltinVarsNodes.py │ │ ├── BytesNodes.py │ │ ├── CallNodes.py │ │ ├── Checkers.py │ │ ├── ChildrenHavingMixins.py │ │ ├── ClassNodes.py │ │ ├── CodeObjectSpecs.py │ │ ├── ComparisonNodes.py │ │ ├── ConditionalNodes.py │ │ ├── ConstantRefNodes.py │ │ ├── ContainerMakingNodes.py │ │ ├── ContainerOperationNodes.py │ │ ├── CoroutineNodes.py │ │ ├── CtypesNodes.py │ │ ├── DictionaryNodes.py │ │ ├── ExceptionNodes.py │ │ ├── ExecEvalNodes.py │ │ ├── ExpressionBases.py │ │ ├── ExpressionBasesGenerated.py │ │ ├── ExpressionShapeMixins.py │ │ ├── FrameNodes.py │ │ ├── FunctionAttributeNodes.py │ │ ├── FunctionNodes.py │ │ ├── FutureSpecs.py │ │ ├── GeneratorNodes.py │ │ ├── GlobalsLocalsNodes.py │ │ ├── HardImportNodesGenerated.py │ │ ├── ImportHardNodes.py │ │ ├── ImportNodes.py │ │ ├── IndicatorMixins.py │ │ ├── InjectCNodes.py │ │ ├── IterationHandles.py │ │ ├── KeyValuePairNodes.py │ │ ├── ListOperationNodes.py │ │ ├── LocalsDictNodes.py │ │ ├── LocalsScopes.py │ │ ├── LoopNodes.py │ │ ├── MatchNodes.py │ │ ├── ModuleAttributeNodes.py │ │ ├── ModuleNodes.py │ │ ├── NodeBases.py │ │ ├── NodeMakingHelpers.py │ │ ├── NodeMetaClasses.py │ │ ├── OperatorNodes.py │ │ ├── OperatorNodesUnary.py │ │ ├── OsSysNodes.py │ │ ├── OutlineNodes.py │ │ ├── PackageMetadataNodes.py │ │ ├── PackageResourceNodes.py │ │ ├── PrintNodes.py │ │ ├── ReturnNodes.py │ │ ├── SideEffectNodes.py │ │ ├── SliceNodes.py │ │ ├── StatementBasesGenerated.py │ │ ├── StatementNodes.py │ │ ├── StrNodes.py │ │ ├── StringConcatenationNodes.py │ │ ├── SubscriptNodes.py │ │ ├── TensorflowNodes.py │ │ ├── TryNodes.py │ │ ├── TypeMatchNodes.py │ │ ├── TypeNodes.py │ │ ├── VariableAssignNodes.py │ │ ├── VariableDelNodes.py │ │ ├── VariableNameNodes.py │ │ ├── VariableRefNodes.py │ │ ├── VariableReleaseNodes.py │ │ ├── YieldNodes.py │ │ ├── __init__.py │ │ └── shapes/ │ │ ├── BuiltinTypeShapes.py │ │ ├── ControlFlowDescriptions.py │ │ ├── ShapeMixins.py │ │ ├── StandardShapes.py │ │ └── __init__.py │ ├── optimizations/ │ │ ├── BytecodeDemotion.py │ │ ├── FunctionInlining.py │ │ ├── Graphs.py │ │ ├── Optimization.py │ │ ├── OptimizeBuiltinCalls.py │ │ ├── Tags.py │ │ ├── TraceCollections.py │ │ ├── ValueTraces.py │ │ └── __init__.py │ ├── pgo/ │ │ ├── PGO.py │ │ └── __init__.py │ ├── plugins/ │ │ ├── PluginBase.py │ │ ├── Plugins.py │ │ ├── __init__.py │ │ └── standard/ │ │ ├── AntiBloatPlugin.py │ │ ├── ConsiderPyLintAnnotationsPlugin.py │ │ ├── DataFilesPlugin.py │ │ ├── DelvewheelPlugin.py │ │ ├── DillPlugin/ │ │ │ ├── DillPlugin.c │ │ │ └── dill-postLoad.py │ │ ├── DillPlugin.py │ │ ├── DllFilesPlugin.py │ │ ├── EnumPlugin.py │ │ ├── EventletPlugin.py │ │ ├── GeventPlugin.py │ │ ├── GiPlugin.py │ │ ├── GlfwPlugin.py │ │ ├── ImplicitImports.py │ │ ├── KivyPlugin.py │ │ ├── MatplotlibPlugin.py │ │ ├── MultiprocessingPlugin.py │ │ ├── NumpyPlugin.py │ │ ├── OptionsNannyPlugin.py │ │ ├── PbrPlugin.py │ │ ├── PkgResourcesPlugin.py │ │ ├── PmwPlugin.py │ │ ├── PySidePyQtPlugin.py │ │ ├── PywebViewPlugin.py │ │ ├── TensorflowPlugin.py │ │ ├── TkinterPlugin.py │ │ ├── TorchPlugin.py │ │ ├── TransformersPlugin.py │ │ ├── TrioPlugin.py │ │ ├── UpxPlugin.py │ │ ├── __init__.py │ │ ├── standard.nuitka-package.config.yml │ │ ├── stdlib2.nuitka-package.config.yml │ │ └── stdlib3.nuitka-package.config.yml │ ├── reports/ │ │ ├── CompilationReportReader.py │ │ ├── LicenseReport.rst.j2 │ │ ├── Reports.py │ │ └── __init__.py │ ├── specs/ │ │ ├── BuiltinBytesOperationSpecs.py │ │ ├── BuiltinDictOperationSpecs.py │ │ ├── BuiltinListOperationSpecs.py │ │ ├── BuiltinParameterSpecs.py │ │ ├── BuiltinStrOperationSpecs.py │ │ ├── BuiltinTypeOperationSpecs.py │ │ ├── BuiltinUnicodeOperationSpecs.py │ │ ├── HardImportSpecs.py │ │ ├── ParameterSpecs.py │ │ └── __init__.py │ ├── tools/ │ │ ├── Basics.py │ │ ├── __init__.py │ │ ├── commercial/ │ │ │ └── __init__.py │ │ ├── data_composer/ │ │ │ ├── DataComposer.py │ │ │ ├── __init__.py │ │ │ └── __main__.py │ │ ├── environments/ │ │ │ ├── CreateEnvironment.py │ │ │ ├── Virtualenv.py │ │ │ └── __init__.py │ │ ├── general/ │ │ │ ├── __init__.py │ │ │ ├── dll_report/ │ │ │ │ ├── __init__.py │ │ │ │ └── __main__.py │ │ │ └── find_module/ │ │ │ ├── FindModuleCode.py │ │ │ └── __init__.py │ │ ├── onefile_compressor/ │ │ │ ├── OnefileCompressor.py │ │ │ ├── __init__.py │ │ │ └── __main__.py │ │ ├── podman/ │ │ │ ├── Podman.py │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── containers/ │ │ │ ├── CI.containerfile │ │ │ └── Python-Minor-Versions.containerfile │ │ ├── profiler/ │ │ │ ├── __init__.py │ │ │ └── __main__.py │ │ ├── quality/ │ │ │ ├── Git.py │ │ │ ├── ScanSources.py │ │ │ ├── __init__.py │ │ │ ├── apidoc/ │ │ │ │ ├── __init__.py │ │ │ │ └── __main__.py │ │ │ ├── auto_format/ │ │ │ │ ├── AutoFormat.py │ │ │ │ ├── YamlFormatter.py │ │ │ │ ├── __init__.py │ │ │ │ └── __main__.py │ │ │ ├── codespell/ │ │ │ │ ├── __init__.py │ │ │ │ └── __main__.py │ │ │ ├── pylint/ │ │ │ │ ├── PyLint.py │ │ │ │ ├── __init__.py │ │ │ │ └── __main__.py │ │ │ ├── restlint/ │ │ │ │ ├── __init__.py │ │ │ │ └── __main__.py │ │ │ └── yamllint/ │ │ │ ├── YamlChecker.py │ │ │ ├── __init__.py │ │ │ └── __main__.py │ │ ├── release/ │ │ │ ├── Debian.py │ │ │ ├── Documentation.py │ │ │ ├── Release.py │ │ │ ├── __init__.py │ │ │ ├── bump/ │ │ │ │ ├── __init__.py │ │ │ │ └── __main__.py │ │ │ ├── debian/ │ │ │ │ ├── __init__.py │ │ │ │ └── __main__.py │ │ │ ├── debian_mentors/ │ │ │ │ ├── __init__.py │ │ │ │ └── __main__.py │ │ │ ├── osc_check/ │ │ │ │ ├── __init__.py │ │ │ │ └── __main__.py │ │ │ ├── osc_upload/ │ │ │ │ ├── __init__.py │ │ │ │ └── __main__.py │ │ │ ├── pypi/ │ │ │ │ ├── __init__.py │ │ │ │ └── __main__.py │ │ │ ├── rpm/ │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── nuitka.spec │ │ │ └── sync_doc/ │ │ │ ├── __init__.py │ │ │ └── __main__.py │ │ ├── scanning/ │ │ │ ├── DisplayPackageDLLs.py │ │ │ ├── DisplayPackageData.py │ │ │ └── __init__.py │ │ ├── specialize/ │ │ │ ├── CTypeDescriptions.py │ │ │ ├── Common.py │ │ │ ├── SpecializeC.py │ │ │ ├── SpecializePython.py │ │ │ ├── __init__.py │ │ │ └── templates_python/ │ │ │ ├── AttributeNodeFixed.py.j2 │ │ │ ├── BuiltinOperationNodeBases.py.j2 │ │ │ ├── ChildrenHavingMixin.py.j2 │ │ │ ├── HardImportCallNode.py.j2 │ │ │ └── HardImportReferenceNode.py.j2 │ │ ├── testing/ │ │ │ ├── Common.py │ │ │ ├── Constructs.py │ │ │ ├── OutputComparison.py │ │ │ ├── Pythons.py │ │ │ ├── RuntimeTracing.py │ │ │ ├── SearchModes.py │ │ │ ├── Valgrind.py │ │ │ ├── __init__.py │ │ │ ├── check_reference_counts/ │ │ │ │ ├── __init__.py │ │ │ │ └── __main__.py │ │ │ ├── compare_with_cpython/ │ │ │ │ ├── __init__.py │ │ │ │ └── __main__.py │ │ │ ├── find_sxs_modules/ │ │ │ │ ├── __init__.py │ │ │ │ └── __main__.py │ │ │ ├── measure_construct_performance/ │ │ │ │ ├── __init__.py │ │ │ │ └── __main__.py │ │ │ └── run_nuitka_tests/ │ │ │ ├── __init__.py │ │ │ └── __main__.py │ │ └── watch/ │ │ ├── GitHub.py │ │ ├── __init__.py │ │ └── __main__.py │ ├── tree/ │ │ ├── Building.py │ │ ├── ComplexCallHelperFunctions.py │ │ ├── Extractions.py │ │ ├── InternalModule.py │ │ ├── Operations.py │ │ ├── ReformulationAssertStatements.py │ │ ├── ReformulationAssignmentStatements.py │ │ ├── ReformulationBooleanExpressions.py │ │ ├── ReformulationCallExpressions.py │ │ ├── ReformulationClasses.py │ │ ├── ReformulationClasses3.py │ │ ├── ReformulationComparisonExpressions.py │ │ ├── ReformulationContractionExpressions.py │ │ ├── ReformulationDictionaryCreation.py │ │ ├── ReformulationExecStatements.py │ │ ├── ReformulationForLoopStatements.py │ │ ├── ReformulationFunctionStatements.py │ │ ├── ReformulationImportStatements.py │ │ ├── ReformulationLambdaExpressions.py │ │ ├── ReformulationMatchStatements.py │ │ ├── ReformulationMultidist.py │ │ ├── ReformulationNamespacePackages.py │ │ ├── ReformulationPrintStatements.py │ │ ├── ReformulationSequenceCreation.py │ │ ├── ReformulationSubscriptExpressions.py │ │ ├── ReformulationTryExceptStatements.py │ │ ├── ReformulationTryFinallyStatements.py │ │ ├── ReformulationWhileLoopStatements.py │ │ ├── ReformulationWithStatements.py │ │ ├── ReformulationYieldExpressions.py │ │ ├── SourceHandling.py │ │ ├── SyntaxErrors.py │ │ ├── TreeHelpers.py │ │ ├── VariableClosure.py │ │ └── __init__.py │ └── utils/ │ ├── AppDirs.py │ ├── CStrings.py │ ├── CommandLineOptions.py │ ├── Distributions.py │ ├── Download.py │ ├── Execution.py │ ├── FileOperations.py │ ├── Hashing.py │ ├── Images.py │ ├── Importing.py │ ├── InstalledPythons.py │ ├── InstanceCounters.py │ ├── Jinja2.py │ ├── Json.py │ ├── MacOSApp.py │ ├── MemoryUsage.py │ ├── ModuleNames.py │ ├── ReExecute.py │ ├── Rest.py │ ├── SharedLibraries.py │ ├── Shebang.py │ ├── Signing.py │ ├── SlotMetaClasses.py │ ├── StaticLibraries.py │ ├── ThreadedExecutor.py │ ├── Timing.py │ ├── Utils.py │ ├── WindowsFileUsage.py │ ├── WindowsResources.py │ ├── Yaml.py │ └── __init__.py ├── pyproject.toml ├── requirements-devel.txt ├── requirements.txt ├── rpm/ │ ├── check-osc-status.py │ ├── make-osc-upload.py │ ├── nuitka-rpmlintrc │ └── nuitka.spec ├── setup.py └── tests/ ├── PyPI-pytest/ │ ├── README.rst │ ├── packages.json │ └── run_all.py ├── README.txt ├── basics/ │ ├── AssertsTest.py │ ├── AssignmentsTest.py │ ├── AssignmentsTest32.py │ ├── BranchingTest.py │ ├── BuiltinOverload.py │ ├── BuiltinSuperTest.py │ ├── BuiltinsTest.py │ ├── ClassMinimalTest.py │ ├── ClassesTest.py │ ├── ClassesTest32.py │ ├── ClassesTest34.py │ ├── ComparisonChainsTest.py │ ├── ConstantsTest.py │ ├── ConstantsTest27.py │ ├── DecoratorsTest.py │ ├── DefaultParametersTest.py │ ├── DoubleDeletionsTest.py │ ├── EmptyModuleTest.py │ ├── ExceptionRaisingTest.py │ ├── ExceptionRaisingTest32.py │ ├── ExceptionRaisingTest33.py │ ├── ExecEvalTest.py │ ├── ExtremeClosureTest.py │ ├── FunctionObjectsTest.py │ ├── FunctionsTest.py │ ├── FunctionsTest32.py │ ├── FunctionsTest_2.py │ ├── FutureTest32.py │ ├── GeneratorExpressionsTest.py │ ├── GeneratorExpressionsTest_37.py │ ├── GlobalStatementTest.py │ ├── HelloWorldTest_2.py │ ├── ImportingTest.py │ ├── InplaceOperationsTest.py │ ├── InspectionTest.py │ ├── InspectionTest_35.py │ ├── InspectionTest_36.py │ ├── LambdasTest.py │ ├── LateClosureAssignmentTest.py │ ├── ListContractionsTest.py │ ├── LoopingTest.py │ ├── MainProgramsTest.py │ ├── ModuleAttributesTest.py │ ├── OperatorsTest.py │ ├── OrderChecksTest.py │ ├── OrderChecksTest27.py │ ├── OverflowFunctionsTest_2.py │ ├── ParameterErrorsTest.py │ ├── ParameterErrorsTest32.py │ ├── PrintFutureTest.py │ ├── PrintingTest_2.py │ ├── README.rst │ ├── RecursionTest.py │ ├── ReferencingTest.py │ ├── ReferencingTest27.py │ ├── ReferencingTest33.py │ ├── ReferencingTest35.py │ ├── ReferencingTest36.py │ ├── ReferencingTest_2.py │ ├── SlotsTest.py │ ├── ThreadedGeneratorsTest.py │ ├── TrickAssignmentsTest32.py │ ├── TrickAssignmentsTest35.py │ ├── TrickAssignmentsTest_2.py │ ├── TryContinueFinallyTest.py │ ├── TryExceptContinueTest.py │ ├── TryExceptFinallyTest.py │ ├── TryExceptFramesTest.py │ ├── TryReturnFinallyTest.py │ ├── TryYieldFinallyTest.py │ ├── UnicodeTest.py │ ├── UnpackingTest35.py │ ├── VarargsTest.py │ ├── WithStatementsTest.py │ ├── YieldFromTest33.py │ ├── run_all.py │ └── run_xml.py ├── benchmarks/ │ ├── binary-trees.py │ ├── comparisons/ │ │ └── GeneratorFunctionVsGeneratorExpression.py │ ├── constructs/ │ │ ├── BuiltinSumWithGenerator.py │ │ ├── BuiltinSumWithList.py │ │ ├── BuiltinSumWithTuple.py │ │ ├── CallCompiledClassCreationPosArgsConstant6.py │ │ ├── CallCompiledFunctionKwArgsConstant.py │ │ ├── CallCompiledFunctionKwArgsVariable.py │ │ ├── CallCompiledFunctionKwArgsVariableStarDict.py │ │ ├── CallCompiledFunctionPosArgsConstant.py │ │ ├── CallCompiledFunctionPosArgsDefaults.py │ │ ├── CallCompiledFunctionPosArgsMutable.py │ │ ├── CallCompiledFunctionPosArgsVariable.py │ │ ├── CallCompiledFunctionPosKwArgsVariable.py │ │ ├── CallCompiledInstanceMethodNoArgs_27.py │ │ ├── CallCompiledInstanceMethodPosArgsConstant1_27.py │ │ ├── CallCompiledInstanceMethodPosArgsConstant6_27.py │ │ ├── CallCompiledInstanceMethodPosArgsDefaults_27.py │ │ ├── CallCompiledInstanceMethodPosArgsVariable_27.py │ │ ├── CallCompiledObjectMethodNoArgs.py │ │ ├── CallCompiledObjectMethodPosArgsConstant1.py │ │ ├── CallCompiledObjectMethodPosArgsConstant6.py │ │ ├── CallCompiledObjectMethodPosArgsDefaults.py │ │ ├── CallCompiledObjectMethodPosArgsVariable.py │ │ ├── CallLambdaExpressionDirectly.py │ │ ├── CallUncompiledFunctionComplexArgs.py │ │ ├── CallUncompiledFunctionPosArgs.py │ │ ├── ClosureVariableAccess.py │ │ ├── DictCreation.py │ │ ├── FunctionCreationClosure.py │ │ ├── FunctionCreationGeneratorClosure.py │ │ ├── FunctionCreationGeneratorLocal.py │ │ ├── FunctionCreationLocal.py │ │ ├── FunctionEmpty.py │ │ ├── FunctionRaise.py │ │ ├── GeneratorExit.py │ │ ├── GeneratorExpressionCreation.py │ │ ├── GeneratorExpressionExit.py │ │ ├── GeneratorExpressionUsage.py │ │ ├── GeneratorUsage.py │ │ ├── GlobalVariableAccess.py │ │ ├── InplaceOperationFloatAdd.py │ │ ├── InplaceOperationInstanceStringAdd.py │ │ ├── InplaceOperationIntegerAdd.py │ │ ├── InplaceOperationIntegerMul.py │ │ ├── InplaceOperationListAdd.py │ │ ├── InplaceOperationLongAdd_27.py │ │ ├── InplaceOperationStringAdd.py │ │ ├── InplaceOperationTupleAdd.py │ │ ├── InplaceOperationUnicodeAdd_27.py │ │ ├── ListContraction.py │ │ ├── ListCreation.py │ │ ├── ListCreationConstant.py │ │ ├── LocalVariableAccess.py │ │ ├── LocalVariableDeletion.py │ │ ├── LoopSmallRange.py │ │ ├── LoopSmallXrange.py │ │ ├── NumpyArrayConstruction.py │ │ ├── OperationAttributeLookup.py │ │ ├── OperationFloatAdd.py │ │ ├── OperationIntegerAdd.py │ │ ├── OperationIntegerMul.py │ │ ├── OperationIntegerPower.py │ │ ├── OperationListIntegerIndexLookup.py │ │ ├── RichComparisonConditionStrings.py │ │ ├── RichComparisonStrings.py │ │ ├── SetCreation.py │ │ ├── TupleCreation.py │ │ └── UnpackIterator.py │ ├── mandelbrot.py │ ├── pybench/ │ │ ├── Arithmetic.py │ │ ├── Calls.py │ │ ├── CommandLine.py │ │ ├── Constructs.py │ │ ├── Dict.py │ │ ├── Exceptions.py │ │ ├── Imports.py │ │ ├── Instances.py │ │ ├── LICENSE │ │ ├── Lists.py │ │ ├── Lookups.py │ │ ├── NewInstances.py │ │ ├── Numbers.py │ │ ├── README │ │ ├── Setup.py │ │ ├── Strings.py │ │ ├── Tuples.py │ │ ├── Unicode.py │ │ ├── With.py │ │ ├── clockres.py │ │ ├── package/ │ │ │ ├── __init__.py │ │ │ └── submodule.py │ │ ├── pybench.py │ │ └── systimes.py │ ├── pystone.py │ ├── pystone3.py │ └── recipe-577834-1.py ├── codegen-analysis/ │ └── README.txt ├── distutils/ │ ├── .gitignore │ ├── example_1_pyproject/ │ │ ├── data_files/ │ │ │ └── some_datafile.txt │ │ ├── example1_package/ │ │ │ ├── __init__.py │ │ │ └── data/ │ │ │ └── package_data.txt │ │ ├── pyproject.cpython.toml │ │ ├── pyproject.nuitka.toml │ │ ├── runner │ │ └── setup.cfg │ ├── example_1_setuptools/ │ │ ├── data_files/ │ │ │ └── some_datafile.txt │ │ ├── example1_package/ │ │ │ ├── __init__.py │ │ │ └── data/ │ │ │ └── package_data.txt │ │ ├── runner │ │ └── setup.py │ ├── example_2_pyproject/ │ │ ├── pyproject.cpython.toml │ │ ├── pyproject.nuitka.toml │ │ └── src/ │ │ └── main.py │ ├── example_2_setuptools/ │ │ ├── package1/ │ │ │ ├── __init__.py │ │ │ ├── main.py │ │ │ ├── module1.py │ │ │ ├── module2.py │ │ │ ├── subpackage1/ │ │ │ │ ├── __init__.py │ │ │ │ ├── data.txt │ │ │ │ └── submodule11.py │ │ │ └── subpackage2/ │ │ │ ├── __init__.py │ │ │ └── submodule21.py │ │ └── setup.py │ ├── example_3_pyproject/ │ │ ├── pyproject.cpython.toml │ │ ├── pyproject.nuitka.toml │ │ └── src/ │ │ ├── runner │ │ └── some_namespace/ │ │ └── some_package/ │ │ ├── __init__.py │ │ └── sub_package/ │ │ └── __init__.py │ ├── example_3_setuptools32/ │ │ ├── outer/ │ │ │ └── inner/ │ │ │ ├── __init__.py │ │ │ └── main.py │ │ └── setup.py │ ├── example_4_setuptools_cfg/ │ │ ├── data_files/ │ │ │ └── some_datafile.txt │ │ ├── example1_package/ │ │ │ ├── __init__.py │ │ │ └── data/ │ │ │ └── package_data.txt │ │ ├── runner │ │ ├── setup.cfg │ │ └── setup.py │ ├── example_5_versioneer_setuptools32/ │ │ ├── runner │ │ ├── setup.cfg │ │ ├── setup.py │ │ ├── some_package/ │ │ │ ├── __init__.py │ │ │ └── _version.py │ │ └── versioneer.py │ ├── example_multiple_packages/ │ │ ├── main_module.py │ │ ├── other_package/ │ │ │ └── __init__.py │ │ ├── other_package_a/ │ │ │ └── __init__.py │ │ ├── runner │ │ ├── setup.py │ │ ├── some_package/ │ │ │ └── __init__.py │ │ ├── some_package_a/ │ │ │ └── __init__.py │ │ └── some_package_b/ │ │ └── __init__.py │ ├── example_nested_namespaces32/ │ │ ├── a/ │ │ │ └── b/ │ │ │ └── pkg/ │ │ │ └── __init__.py │ │ └── setup.py │ ├── example_package_and_module/ │ │ ├── runner │ │ ├── setup.py │ │ ├── some_module.py │ │ └── some_package/ │ │ └── __init__.py │ ├── example_pymodules_only/ │ │ ├── py_modules_only.py │ │ ├── runner │ │ └── setup.py │ └── run_all.py ├── generated/ │ ├── BigConstantsTest.py.j2 │ ├── BytesMethodsTest.py.j2 │ ├── BytesMethodsTest32.py.j2 │ ├── DictMethodsTest.py.j2 │ ├── InplaceTest.py.j2 │ ├── OperationsTest.py.j2 │ ├── StrMethodsTest.py.j2 │ └── run_all.py ├── library/ │ ├── check_yaml_anti_bloat_modules.py │ ├── compile_extension_modules.py │ └── compile_python_modules.py ├── onefile/ │ ├── HelloWorldTest.py │ ├── KeyboardInterruptTest.py │ └── run_all.py ├── optimizations/ │ ├── ArgumentTypes.py │ ├── AttributesTest.py │ ├── CallsTest.py │ ├── ConditionsTest.py │ ├── DecodingOperationsTest.py │ ├── FormatStringsTest36.py │ ├── HardImportsTest.py │ ├── HardImportsTest_2.py │ ├── Iterations.py │ ├── LenTest.py │ ├── MatchingTest310.py │ ├── OperationsTest.py │ ├── SubscriptsTest.py │ └── run_all.py ├── packages/ │ ├── package_data_files_embedding/ │ │ ├── PackageDataFilesEmbedding.py │ │ ├── __init__.py │ │ ├── lala.txt │ │ └── sub_dir/ │ │ └── lulu.txt │ ├── package_import_success_after_failure/ │ │ ├── PackageImportSuccessAfterFailure.py │ │ └── variable_package/ │ │ ├── SomeModule.py │ │ └── __init__.py │ ├── run_all.py │ ├── sub_package/ │ │ └── kitty/ │ │ ├── __init__.py │ │ ├── bigkitty.py │ │ ├── smallkitty.py │ │ └── speak/ │ │ ├── __init__.py │ │ ├── hello.py │ │ ├── miau.py │ │ └── purr.py │ └── top_level_attributes_3/ │ └── some_package/ │ ├── __init__.py │ └── some_module.py ├── pgo/ │ ├── run_all.py │ └── unused_module/ │ ├── ImportedButMaybeNotUsed.py │ └── UnusedModuleMain.py ├── plugins/ │ ├── README.rst │ ├── code_signing/ │ │ └── CodeSigningMain.py │ ├── data_files/ │ │ ├── DataFilesMain.py │ │ ├── data_files_package/ │ │ │ ├── __init__.py │ │ │ ├── lala.txt │ │ │ └── sub_dir/ │ │ │ └── lulu.txt │ │ └── test_case.nuitka-package.config.yml │ ├── parameters/ │ │ ├── ParametersMain.py │ │ └── parameter-using-plugin.py │ └── run_all.py ├── programs/ │ ├── absolute_import/ │ │ ├── AbsoluteImportMain.py │ │ └── foobar/ │ │ ├── __init__.py │ │ ├── foobar.py │ │ ├── local.py │ │ └── util.py │ ├── case_imports1/ │ │ ├── CasedImportingMain.py │ │ ├── path1/ │ │ │ ├── Some_Module.py │ │ │ └── Some_Package/ │ │ │ └── __init__.py │ │ └── path2/ │ │ ├── some_module.py │ │ └── some_package/ │ │ └── __init__.py │ ├── case_imports2/ │ │ ├── CasedImportingMain.py │ │ ├── path1/ │ │ │ ├── some_module.py │ │ │ └── some_package/ │ │ │ └── __init__.py │ │ └── path2/ │ │ ├── Some_Module.py │ │ └── Some_Package/ │ │ └── __init__.py │ ├── case_imports3/ │ │ ├── CasedImportingMain.py │ │ ├── path1/ │ │ │ ├── Some_Module.py │ │ │ └── Some_Package/ │ │ │ └── __init__.py │ │ └── path2/ │ │ ├── Some_Module.py │ │ └── Some_Package/ │ │ └── __init__.py │ ├── cyclic_imports/ │ │ ├── CyclicImportsMain.py │ │ └── cyclic_importing_package/ │ │ ├── Child1.py │ │ ├── Child2.py │ │ └── __init__.py │ ├── dash_import/ │ │ ├── DashImportMain.py │ │ ├── dash-module.py │ │ └── plus+module.py │ ├── dash_main/ │ │ └── Dash-Main.py │ ├── deep/ │ │ ├── DeepProgramMain.py │ │ └── some_package/ │ │ ├── DeepBrother.py │ │ ├── DeepChild.py │ │ ├── __init__.py │ │ └── deep_package/ │ │ ├── DeepDeepChild.py │ │ └── __init__.py │ ├── dunderinit_imports/ │ │ ├── DunderInitImportsMain.py │ │ └── package/ │ │ ├── SubModule.py │ │ └── __init__.py │ ├── import_variants/ │ │ ├── ImportVariationsMain.py │ │ └── some_package/ │ │ ├── Child1.py │ │ ├── Child2.py │ │ ├── Child3.py │ │ └── __init__.py │ ├── main_raises/ │ │ ├── ErrorMain.py │ │ └── ErrorRaising.py │ ├── main_raises2/ │ │ ├── ErrorInFunctionMain.py │ │ └── ErrorRaising.py │ ├── module_attributes/ │ │ ├── ModuleAttributesMain.py │ │ └── package_level1/ │ │ ├── Nearby1.py │ │ ├── __init__.py │ │ └── package_level2/ │ │ ├── Nearby2.py │ │ ├── __init__.py │ │ └── package_level3/ │ │ ├── Nearby3.py │ │ └── __init__.py │ ├── module_exits/ │ │ ├── ErrorExitingModule.py │ │ └── Main.py │ ├── module_object_replacing/ │ │ ├── ModuleObjectReplacingMain.py │ │ └── SelfReplacingModule.py │ ├── multiprocessing_using/ │ │ ├── MultiprocessingUsingMain.py │ │ └── foo/ │ │ ├── __init__.py │ │ ├── __main__.py │ │ └── entry.py │ ├── named_imports/ │ │ ├── NamedImportsMain.py │ │ └── some_package/ │ │ ├── SomeModule.py │ │ ├── __init__.py │ │ └── sub_package/ │ │ └── SomeModule.py │ ├── package_code/ │ │ ├── PackageInitCodeMain.py │ │ └── some_package/ │ │ ├── SomeModule.py │ │ └── __init__.py │ ├── package_contains_main/ │ │ ├── PackageContainsMain.py │ │ ├── __init__.py │ │ └── local.py │ ├── package_init_import/ │ │ ├── PackageInitImportMain.py │ │ └── some_package/ │ │ ├── PackageLocal.py │ │ └── __init__.py │ ├── package_init_issue/ │ │ ├── PackageInitIssueMain.py │ │ └── some_package/ │ │ ├── __init__.py │ │ └── child_package/ │ │ ├── SomeModule.py │ │ └── __init__.py │ ├── package_missing_init/ │ │ ├── PackageMissingInitMain.py │ │ └── some_package/ │ │ ├── some_module.py │ │ └── sub_package/ │ │ └── some_sub_module.py │ ├── package_module_collision/ │ │ ├── PackageAndModuleNamedSameMain.py │ │ ├── Something/ │ │ │ └── __init__.py │ │ └── something.py │ ├── package_overload/ │ │ ├── Main.py │ │ └── foo/ │ │ ├── __init__.py │ │ ├── bar.py │ │ └── bar2.py │ ├── package_prevents_submodule/ │ │ ├── PackagePreventsSubmoduleMain.py │ │ └── some_package/ │ │ ├── __init__.py │ │ └── some_module.py │ ├── package_program/ │ │ └── PackageAsMain/ │ │ ├── __init__.py │ │ └── __main__.py │ ├── pkgutil_itermodules/ │ │ ├── PkgUtilIterModulesMain.py │ │ └── some_package/ │ │ ├── __init__.py │ │ ├── sub_package1/ │ │ │ ├── SomeModuleC.py │ │ │ ├── SomeModuleD.py │ │ │ └── __init__.py │ │ └── sub_package2/ │ │ ├── SomeModuleA.py │ │ ├── SomeModuleB.py │ │ └── __init__.py │ ├── pkgutil_usage/ │ │ ├── PkgUtilUsageMain.py │ │ └── package/ │ │ ├── DATA_FILE.txt │ │ ├── DATA_FILE2.txt │ │ ├── DATA_FILE3.txt │ │ └── __init__.py │ ├── plugin_import/ │ │ ├── PluginImportMain.py │ │ └── some_package/ │ │ ├── __init__.py │ │ ├── data/ │ │ │ └── .gitignore │ │ └── some_module.py │ ├── reimport_main_dynamic/ │ │ └── ImportItselfDynamicMain.py │ ├── reimport_main_static/ │ │ └── ImportItselfStaticMain.py │ ├── relative_import/ │ │ ├── RelativeImportMain.py │ │ └── dircache.py │ ├── resource_reader37/ │ │ ├── ResourceReaderMain.py │ │ └── some_package/ │ │ ├── DATA_FILE.txt │ │ └── __init__.py │ ├── run_all.py │ ├── stdlib_overload/ │ │ ├── StdlibOverloadMain.py │ │ ├── pyexpat.py │ │ └── some_package/ │ │ ├── __init__.py │ │ ├── normal_importing.py │ │ ├── pyexpat.py │ │ └── star_importing.py │ ├── syntax_errors/ │ │ ├── IndentationErroring.py │ │ ├── SyntaxErroring.py │ │ └── SyntaxErrorsMain.py │ ├── unicode_bom/ │ │ ├── UnicodeBomMain.py │ │ └── unicode_bom.py │ └── with space/ │ └── Space Main.py ├── reflected/ │ └── compile_itself.py ├── run-tests ├── standalone/ │ ├── BrotliUsing.py │ ├── CtypesUsing.py │ ├── DateutilsUsing.py │ ├── FlaskUsing.py │ ├── GiUsing.py │ ├── GlfwUsing.py │ ├── GtkUsing.py │ ├── HexEncodingTest_2.py │ ├── IdnaUsing.py │ ├── LxmlUsing.py │ ├── MatplotlibUsing.py │ ├── MetadataPackagesUsing.py │ ├── NumpyUsing.py │ ├── OpenGLUsing.py │ ├── PandasUsing.py │ ├── PasslibUsing.py │ ├── PendulumUsing.py │ ├── PkgResourcesRequiresUsing.py │ ├── PmwUsing.py │ ├── PyQt5Plugins.py │ ├── PyQt5SSLSupport.py │ ├── PyQt5Using.py │ ├── PyQt6Plugins.py │ ├── PyQt6Using.py │ ├── PySide2Using.py │ ├── PySide6Plugins.py │ ├── PySide6Using.py │ ├── RsaUsing.py │ ├── SetuptoolsUsing.py │ ├── ShlibUsing.py │ ├── SocketUsing.py │ ├── TkInterUsing.py │ ├── Urllib3Using.py │ ├── Win32ComUsing.py │ ├── run_all.py │ └── zip_importer/ │ └── ZipImporterMain.py ├── syntax/ │ ├── AsyncgenReturn36.py │ ├── AwaitInModule36.py │ ├── BreakWithoutLoop.py │ ├── ClassReturn.py │ ├── ClosureDel_2.py │ ├── ContinueWithoutLoop.py │ ├── DuplicateArgument.py │ ├── ExecWithNesting_2.py │ ├── FutureBraces.py │ ├── FutureUnknown.py │ ├── GeneratorExpressions38.py │ ├── GeneratorReturn_2.py │ ├── GlobalForParameter.py │ ├── Importing32.py │ ├── IndentationError.py │ ├── LateFutureImport.py │ ├── MisplacedFutureImport.py │ ├── ModuleReturn.py │ ├── NonAsciiWithoutEncoding_2.py │ ├── NonlocalForParameter32.py │ ├── NonlocalNotFound32.py │ ├── StarImportExtra.py │ ├── SyntaxError.py │ ├── TryExceptAllNotLast.py │ ├── TryFinallyContinue_37.py │ ├── UnpackNoTuple.py │ ├── UnpackTwoStars32.py │ ├── YieldFromInModule.py │ ├── YieldInAsync35.py │ ├── YieldInGenexp38.py │ ├── YieldInModule.py │ └── run_all.py ├── test-runners/ │ ├── run_all.py │ └── subject/ │ └── package/ │ ├── Something.py │ ├── __init__.py │ ├── sub_package1/ │ │ ├── SubSomething1.py │ │ ├── __init__.py │ │ └── tests/ │ │ ├── __init__.py │ │ └── test_subsomething1.py │ ├── sub_package2/ │ │ ├── SubSomething2.py │ │ ├── __init__.py │ │ └── tests/ │ │ ├── __init__.py │ │ └── test_subsomething2.py │ └── tests/ │ ├── __init__.py │ └── test_something.py └── type_inference/ ├── Test1.py ├── Test2.py ├── Test3.py └── Test4.py