├── .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 ├── Logo │ ├── Nuitka-Logo-Horizontal.svg │ ├── Nuitka-Logo-Symbol.svg │ ├── Nuitka-Logo-Vertical.svg │ └── inkscape │ │ ├── Nuitka-Logo-Horizontal.svg │ │ ├── Nuitka-Logo-Symbol.svg │ │ └── Nuitka-Logo-Vertical.svg ├── custom.css ├── images │ ├── Nuitka-Logo-Horizontal.png │ ├── Nuitka-Logo-Symbol.png │ └── Nuitka-Logo-Vertical.png ├── 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.py │ │ ├── DillPlugin │ │ ├── DillPlugin.c │ │ └── dill-postLoad.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 │ └── for_import.zip ├── 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 /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * -text 2 | -------------------------------------------------------------------------------- /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://nuitka.net/pages/donations.html'] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/.github/workflows/testing.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/.gitmodules -------------------------------------------------------------------------------- /.sourcery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/.sourcery.yaml -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/CODE_OF_CONDUCT.rst -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/Changelog.rst -------------------------------------------------------------------------------- /Developer_Manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/Developer_Manual.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Standard-Plugins-Documentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/Standard-Plugins-Documentation.rst -------------------------------------------------------------------------------- /UserPlugin-Creation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/UserPlugin-Creation.rst -------------------------------------------------------------------------------- /Using-Plugin-Options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/Using-Plugin-Options.rst -------------------------------------------------------------------------------- /bin/autoformat-nuitka-source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/bin/autoformat-nuitka-source -------------------------------------------------------------------------------- /bin/check-nuitka-with-codespell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/bin/check-nuitka-with-codespell -------------------------------------------------------------------------------- /bin/check-nuitka-with-pylint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/bin/check-nuitka-with-pylint -------------------------------------------------------------------------------- /bin/check-nuitka-with-restlint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/bin/check-nuitka-with-restlint -------------------------------------------------------------------------------- /bin/check-nuitka-with-yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/bin/check-nuitka-with-yamllint -------------------------------------------------------------------------------- /bin/check-reference-counts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/bin/check-reference-counts -------------------------------------------------------------------------------- /bin/compare_with_cpython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/bin/compare_with_cpython -------------------------------------------------------------------------------- /bin/compare_with_xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/bin/compare_with_xml -------------------------------------------------------------------------------- /bin/find_sxs_modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/bin/find_sxs_modules -------------------------------------------------------------------------------- /bin/generate-specialized-c-code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/bin/generate-specialized-c-code -------------------------------------------------------------------------------- /bin/generate-specialized-python-code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/bin/generate-specialized-python-code -------------------------------------------------------------------------------- /bin/measure-construct-performance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/bin/measure-construct-performance -------------------------------------------------------------------------------- /bin/nuitka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/bin/nuitka -------------------------------------------------------------------------------- /bin/nuitka-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/bin/nuitka-run -------------------------------------------------------------------------------- /bin/nuitka-watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/bin/nuitka-watch -------------------------------------------------------------------------------- /bin/nuitka3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/bin/nuitka3 -------------------------------------------------------------------------------- /bin/nuitka3-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/bin/nuitka3-run -------------------------------------------------------------------------------- /bin/run-inside-nuitka-container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/bin/run-inside-nuitka-container -------------------------------------------------------------------------------- /debian/README.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/debian/README.source -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/nuitka.docs: -------------------------------------------------------------------------------- 1 | changelog 2 | -------------------------------------------------------------------------------- /debian/nuitka.manpages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/debian/nuitka.manpages -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/source/lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/debian/source/lintian-overrides -------------------------------------------------------------------------------- /debian/upstream-signing-key.pgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/debian/upstream-signing-key.pgp -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/debian/watch -------------------------------------------------------------------------------- /doc/Doxyfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/doc/Doxyfile.template -------------------------------------------------------------------------------- /doc/Logo/Nuitka-Logo-Horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/doc/Logo/Nuitka-Logo-Horizontal.svg -------------------------------------------------------------------------------- /doc/Logo/Nuitka-Logo-Symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/doc/Logo/Nuitka-Logo-Symbol.svg -------------------------------------------------------------------------------- /doc/Logo/Nuitka-Logo-Vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/doc/Logo/Nuitka-Logo-Vertical.svg -------------------------------------------------------------------------------- /doc/Logo/inkscape/Nuitka-Logo-Horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/doc/Logo/inkscape/Nuitka-Logo-Horizontal.svg -------------------------------------------------------------------------------- /doc/Logo/inkscape/Nuitka-Logo-Symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/doc/Logo/inkscape/Nuitka-Logo-Symbol.svg -------------------------------------------------------------------------------- /doc/Logo/inkscape/Nuitka-Logo-Vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/doc/Logo/inkscape/Nuitka-Logo-Vertical.svg -------------------------------------------------------------------------------- /doc/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/doc/custom.css -------------------------------------------------------------------------------- /doc/images/Nuitka-Logo-Horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/doc/images/Nuitka-Logo-Horizontal.png -------------------------------------------------------------------------------- /doc/images/Nuitka-Logo-Symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/doc/images/Nuitka-Logo-Symbol.png -------------------------------------------------------------------------------- /doc/images/Nuitka-Logo-Vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/doc/images/Nuitka-Logo-Vertical.png -------------------------------------------------------------------------------- /doc/nuitka-man-include.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/doc/nuitka-man-include.txt -------------------------------------------------------------------------------- /doc/nuitka-run.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/doc/nuitka-run.1 -------------------------------------------------------------------------------- /doc/nuitka.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/doc/nuitka.1 -------------------------------------------------------------------------------- /doc/uml/standalone-overview.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/doc/uml/standalone-overview.plantuml -------------------------------------------------------------------------------- /doc/uml/use-cases.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/doc/uml/use-cases.plantuml -------------------------------------------------------------------------------- /lib/hints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/lib/hints.py -------------------------------------------------------------------------------- /misc/codespell-ignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/misc/codespell-ignore.txt -------------------------------------------------------------------------------- /misc/create-pbuilder-image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/misc/create-pbuilder-image.py -------------------------------------------------------------------------------- /misc/dump-config-options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/misc/dump-config-options.py -------------------------------------------------------------------------------- /misc/install-git-hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/misc/install-git-hooks.py -------------------------------------------------------------------------------- /misc/make-apidoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/misc/make-apidoc.py -------------------------------------------------------------------------------- /misc/make-coverage-rendering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/misc/make-coverage-rendering.py -------------------------------------------------------------------------------- /misc/make-deb-mentors-release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/misc/make-deb-mentors-release.py -------------------------------------------------------------------------------- /misc/make-deb-release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/misc/make-deb-release.py -------------------------------------------------------------------------------- /misc/make-pypi-upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/misc/make-pypi-upload.py -------------------------------------------------------------------------------- /misc/make-release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/misc/make-release.py -------------------------------------------------------------------------------- /misc/make-upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/misc/make-upload.py -------------------------------------------------------------------------------- /misc/make-version-bump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/misc/make-version-bump.py -------------------------------------------------------------------------------- /misc/nuitka-package-config-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/misc/nuitka-package-config-schema.json -------------------------------------------------------------------------------- /misc/nuitka-run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/misc/nuitka-run.bat -------------------------------------------------------------------------------- /misc/nuitka.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/misc/nuitka.bat -------------------------------------------------------------------------------- /misc/run-valgrind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/misc/run-valgrind.py -------------------------------------------------------------------------------- /misc/update-doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/misc/update-doc.py -------------------------------------------------------------------------------- /nuitka/Builtins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/Builtins.py -------------------------------------------------------------------------------- /nuitka/BytecodeCaching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/BytecodeCaching.py -------------------------------------------------------------------------------- /nuitka/Bytecodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/Bytecodes.py -------------------------------------------------------------------------------- /nuitka/CacheCleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/CacheCleanup.py -------------------------------------------------------------------------------- /nuitka/Constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/Constants.py -------------------------------------------------------------------------------- /nuitka/Errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/Errors.py -------------------------------------------------------------------------------- /nuitka/HardImportRegistry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/HardImportRegistry.py -------------------------------------------------------------------------------- /nuitka/MainControl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/MainControl.py -------------------------------------------------------------------------------- /nuitka/ModuleRegistry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/ModuleRegistry.py -------------------------------------------------------------------------------- /nuitka/OptionParsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/OptionParsing.py -------------------------------------------------------------------------------- /nuitka/Options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/Options.py -------------------------------------------------------------------------------- /nuitka/OutputDirectories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/OutputDirectories.py -------------------------------------------------------------------------------- /nuitka/PostProcessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/PostProcessing.py -------------------------------------------------------------------------------- /nuitka/Progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/Progress.py -------------------------------------------------------------------------------- /nuitka/PythonFlavors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/PythonFlavors.py -------------------------------------------------------------------------------- /nuitka/PythonOperators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/PythonOperators.py -------------------------------------------------------------------------------- /nuitka/PythonVersions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/PythonVersions.py -------------------------------------------------------------------------------- /nuitka/Serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/Serialization.py -------------------------------------------------------------------------------- /nuitka/SourceCodeReferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/SourceCodeReferences.py -------------------------------------------------------------------------------- /nuitka/Tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/Tracing.py -------------------------------------------------------------------------------- /nuitka/TreeXML.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/TreeXML.py -------------------------------------------------------------------------------- /nuitka/Variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/Variables.py -------------------------------------------------------------------------------- /nuitka/Version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/Version.py -------------------------------------------------------------------------------- /nuitka/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/__init__.py -------------------------------------------------------------------------------- /nuitka/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/__main__.py -------------------------------------------------------------------------------- /nuitka/__past__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/__past__.py -------------------------------------------------------------------------------- /nuitka/build/Backend.scons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/Backend.scons -------------------------------------------------------------------------------- /nuitka/build/CCompilerVersion.scons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/CCompilerVersion.scons -------------------------------------------------------------------------------- /nuitka/build/DataComposerInterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/DataComposerInterface.py -------------------------------------------------------------------------------- /nuitka/build/Onefile.scons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/Onefile.scons -------------------------------------------------------------------------------- /nuitka/build/SconsCaching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/SconsCaching.py -------------------------------------------------------------------------------- /nuitka/build/SconsCompilerSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/SconsCompilerSettings.py -------------------------------------------------------------------------------- /nuitka/build/SconsHacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/SconsHacks.py -------------------------------------------------------------------------------- /nuitka/build/SconsInterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/SconsInterface.py -------------------------------------------------------------------------------- /nuitka/build/SconsProgress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/SconsProgress.py -------------------------------------------------------------------------------- /nuitka/build/SconsSpawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/SconsSpawn.py -------------------------------------------------------------------------------- /nuitka/build/SconsUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/SconsUtils.py -------------------------------------------------------------------------------- /nuitka/build/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/__init__.py -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/allocator.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/builtins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/builtins.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/calling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/calling.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/checkers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/checkers.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/checksum_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/checksum_tools.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/compiled_cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/compiled_cell.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/compiled_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/compiled_frame.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/compiled_method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/compiled_method.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/constants.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/constants_blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/constants_blob.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/exceptions.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/freelists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/freelists.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/hedley.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/hedley.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/helper/boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/helper/boolean.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/helper/bytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/helper/bytes.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/helper/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/helper/complex.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/helper/floats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/helper/floats.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/helper/indexes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/helper/indexes.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/helper/ints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/helper/ints.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/helper/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/helper/lists.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/helper/mappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/helper/mappings.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/helper/raising.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/helper/raising.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/helper/sets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/helper/sets.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/helper/slices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/helper/slices.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/helper/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/helper/strings.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/helper/tuples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/helper/tuples.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/helpers.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/importing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/importing.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/incbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/incbin.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/jit_sources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/jit_sources.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/prelude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/prelude.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/printing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/printing.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/python_pgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/python_pgo.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/safe_string_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/safe_string_ops.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/threading.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/tracing.h -------------------------------------------------------------------------------- /nuitka/build/include/nuitka/unfreezing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/include/nuitka/unfreezing.h -------------------------------------------------------------------------------- /nuitka/build/inline_copy/appdirs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/appdirs/LICENSE.txt -------------------------------------------------------------------------------- /nuitka/build/inline_copy/appdirs/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/appdirs/appdirs.py -------------------------------------------------------------------------------- /nuitka/build/inline_copy/atomicwrites/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/atomicwrites/LICENSE -------------------------------------------------------------------------------- /nuitka/build/inline_copy/bin/scons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/bin/scons.py -------------------------------------------------------------------------------- /nuitka/build/inline_copy/colorama/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/colorama/LICENSE.txt -------------------------------------------------------------------------------- /nuitka/build/inline_copy/glob2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/glob2/LICENSE -------------------------------------------------------------------------------- /nuitka/build/inline_copy/glob2/glob2/impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/glob2/glob2/impl.py -------------------------------------------------------------------------------- /nuitka/build/inline_copy/jinja2/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/jinja2/LICENSE.rst -------------------------------------------------------------------------------- /nuitka/build/inline_copy/jinja2/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/jinja2/README.rst -------------------------------------------------------------------------------- /nuitka/build/inline_copy/jinja2/jinja2/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/jinja2/jinja2/ext.py -------------------------------------------------------------------------------- /nuitka/build/inline_copy/jinja2_35/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/jinja2_35/README.rst -------------------------------------------------------------------------------- /nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Utilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nuitka/build/inline_copy/libbacktrace/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/libbacktrace/LICENSE -------------------------------------------------------------------------------- /nuitka/build/inline_copy/tqdm/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/tqdm/LICENCE -------------------------------------------------------------------------------- /nuitka/build/inline_copy/tqdm/tqdm/_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/tqdm/tqdm/_main.py -------------------------------------------------------------------------------- /nuitka/build/inline_copy/tqdm/tqdm/_tqdm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/tqdm/tqdm/_tqdm.py -------------------------------------------------------------------------------- /nuitka/build/inline_copy/tqdm/tqdm/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/tqdm/tqdm/_utils.py -------------------------------------------------------------------------------- /nuitka/build/inline_copy/tqdm/tqdm/auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/tqdm/tqdm/auto.py -------------------------------------------------------------------------------- /nuitka/build/inline_copy/tqdm/tqdm/dask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/tqdm/tqdm/dask.py -------------------------------------------------------------------------------- /nuitka/build/inline_copy/tqdm/tqdm/std.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/tqdm/tqdm/std.py -------------------------------------------------------------------------------- /nuitka/build/inline_copy/tqdm/tqdm/tk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/tqdm/tqdm/tk.py -------------------------------------------------------------------------------- /nuitka/build/inline_copy/tqdm/tqdm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/tqdm/tqdm/utils.py -------------------------------------------------------------------------------- /nuitka/build/inline_copy/tqdm/tqdm/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/tqdm/tqdm/version.py -------------------------------------------------------------------------------- /nuitka/build/inline_copy/wax_off/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/wax_off/LICENSE -------------------------------------------------------------------------------- /nuitka/build/inline_copy/wax_off/wax_off.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/wax_off/wax_off.py -------------------------------------------------------------------------------- /nuitka/build/inline_copy/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/yaml/LICENSE -------------------------------------------------------------------------------- /nuitka/build/inline_copy/yaml/yaml/cyaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/yaml/yaml/cyaml.py -------------------------------------------------------------------------------- /nuitka/build/inline_copy/yaml/yaml/dumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/yaml/yaml/dumper.py -------------------------------------------------------------------------------- /nuitka/build/inline_copy/yaml/yaml/emitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/yaml/yaml/emitter.py -------------------------------------------------------------------------------- /nuitka/build/inline_copy/yaml/yaml/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/yaml/yaml/error.py -------------------------------------------------------------------------------- /nuitka/build/inline_copy/yaml/yaml/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/yaml/yaml/events.py -------------------------------------------------------------------------------- /nuitka/build/inline_copy/yaml/yaml/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/yaml/yaml/loader.py -------------------------------------------------------------------------------- /nuitka/build/inline_copy/yaml/yaml/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/yaml/yaml/nodes.py -------------------------------------------------------------------------------- /nuitka/build/inline_copy/yaml/yaml/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/yaml/yaml/parser.py -------------------------------------------------------------------------------- /nuitka/build/inline_copy/yaml/yaml/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/yaml/yaml/reader.py -------------------------------------------------------------------------------- /nuitka/build/inline_copy/yaml/yaml/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/yaml/yaml/scanner.py -------------------------------------------------------------------------------- /nuitka/build/inline_copy/yaml/yaml/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/yaml/yaml/tokens.py -------------------------------------------------------------------------------- /nuitka/build/inline_copy/yaml_27/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/yaml_27/LICENSE -------------------------------------------------------------------------------- /nuitka/build/inline_copy/yaml_35/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/yaml_35/LICENSE -------------------------------------------------------------------------------- /nuitka/build/inline_copy/zlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/zlib/LICENSE -------------------------------------------------------------------------------- /nuitka/build/inline_copy/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/zlib/crc32.c -------------------------------------------------------------------------------- /nuitka/build/inline_copy/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/zlib/crc32.h -------------------------------------------------------------------------------- /nuitka/build/inline_copy/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/zlib/zconf.h -------------------------------------------------------------------------------- /nuitka/build/inline_copy/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/zlib/zlib.h -------------------------------------------------------------------------------- /nuitka/build/inline_copy/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/zlib/zutil.h -------------------------------------------------------------------------------- /nuitka/build/inline_copy/zstd/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/zstd/LICENSE.txt -------------------------------------------------------------------------------- /nuitka/build/inline_copy/zstd/common/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/zstd/common/cpu.h -------------------------------------------------------------------------------- /nuitka/build/inline_copy/zstd/common/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/zstd/common/debug.h -------------------------------------------------------------------------------- /nuitka/build/inline_copy/zstd/common/fse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/zstd/common/fse.h -------------------------------------------------------------------------------- /nuitka/build/inline_copy/zstd/common/huf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/zstd/common/huf.h -------------------------------------------------------------------------------- /nuitka/build/inline_copy/zstd/common/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/zstd/common/mem.h -------------------------------------------------------------------------------- /nuitka/build/inline_copy/zstd/zstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/inline_copy/zstd/zstd.h -------------------------------------------------------------------------------- /nuitka/build/static_src/CompiledCellType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/CompiledCellType.c -------------------------------------------------------------------------------- /nuitka/build/static_src/CompiledFrameType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/CompiledFrameType.c -------------------------------------------------------------------------------- /nuitka/build/static_src/HelpersAllocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/HelpersAllocator.c -------------------------------------------------------------------------------- /nuitka/build/static_src/HelpersAttributes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/HelpersAttributes.c -------------------------------------------------------------------------------- /nuitka/build/static_src/HelpersBuiltin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/HelpersBuiltin.c -------------------------------------------------------------------------------- /nuitka/build/static_src/HelpersBytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/HelpersBytes.c -------------------------------------------------------------------------------- /nuitka/build/static_src/HelpersCalling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/HelpersCalling.c -------------------------------------------------------------------------------- /nuitka/build/static_src/HelpersClasses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/HelpersClasses.c -------------------------------------------------------------------------------- /nuitka/build/static_src/HelpersDeepcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/HelpersDeepcopy.c -------------------------------------------------------------------------------- /nuitka/build/static_src/HelpersExceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/HelpersExceptions.c -------------------------------------------------------------------------------- /nuitka/build/static_src/HelpersFiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/HelpersFiles.c -------------------------------------------------------------------------------- /nuitka/build/static_src/HelpersFloats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/HelpersFloats.c -------------------------------------------------------------------------------- /nuitka/build/static_src/HelpersImport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/HelpersImport.c -------------------------------------------------------------------------------- /nuitka/build/static_src/HelpersImportHard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/HelpersImportHard.c -------------------------------------------------------------------------------- /nuitka/build/static_src/HelpersJitSources.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/HelpersJitSources.c -------------------------------------------------------------------------------- /nuitka/build/static_src/HelpersLists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/HelpersLists.c -------------------------------------------------------------------------------- /nuitka/build/static_src/HelpersMappings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/HelpersMappings.c -------------------------------------------------------------------------------- /nuitka/build/static_src/HelpersMatching.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/HelpersMatching.c -------------------------------------------------------------------------------- /nuitka/build/static_src/HelpersProfiling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/HelpersProfiling.c -------------------------------------------------------------------------------- /nuitka/build/static_src/HelpersPythonPgo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/HelpersPythonPgo.c -------------------------------------------------------------------------------- /nuitka/build/static_src/HelpersRaising.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/HelpersRaising.c -------------------------------------------------------------------------------- /nuitka/build/static_src/HelpersSequences.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/HelpersSequences.c -------------------------------------------------------------------------------- /nuitka/build/static_src/HelpersSlices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/HelpersSlices.c -------------------------------------------------------------------------------- /nuitka/build/static_src/HelpersStrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/HelpersStrings.c -------------------------------------------------------------------------------- /nuitka/build/static_src/HelpersTuples.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/HelpersTuples.c -------------------------------------------------------------------------------- /nuitka/build/static_src/HelpersTypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/HelpersTypes.c -------------------------------------------------------------------------------- /nuitka/build/static_src/InspectPatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/InspectPatcher.c -------------------------------------------------------------------------------- /nuitka/build/static_src/MainProgram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/MainProgram.c -------------------------------------------------------------------------------- /nuitka/build/static_src/OnefileBootstrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/build/static_src/OnefileBootstrap.c -------------------------------------------------------------------------------- /nuitka/code_generation/AsyncgenCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/AsyncgenCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/AttributeCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/AttributeCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/BranchCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/BranchCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/BuiltinCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/BuiltinCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/CallCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/CallCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/ClassCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/ClassCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/CodeGeneration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/CodeGeneration.py -------------------------------------------------------------------------------- /nuitka/code_generation/CodeHelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/CodeHelpers.py -------------------------------------------------------------------------------- /nuitka/code_generation/CodeObjectCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/CodeObjectCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/ComparisonCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/ComparisonCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/ConditionalCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/ConditionalCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/ConstantCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/ConstantCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/Contexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/Contexts.py -------------------------------------------------------------------------------- /nuitka/code_generation/CoroutineCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/CoroutineCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/CtypesCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/CtypesCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/DictCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/DictCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/Emission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/Emission.py -------------------------------------------------------------------------------- /nuitka/code_generation/ErrorCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/ErrorCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/EvalCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/EvalCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/ExceptionCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/ExceptionCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/ExpressionCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/ExpressionCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/FrameCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/FrameCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/FunctionCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/FunctionCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/GeneratorCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/GeneratorCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/GlobalConstants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/GlobalConstants.py -------------------------------------------------------------------------------- /nuitka/code_generation/IdCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/IdCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/ImportCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/ImportCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/Indentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/Indentation.py -------------------------------------------------------------------------------- /nuitka/code_generation/IndexCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/IndexCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/InjectCCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/InjectCCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/IntegerCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/IntegerCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/IteratorCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/IteratorCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/LabelCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/LabelCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/LineNumberCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/LineNumberCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/ListCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/ListCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/LoaderCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/LoaderCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/LocalsDictCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/LocalsDictCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/LoopCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/LoopCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/MatchCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/MatchCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/ModuleCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/ModuleCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/Namify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/Namify.py -------------------------------------------------------------------------------- /nuitka/code_generation/OperationCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/OperationCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/PrintCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/PrintCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/PythonAPICodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/PythonAPICodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/RaisingCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/RaisingCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/Reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/Reports.py -------------------------------------------------------------------------------- /nuitka/code_generation/ReturnCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/ReturnCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/SetCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/SetCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/SliceCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/SliceCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/StringCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/StringCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/SubscriptCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/SubscriptCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/TensorflowCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/TensorflowCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/TryCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/TryCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/TupleCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/TupleCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/VariableCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/VariableCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/YieldCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/YieldCodes.py -------------------------------------------------------------------------------- /nuitka/code_generation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/__init__.py -------------------------------------------------------------------------------- /nuitka/code_generation/c_types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/code_generation/c_types/__init__.py -------------------------------------------------------------------------------- /nuitka/containers/Namedtuples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/containers/Namedtuples.py -------------------------------------------------------------------------------- /nuitka/containers/OrderedDicts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/containers/OrderedDicts.py -------------------------------------------------------------------------------- /nuitka/containers/OrderedSets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/containers/OrderedSets.py -------------------------------------------------------------------------------- /nuitka/containers/OrderedSetsFallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/containers/OrderedSetsFallback.py -------------------------------------------------------------------------------- /nuitka/containers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/containers/__init__.py -------------------------------------------------------------------------------- /nuitka/distutils/Build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/distutils/Build.py -------------------------------------------------------------------------------- /nuitka/distutils/DistutilCommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/distutils/DistutilCommands.py -------------------------------------------------------------------------------- /nuitka/distutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/distutils/__init__.py -------------------------------------------------------------------------------- /nuitka/finalizations/Finalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/finalizations/Finalization.py -------------------------------------------------------------------------------- /nuitka/finalizations/FinalizeMarkups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/finalizations/FinalizeMarkups.py -------------------------------------------------------------------------------- /nuitka/finalizations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/finalizations/__init__.py -------------------------------------------------------------------------------- /nuitka/freezer/DependsExe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/freezer/DependsExe.py -------------------------------------------------------------------------------- /nuitka/freezer/DllDependenciesCommon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/freezer/DllDependenciesCommon.py -------------------------------------------------------------------------------- /nuitka/freezer/DllDependenciesMacOS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/freezer/DllDependenciesMacOS.py -------------------------------------------------------------------------------- /nuitka/freezer/DllDependenciesPosix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/freezer/DllDependenciesPosix.py -------------------------------------------------------------------------------- /nuitka/freezer/DllDependenciesWin32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/freezer/DllDependenciesWin32.py -------------------------------------------------------------------------------- /nuitka/freezer/ImportDetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/freezer/ImportDetection.py -------------------------------------------------------------------------------- /nuitka/freezer/IncludedDataFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/freezer/IncludedDataFiles.py -------------------------------------------------------------------------------- /nuitka/freezer/IncludedEntryPoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/freezer/IncludedEntryPoints.py -------------------------------------------------------------------------------- /nuitka/freezer/Onefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/freezer/Onefile.py -------------------------------------------------------------------------------- /nuitka/freezer/Standalone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/freezer/Standalone.py -------------------------------------------------------------------------------- /nuitka/freezer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/freezer/__init__.py -------------------------------------------------------------------------------- /nuitka/importing/IgnoreListing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/importing/IgnoreListing.py -------------------------------------------------------------------------------- /nuitka/importing/ImportCache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/importing/ImportCache.py -------------------------------------------------------------------------------- /nuitka/importing/ImportResolving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/importing/ImportResolving.py -------------------------------------------------------------------------------- /nuitka/importing/Importing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/importing/Importing.py -------------------------------------------------------------------------------- /nuitka/importing/PreloadedPackages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/importing/PreloadedPackages.py -------------------------------------------------------------------------------- /nuitka/importing/Recursion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/importing/Recursion.py -------------------------------------------------------------------------------- /nuitka/importing/StandardLibrary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/importing/StandardLibrary.py -------------------------------------------------------------------------------- /nuitka/importing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/importing/__init__.py -------------------------------------------------------------------------------- /nuitka/nodes/AsyncgenNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/AsyncgenNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/AttributeLookupNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/AttributeLookupNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/AttributeNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/AttributeNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/AttributeNodesGenerated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/AttributeNodesGenerated.py -------------------------------------------------------------------------------- /nuitka/nodes/BuiltinAllNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/BuiltinAllNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/BuiltinAnyNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/BuiltinAnyNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/BuiltinComplexNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/BuiltinComplexNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/BuiltinDecodingNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/BuiltinDecodingNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/BuiltinDecoratorNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/BuiltinDecoratorNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/BuiltinDictNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/BuiltinDictNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/BuiltinFormatNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/BuiltinFormatNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/BuiltinHashNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/BuiltinHashNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/BuiltinInputNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/BuiltinInputNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/BuiltinIntegerNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/BuiltinIntegerNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/BuiltinIteratorNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/BuiltinIteratorNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/BuiltinLenNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/BuiltinLenNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/BuiltinNextNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/BuiltinNextNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/BuiltinOpenNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/BuiltinOpenNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/BuiltinRangeNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/BuiltinRangeNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/BuiltinRefNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/BuiltinRefNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/BuiltinSumNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/BuiltinSumNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/BuiltinTypeNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/BuiltinTypeNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/BuiltinVarsNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/BuiltinVarsNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/BytesNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/BytesNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/CallNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/CallNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/Checkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/Checkers.py -------------------------------------------------------------------------------- /nuitka/nodes/ChildrenHavingMixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/ChildrenHavingMixins.py -------------------------------------------------------------------------------- /nuitka/nodes/ClassNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/ClassNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/CodeObjectSpecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/CodeObjectSpecs.py -------------------------------------------------------------------------------- /nuitka/nodes/ComparisonNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/ComparisonNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/ConditionalNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/ConditionalNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/ConstantRefNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/ConstantRefNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/ContainerMakingNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/ContainerMakingNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/ContainerOperationNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/ContainerOperationNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/CoroutineNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/CoroutineNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/CtypesNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/CtypesNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/DictionaryNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/DictionaryNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/ExceptionNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/ExceptionNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/ExecEvalNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/ExecEvalNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/ExpressionBases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/ExpressionBases.py -------------------------------------------------------------------------------- /nuitka/nodes/ExpressionBasesGenerated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/ExpressionBasesGenerated.py -------------------------------------------------------------------------------- /nuitka/nodes/ExpressionShapeMixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/ExpressionShapeMixins.py -------------------------------------------------------------------------------- /nuitka/nodes/FrameNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/FrameNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/FunctionAttributeNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/FunctionAttributeNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/FunctionNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/FunctionNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/FutureSpecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/FutureSpecs.py -------------------------------------------------------------------------------- /nuitka/nodes/GeneratorNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/GeneratorNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/GlobalsLocalsNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/GlobalsLocalsNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/HardImportNodesGenerated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/HardImportNodesGenerated.py -------------------------------------------------------------------------------- /nuitka/nodes/ImportHardNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/ImportHardNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/ImportNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/ImportNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/IndicatorMixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/IndicatorMixins.py -------------------------------------------------------------------------------- /nuitka/nodes/InjectCNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/InjectCNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/IterationHandles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/IterationHandles.py -------------------------------------------------------------------------------- /nuitka/nodes/KeyValuePairNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/KeyValuePairNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/ListOperationNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/ListOperationNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/LocalsDictNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/LocalsDictNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/LocalsScopes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/LocalsScopes.py -------------------------------------------------------------------------------- /nuitka/nodes/LoopNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/LoopNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/MatchNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/MatchNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/ModuleAttributeNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/ModuleAttributeNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/ModuleNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/ModuleNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/NodeBases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/NodeBases.py -------------------------------------------------------------------------------- /nuitka/nodes/NodeMakingHelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/NodeMakingHelpers.py -------------------------------------------------------------------------------- /nuitka/nodes/NodeMetaClasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/NodeMetaClasses.py -------------------------------------------------------------------------------- /nuitka/nodes/OperatorNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/OperatorNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/OperatorNodesUnary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/OperatorNodesUnary.py -------------------------------------------------------------------------------- /nuitka/nodes/OsSysNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/OsSysNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/OutlineNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/OutlineNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/PackageMetadataNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/PackageMetadataNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/PackageResourceNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/PackageResourceNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/PrintNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/PrintNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/ReturnNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/ReturnNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/SideEffectNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/SideEffectNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/SliceNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/SliceNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/StatementBasesGenerated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/StatementBasesGenerated.py -------------------------------------------------------------------------------- /nuitka/nodes/StatementNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/StatementNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/StrNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/StrNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/StringConcatenationNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/StringConcatenationNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/SubscriptNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/SubscriptNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/TensorflowNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/TensorflowNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/TryNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/TryNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/TypeMatchNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/TypeMatchNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/TypeNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/TypeNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/VariableAssignNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/VariableAssignNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/VariableDelNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/VariableDelNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/VariableNameNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/VariableNameNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/VariableRefNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/VariableRefNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/VariableReleaseNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/VariableReleaseNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/YieldNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/YieldNodes.py -------------------------------------------------------------------------------- /nuitka/nodes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/__init__.py -------------------------------------------------------------------------------- /nuitka/nodes/shapes/BuiltinTypeShapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/shapes/BuiltinTypeShapes.py -------------------------------------------------------------------------------- /nuitka/nodes/shapes/ShapeMixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/shapes/ShapeMixins.py -------------------------------------------------------------------------------- /nuitka/nodes/shapes/StandardShapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/shapes/StandardShapes.py -------------------------------------------------------------------------------- /nuitka/nodes/shapes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/nodes/shapes/__init__.py -------------------------------------------------------------------------------- /nuitka/optimizations/BytecodeDemotion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/optimizations/BytecodeDemotion.py -------------------------------------------------------------------------------- /nuitka/optimizations/FunctionInlining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/optimizations/FunctionInlining.py -------------------------------------------------------------------------------- /nuitka/optimizations/Graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/optimizations/Graphs.py -------------------------------------------------------------------------------- /nuitka/optimizations/Optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/optimizations/Optimization.py -------------------------------------------------------------------------------- /nuitka/optimizations/Tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/optimizations/Tags.py -------------------------------------------------------------------------------- /nuitka/optimizations/TraceCollections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/optimizations/TraceCollections.py -------------------------------------------------------------------------------- /nuitka/optimizations/ValueTraces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/optimizations/ValueTraces.py -------------------------------------------------------------------------------- /nuitka/optimizations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/optimizations/__init__.py -------------------------------------------------------------------------------- /nuitka/pgo/PGO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/pgo/PGO.py -------------------------------------------------------------------------------- /nuitka/pgo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/pgo/__init__.py -------------------------------------------------------------------------------- /nuitka/plugins/PluginBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/PluginBase.py -------------------------------------------------------------------------------- /nuitka/plugins/Plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/Plugins.py -------------------------------------------------------------------------------- /nuitka/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/__init__.py -------------------------------------------------------------------------------- /nuitka/plugins/standard/AntiBloatPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/standard/AntiBloatPlugin.py -------------------------------------------------------------------------------- /nuitka/plugins/standard/DataFilesPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/standard/DataFilesPlugin.py -------------------------------------------------------------------------------- /nuitka/plugins/standard/DelvewheelPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/standard/DelvewheelPlugin.py -------------------------------------------------------------------------------- /nuitka/plugins/standard/DillPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/standard/DillPlugin.py -------------------------------------------------------------------------------- /nuitka/plugins/standard/DllFilesPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/standard/DllFilesPlugin.py -------------------------------------------------------------------------------- /nuitka/plugins/standard/EnumPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/standard/EnumPlugin.py -------------------------------------------------------------------------------- /nuitka/plugins/standard/EventletPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/standard/EventletPlugin.py -------------------------------------------------------------------------------- /nuitka/plugins/standard/GeventPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/standard/GeventPlugin.py -------------------------------------------------------------------------------- /nuitka/plugins/standard/GiPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/standard/GiPlugin.py -------------------------------------------------------------------------------- /nuitka/plugins/standard/GlfwPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/standard/GlfwPlugin.py -------------------------------------------------------------------------------- /nuitka/plugins/standard/ImplicitImports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/standard/ImplicitImports.py -------------------------------------------------------------------------------- /nuitka/plugins/standard/KivyPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/standard/KivyPlugin.py -------------------------------------------------------------------------------- /nuitka/plugins/standard/MatplotlibPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/standard/MatplotlibPlugin.py -------------------------------------------------------------------------------- /nuitka/plugins/standard/NumpyPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/standard/NumpyPlugin.py -------------------------------------------------------------------------------- /nuitka/plugins/standard/PbrPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/standard/PbrPlugin.py -------------------------------------------------------------------------------- /nuitka/plugins/standard/PmwPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/standard/PmwPlugin.py -------------------------------------------------------------------------------- /nuitka/plugins/standard/PySidePyQtPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/standard/PySidePyQtPlugin.py -------------------------------------------------------------------------------- /nuitka/plugins/standard/PywebViewPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/standard/PywebViewPlugin.py -------------------------------------------------------------------------------- /nuitka/plugins/standard/TensorflowPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/standard/TensorflowPlugin.py -------------------------------------------------------------------------------- /nuitka/plugins/standard/TkinterPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/standard/TkinterPlugin.py -------------------------------------------------------------------------------- /nuitka/plugins/standard/TorchPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/standard/TorchPlugin.py -------------------------------------------------------------------------------- /nuitka/plugins/standard/TrioPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/standard/TrioPlugin.py -------------------------------------------------------------------------------- /nuitka/plugins/standard/UpxPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/standard/UpxPlugin.py -------------------------------------------------------------------------------- /nuitka/plugins/standard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/plugins/standard/__init__.py -------------------------------------------------------------------------------- /nuitka/reports/CompilationReportReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/reports/CompilationReportReader.py -------------------------------------------------------------------------------- /nuitka/reports/LicenseReport.rst.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/reports/LicenseReport.rst.j2 -------------------------------------------------------------------------------- /nuitka/reports/Reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/reports/Reports.py -------------------------------------------------------------------------------- /nuitka/reports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/reports/__init__.py -------------------------------------------------------------------------------- /nuitka/specs/BuiltinBytesOperationSpecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/specs/BuiltinBytesOperationSpecs.py -------------------------------------------------------------------------------- /nuitka/specs/BuiltinDictOperationSpecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/specs/BuiltinDictOperationSpecs.py -------------------------------------------------------------------------------- /nuitka/specs/BuiltinListOperationSpecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/specs/BuiltinListOperationSpecs.py -------------------------------------------------------------------------------- /nuitka/specs/BuiltinParameterSpecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/specs/BuiltinParameterSpecs.py -------------------------------------------------------------------------------- /nuitka/specs/BuiltinStrOperationSpecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/specs/BuiltinStrOperationSpecs.py -------------------------------------------------------------------------------- /nuitka/specs/BuiltinTypeOperationSpecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/specs/BuiltinTypeOperationSpecs.py -------------------------------------------------------------------------------- /nuitka/specs/HardImportSpecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/specs/HardImportSpecs.py -------------------------------------------------------------------------------- /nuitka/specs/ParameterSpecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/specs/ParameterSpecs.py -------------------------------------------------------------------------------- /nuitka/specs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/specs/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/Basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/Basics.py -------------------------------------------------------------------------------- /nuitka/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/commercial/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/commercial/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/data_composer/DataComposer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/data_composer/DataComposer.py -------------------------------------------------------------------------------- /nuitka/tools/data_composer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/data_composer/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/data_composer/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/data_composer/__main__.py -------------------------------------------------------------------------------- /nuitka/tools/environments/Virtualenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/environments/Virtualenv.py -------------------------------------------------------------------------------- /nuitka/tools/environments/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/environments/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/general/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/general/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/general/dll_report/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/general/dll_report/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/general/dll_report/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/general/dll_report/__main__.py -------------------------------------------------------------------------------- /nuitka/tools/onefile_compressor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/onefile_compressor/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/onefile_compressor/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/onefile_compressor/__main__.py -------------------------------------------------------------------------------- /nuitka/tools/podman/Podman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/podman/Podman.py -------------------------------------------------------------------------------- /nuitka/tools/podman/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/podman/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/podman/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/podman/__main__.py -------------------------------------------------------------------------------- /nuitka/tools/profiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/profiler/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/profiler/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/profiler/__main__.py -------------------------------------------------------------------------------- /nuitka/tools/quality/Git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/quality/Git.py -------------------------------------------------------------------------------- /nuitka/tools/quality/ScanSources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/quality/ScanSources.py -------------------------------------------------------------------------------- /nuitka/tools/quality/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/quality/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/quality/apidoc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/quality/apidoc/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/quality/apidoc/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/quality/apidoc/__main__.py -------------------------------------------------------------------------------- /nuitka/tools/quality/codespell/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/quality/codespell/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/quality/codespell/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/quality/codespell/__main__.py -------------------------------------------------------------------------------- /nuitka/tools/quality/pylint/PyLint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/quality/pylint/PyLint.py -------------------------------------------------------------------------------- /nuitka/tools/quality/pylint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/quality/pylint/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/quality/pylint/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/quality/pylint/__main__.py -------------------------------------------------------------------------------- /nuitka/tools/quality/restlint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/quality/restlint/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/quality/restlint/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/quality/restlint/__main__.py -------------------------------------------------------------------------------- /nuitka/tools/quality/yamllint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/quality/yamllint/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/quality/yamllint/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/quality/yamllint/__main__.py -------------------------------------------------------------------------------- /nuitka/tools/release/Debian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/release/Debian.py -------------------------------------------------------------------------------- /nuitka/tools/release/Documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/release/Documentation.py -------------------------------------------------------------------------------- /nuitka/tools/release/Release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/release/Release.py -------------------------------------------------------------------------------- /nuitka/tools/release/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/release/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/release/bump/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/release/bump/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/release/bump/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/release/bump/__main__.py -------------------------------------------------------------------------------- /nuitka/tools/release/debian/__init__.py: -------------------------------------------------------------------------------- 1 | """ Dummy file to make this directory a package. """ 2 | -------------------------------------------------------------------------------- /nuitka/tools/release/debian/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/release/debian/__main__.py -------------------------------------------------------------------------------- /nuitka/tools/release/debian_mentors/__init__.py: -------------------------------------------------------------------------------- 1 | """ Dummy file to make this directory a package. """ 2 | -------------------------------------------------------------------------------- /nuitka/tools/release/osc_check/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/release/osc_check/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/release/osc_check/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/release/osc_check/__main__.py -------------------------------------------------------------------------------- /nuitka/tools/release/osc_upload/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/release/osc_upload/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/release/osc_upload/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/release/osc_upload/__main__.py -------------------------------------------------------------------------------- /nuitka/tools/release/pypi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/release/pypi/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/release/pypi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/release/pypi/__main__.py -------------------------------------------------------------------------------- /nuitka/tools/release/rpm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/release/rpm/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/release/rpm/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/release/rpm/__main__.py -------------------------------------------------------------------------------- /nuitka/tools/release/rpm/nuitka.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/release/rpm/nuitka.spec -------------------------------------------------------------------------------- /nuitka/tools/release/sync_doc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/release/sync_doc/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/release/sync_doc/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/release/sync_doc/__main__.py -------------------------------------------------------------------------------- /nuitka/tools/scanning/DisplayPackageDLLs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/scanning/DisplayPackageDLLs.py -------------------------------------------------------------------------------- /nuitka/tools/scanning/DisplayPackageData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/scanning/DisplayPackageData.py -------------------------------------------------------------------------------- /nuitka/tools/scanning/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/scanning/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/specialize/Common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/specialize/Common.py -------------------------------------------------------------------------------- /nuitka/tools/specialize/SpecializeC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/specialize/SpecializeC.py -------------------------------------------------------------------------------- /nuitka/tools/specialize/SpecializePython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/specialize/SpecializePython.py -------------------------------------------------------------------------------- /nuitka/tools/specialize/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/specialize/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/testing/Common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/testing/Common.py -------------------------------------------------------------------------------- /nuitka/tools/testing/Constructs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/testing/Constructs.py -------------------------------------------------------------------------------- /nuitka/tools/testing/OutputComparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/testing/OutputComparison.py -------------------------------------------------------------------------------- /nuitka/tools/testing/Pythons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/testing/Pythons.py -------------------------------------------------------------------------------- /nuitka/tools/testing/RuntimeTracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/testing/RuntimeTracing.py -------------------------------------------------------------------------------- /nuitka/tools/testing/SearchModes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/testing/SearchModes.py -------------------------------------------------------------------------------- /nuitka/tools/testing/Valgrind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/testing/Valgrind.py -------------------------------------------------------------------------------- /nuitka/tools/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/testing/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/watch/GitHub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/watch/GitHub.py -------------------------------------------------------------------------------- /nuitka/tools/watch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/watch/__init__.py -------------------------------------------------------------------------------- /nuitka/tools/watch/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tools/watch/__main__.py -------------------------------------------------------------------------------- /nuitka/tree/Building.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tree/Building.py -------------------------------------------------------------------------------- /nuitka/tree/ComplexCallHelperFunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tree/ComplexCallHelperFunctions.py -------------------------------------------------------------------------------- /nuitka/tree/Extractions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tree/Extractions.py -------------------------------------------------------------------------------- /nuitka/tree/InternalModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tree/InternalModule.py -------------------------------------------------------------------------------- /nuitka/tree/Operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tree/Operations.py -------------------------------------------------------------------------------- /nuitka/tree/ReformulationCallExpressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tree/ReformulationCallExpressions.py -------------------------------------------------------------------------------- /nuitka/tree/ReformulationClasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tree/ReformulationClasses.py -------------------------------------------------------------------------------- /nuitka/tree/ReformulationClasses3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tree/ReformulationClasses3.py -------------------------------------------------------------------------------- /nuitka/tree/ReformulationExecStatements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tree/ReformulationExecStatements.py -------------------------------------------------------------------------------- /nuitka/tree/ReformulationMatchStatements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tree/ReformulationMatchStatements.py -------------------------------------------------------------------------------- /nuitka/tree/ReformulationMultidist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tree/ReformulationMultidist.py -------------------------------------------------------------------------------- /nuitka/tree/ReformulationPrintStatements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tree/ReformulationPrintStatements.py -------------------------------------------------------------------------------- /nuitka/tree/ReformulationWithStatements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tree/ReformulationWithStatements.py -------------------------------------------------------------------------------- /nuitka/tree/SourceHandling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tree/SourceHandling.py -------------------------------------------------------------------------------- /nuitka/tree/SyntaxErrors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tree/SyntaxErrors.py -------------------------------------------------------------------------------- /nuitka/tree/TreeHelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tree/TreeHelpers.py -------------------------------------------------------------------------------- /nuitka/tree/VariableClosure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tree/VariableClosure.py -------------------------------------------------------------------------------- /nuitka/tree/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/tree/__init__.py -------------------------------------------------------------------------------- /nuitka/utils/AppDirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/AppDirs.py -------------------------------------------------------------------------------- /nuitka/utils/CStrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/CStrings.py -------------------------------------------------------------------------------- /nuitka/utils/CommandLineOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/CommandLineOptions.py -------------------------------------------------------------------------------- /nuitka/utils/Distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/Distributions.py -------------------------------------------------------------------------------- /nuitka/utils/Download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/Download.py -------------------------------------------------------------------------------- /nuitka/utils/Execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/Execution.py -------------------------------------------------------------------------------- /nuitka/utils/FileOperations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/FileOperations.py -------------------------------------------------------------------------------- /nuitka/utils/Hashing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/Hashing.py -------------------------------------------------------------------------------- /nuitka/utils/Images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/Images.py -------------------------------------------------------------------------------- /nuitka/utils/Importing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/Importing.py -------------------------------------------------------------------------------- /nuitka/utils/InstalledPythons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/InstalledPythons.py -------------------------------------------------------------------------------- /nuitka/utils/InstanceCounters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/InstanceCounters.py -------------------------------------------------------------------------------- /nuitka/utils/Jinja2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/Jinja2.py -------------------------------------------------------------------------------- /nuitka/utils/Json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/Json.py -------------------------------------------------------------------------------- /nuitka/utils/MacOSApp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/MacOSApp.py -------------------------------------------------------------------------------- /nuitka/utils/MemoryUsage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/MemoryUsage.py -------------------------------------------------------------------------------- /nuitka/utils/ModuleNames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/ModuleNames.py -------------------------------------------------------------------------------- /nuitka/utils/ReExecute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/ReExecute.py -------------------------------------------------------------------------------- /nuitka/utils/Rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/Rest.py -------------------------------------------------------------------------------- /nuitka/utils/SharedLibraries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/SharedLibraries.py -------------------------------------------------------------------------------- /nuitka/utils/Shebang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/Shebang.py -------------------------------------------------------------------------------- /nuitka/utils/Signing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/Signing.py -------------------------------------------------------------------------------- /nuitka/utils/SlotMetaClasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/SlotMetaClasses.py -------------------------------------------------------------------------------- /nuitka/utils/StaticLibraries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/StaticLibraries.py -------------------------------------------------------------------------------- /nuitka/utils/ThreadedExecutor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/ThreadedExecutor.py -------------------------------------------------------------------------------- /nuitka/utils/Timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/Timing.py -------------------------------------------------------------------------------- /nuitka/utils/Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/Utils.py -------------------------------------------------------------------------------- /nuitka/utils/WindowsFileUsage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/WindowsFileUsage.py -------------------------------------------------------------------------------- /nuitka/utils/WindowsResources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/WindowsResources.py -------------------------------------------------------------------------------- /nuitka/utils/Yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/Yaml.py -------------------------------------------------------------------------------- /nuitka/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/nuitka/utils/__init__.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-devel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/requirements-devel.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/requirements.txt -------------------------------------------------------------------------------- /rpm/check-osc-status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/rpm/check-osc-status.py -------------------------------------------------------------------------------- /rpm/make-osc-upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/rpm/make-osc-upload.py -------------------------------------------------------------------------------- /rpm/nuitka-rpmlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/rpm/nuitka-rpmlintrc -------------------------------------------------------------------------------- /rpm/nuitka.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/rpm/nuitka.spec -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/setup.py -------------------------------------------------------------------------------- /tests/PyPI-pytest/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/PyPI-pytest/README.rst -------------------------------------------------------------------------------- /tests/PyPI-pytest/packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/PyPI-pytest/packages.json -------------------------------------------------------------------------------- /tests/PyPI-pytest/run_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/PyPI-pytest/run_all.py -------------------------------------------------------------------------------- /tests/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/README.txt -------------------------------------------------------------------------------- /tests/basics/AssertsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/AssertsTest.py -------------------------------------------------------------------------------- /tests/basics/AssignmentsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/AssignmentsTest.py -------------------------------------------------------------------------------- /tests/basics/AssignmentsTest32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/AssignmentsTest32.py -------------------------------------------------------------------------------- /tests/basics/BranchingTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/BranchingTest.py -------------------------------------------------------------------------------- /tests/basics/BuiltinOverload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/BuiltinOverload.py -------------------------------------------------------------------------------- /tests/basics/BuiltinSuperTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/BuiltinSuperTest.py -------------------------------------------------------------------------------- /tests/basics/BuiltinsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/BuiltinsTest.py -------------------------------------------------------------------------------- /tests/basics/ClassMinimalTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/ClassMinimalTest.py -------------------------------------------------------------------------------- /tests/basics/ClassesTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/ClassesTest.py -------------------------------------------------------------------------------- /tests/basics/ClassesTest32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/ClassesTest32.py -------------------------------------------------------------------------------- /tests/basics/ClassesTest34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/ClassesTest34.py -------------------------------------------------------------------------------- /tests/basics/ComparisonChainsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/ComparisonChainsTest.py -------------------------------------------------------------------------------- /tests/basics/ConstantsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/ConstantsTest.py -------------------------------------------------------------------------------- /tests/basics/ConstantsTest27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/ConstantsTest27.py -------------------------------------------------------------------------------- /tests/basics/DecoratorsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/DecoratorsTest.py -------------------------------------------------------------------------------- /tests/basics/DefaultParametersTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/DefaultParametersTest.py -------------------------------------------------------------------------------- /tests/basics/DoubleDeletionsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/DoubleDeletionsTest.py -------------------------------------------------------------------------------- /tests/basics/EmptyModuleTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/EmptyModuleTest.py -------------------------------------------------------------------------------- /tests/basics/ExceptionRaisingTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/ExceptionRaisingTest.py -------------------------------------------------------------------------------- /tests/basics/ExceptionRaisingTest32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/ExceptionRaisingTest32.py -------------------------------------------------------------------------------- /tests/basics/ExceptionRaisingTest33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/ExceptionRaisingTest33.py -------------------------------------------------------------------------------- /tests/basics/ExecEvalTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/ExecEvalTest.py -------------------------------------------------------------------------------- /tests/basics/ExtremeClosureTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/ExtremeClosureTest.py -------------------------------------------------------------------------------- /tests/basics/FunctionObjectsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/FunctionObjectsTest.py -------------------------------------------------------------------------------- /tests/basics/FunctionsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/FunctionsTest.py -------------------------------------------------------------------------------- /tests/basics/FunctionsTest32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/FunctionsTest32.py -------------------------------------------------------------------------------- /tests/basics/FunctionsTest_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/FunctionsTest_2.py -------------------------------------------------------------------------------- /tests/basics/FutureTest32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/FutureTest32.py -------------------------------------------------------------------------------- /tests/basics/GeneratorExpressionsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/GeneratorExpressionsTest.py -------------------------------------------------------------------------------- /tests/basics/GeneratorExpressionsTest_37.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/GeneratorExpressionsTest_37.py -------------------------------------------------------------------------------- /tests/basics/GlobalStatementTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/GlobalStatementTest.py -------------------------------------------------------------------------------- /tests/basics/HelloWorldTest_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/HelloWorldTest_2.py -------------------------------------------------------------------------------- /tests/basics/ImportingTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/ImportingTest.py -------------------------------------------------------------------------------- /tests/basics/InplaceOperationsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/InplaceOperationsTest.py -------------------------------------------------------------------------------- /tests/basics/InspectionTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/InspectionTest.py -------------------------------------------------------------------------------- /tests/basics/InspectionTest_35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/InspectionTest_35.py -------------------------------------------------------------------------------- /tests/basics/InspectionTest_36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/InspectionTest_36.py -------------------------------------------------------------------------------- /tests/basics/LambdasTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/LambdasTest.py -------------------------------------------------------------------------------- /tests/basics/LateClosureAssignmentTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/LateClosureAssignmentTest.py -------------------------------------------------------------------------------- /tests/basics/ListContractionsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/ListContractionsTest.py -------------------------------------------------------------------------------- /tests/basics/LoopingTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/LoopingTest.py -------------------------------------------------------------------------------- /tests/basics/MainProgramsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/MainProgramsTest.py -------------------------------------------------------------------------------- /tests/basics/ModuleAttributesTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/ModuleAttributesTest.py -------------------------------------------------------------------------------- /tests/basics/OperatorsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/OperatorsTest.py -------------------------------------------------------------------------------- /tests/basics/OrderChecksTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/OrderChecksTest.py -------------------------------------------------------------------------------- /tests/basics/OrderChecksTest27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/OrderChecksTest27.py -------------------------------------------------------------------------------- /tests/basics/OverflowFunctionsTest_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/OverflowFunctionsTest_2.py -------------------------------------------------------------------------------- /tests/basics/ParameterErrorsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/ParameterErrorsTest.py -------------------------------------------------------------------------------- /tests/basics/ParameterErrorsTest32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/ParameterErrorsTest32.py -------------------------------------------------------------------------------- /tests/basics/PrintFutureTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/PrintFutureTest.py -------------------------------------------------------------------------------- /tests/basics/PrintingTest_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/PrintingTest_2.py -------------------------------------------------------------------------------- /tests/basics/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/README.rst -------------------------------------------------------------------------------- /tests/basics/RecursionTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/RecursionTest.py -------------------------------------------------------------------------------- /tests/basics/ReferencingTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/ReferencingTest.py -------------------------------------------------------------------------------- /tests/basics/ReferencingTest27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/ReferencingTest27.py -------------------------------------------------------------------------------- /tests/basics/ReferencingTest33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/ReferencingTest33.py -------------------------------------------------------------------------------- /tests/basics/ReferencingTest35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/ReferencingTest35.py -------------------------------------------------------------------------------- /tests/basics/ReferencingTest36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/ReferencingTest36.py -------------------------------------------------------------------------------- /tests/basics/ReferencingTest_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/ReferencingTest_2.py -------------------------------------------------------------------------------- /tests/basics/SlotsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/SlotsTest.py -------------------------------------------------------------------------------- /tests/basics/ThreadedGeneratorsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/ThreadedGeneratorsTest.py -------------------------------------------------------------------------------- /tests/basics/TrickAssignmentsTest32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/TrickAssignmentsTest32.py -------------------------------------------------------------------------------- /tests/basics/TrickAssignmentsTest35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/TrickAssignmentsTest35.py -------------------------------------------------------------------------------- /tests/basics/TrickAssignmentsTest_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/TrickAssignmentsTest_2.py -------------------------------------------------------------------------------- /tests/basics/TryContinueFinallyTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/TryContinueFinallyTest.py -------------------------------------------------------------------------------- /tests/basics/TryExceptContinueTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/TryExceptContinueTest.py -------------------------------------------------------------------------------- /tests/basics/TryExceptFinallyTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/TryExceptFinallyTest.py -------------------------------------------------------------------------------- /tests/basics/TryExceptFramesTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/TryExceptFramesTest.py -------------------------------------------------------------------------------- /tests/basics/TryReturnFinallyTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/TryReturnFinallyTest.py -------------------------------------------------------------------------------- /tests/basics/TryYieldFinallyTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/TryYieldFinallyTest.py -------------------------------------------------------------------------------- /tests/basics/UnicodeTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/UnicodeTest.py -------------------------------------------------------------------------------- /tests/basics/UnpackingTest35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/UnpackingTest35.py -------------------------------------------------------------------------------- /tests/basics/VarargsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/VarargsTest.py -------------------------------------------------------------------------------- /tests/basics/WithStatementsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/WithStatementsTest.py -------------------------------------------------------------------------------- /tests/basics/YieldFromTest33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/YieldFromTest33.py -------------------------------------------------------------------------------- /tests/basics/run_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/run_all.py -------------------------------------------------------------------------------- /tests/basics/run_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/basics/run_xml.py -------------------------------------------------------------------------------- /tests/benchmarks/binary-trees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/binary-trees.py -------------------------------------------------------------------------------- /tests/benchmarks/constructs/DictCreation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/constructs/DictCreation.py -------------------------------------------------------------------------------- /tests/benchmarks/constructs/ListCreation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/constructs/ListCreation.py -------------------------------------------------------------------------------- /tests/benchmarks/constructs/SetCreation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/constructs/SetCreation.py -------------------------------------------------------------------------------- /tests/benchmarks/mandelbrot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/mandelbrot.py -------------------------------------------------------------------------------- /tests/benchmarks/pybench/Arithmetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/pybench/Arithmetic.py -------------------------------------------------------------------------------- /tests/benchmarks/pybench/Calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/pybench/Calls.py -------------------------------------------------------------------------------- /tests/benchmarks/pybench/CommandLine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/pybench/CommandLine.py -------------------------------------------------------------------------------- /tests/benchmarks/pybench/Constructs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/pybench/Constructs.py -------------------------------------------------------------------------------- /tests/benchmarks/pybench/Dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/pybench/Dict.py -------------------------------------------------------------------------------- /tests/benchmarks/pybench/Exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/pybench/Exceptions.py -------------------------------------------------------------------------------- /tests/benchmarks/pybench/Imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/pybench/Imports.py -------------------------------------------------------------------------------- /tests/benchmarks/pybench/Instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/pybench/Instances.py -------------------------------------------------------------------------------- /tests/benchmarks/pybench/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/pybench/LICENSE -------------------------------------------------------------------------------- /tests/benchmarks/pybench/Lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/pybench/Lists.py -------------------------------------------------------------------------------- /tests/benchmarks/pybench/Lookups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/pybench/Lookups.py -------------------------------------------------------------------------------- /tests/benchmarks/pybench/NewInstances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/pybench/NewInstances.py -------------------------------------------------------------------------------- /tests/benchmarks/pybench/Numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/pybench/Numbers.py -------------------------------------------------------------------------------- /tests/benchmarks/pybench/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/pybench/README -------------------------------------------------------------------------------- /tests/benchmarks/pybench/Setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/pybench/Setup.py -------------------------------------------------------------------------------- /tests/benchmarks/pybench/Strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/pybench/Strings.py -------------------------------------------------------------------------------- /tests/benchmarks/pybench/Tuples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/pybench/Tuples.py -------------------------------------------------------------------------------- /tests/benchmarks/pybench/Unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/pybench/Unicode.py -------------------------------------------------------------------------------- /tests/benchmarks/pybench/With.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/pybench/With.py -------------------------------------------------------------------------------- /tests/benchmarks/pybench/clockres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/pybench/clockres.py -------------------------------------------------------------------------------- /tests/benchmarks/pybench/pybench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/pybench/pybench.py -------------------------------------------------------------------------------- /tests/benchmarks/pybench/systimes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/pybench/systimes.py -------------------------------------------------------------------------------- /tests/benchmarks/pystone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/pystone.py -------------------------------------------------------------------------------- /tests/benchmarks/pystone3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/pystone3.py -------------------------------------------------------------------------------- /tests/benchmarks/recipe-577834-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/benchmarks/recipe-577834-1.py -------------------------------------------------------------------------------- /tests/codegen-analysis/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/codegen-analysis/README.txt -------------------------------------------------------------------------------- /tests/distutils/.gitignore: -------------------------------------------------------------------------------- 1 | *.egg-info 2 | pyproject.toml 3 | -------------------------------------------------------------------------------- /tests/distutils/example_1_pyproject/data_files/some_datafile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/distutils/example_1_pyproject/example1_package/data/package_data.txt: -------------------------------------------------------------------------------- 1 | Data file to be installed. 2 | -------------------------------------------------------------------------------- /tests/distutils/example_1_pyproject/runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/distutils/example_1_pyproject/runner -------------------------------------------------------------------------------- /tests/distutils/example_1_setuptools/data_files/some_datafile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/distutils/example_1_setuptools/example1_package/data/package_data.txt: -------------------------------------------------------------------------------- 1 | Data file to be installed. 2 | -------------------------------------------------------------------------------- /tests/distutils/example_1_setuptools/runner: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | print("Hello distutils world!") 4 | -------------------------------------------------------------------------------- /tests/distutils/example_2_setuptools/package1/subpackage1/data.txt: -------------------------------------------------------------------------------- 1 | Hello I am test 2 data companion! 2 | -------------------------------------------------------------------------------- /tests/distutils/example_4_setuptools_cfg/data_files/some_datafile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/distutils/example_4_setuptools_cfg/example1_package/data/package_data.txt: -------------------------------------------------------------------------------- 1 | Data file to be installed. 2 | -------------------------------------------------------------------------------- /tests/distutils/example_4_setuptools_cfg/runner: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | print("Hello distutils world!") 4 | -------------------------------------------------------------------------------- /tests/distutils/example_pymodules_only/runner: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | print("Hello distutils world!") 4 | -------------------------------------------------------------------------------- /tests/distutils/run_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/distutils/run_all.py -------------------------------------------------------------------------------- /tests/generated/BigConstantsTest.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/generated/BigConstantsTest.py.j2 -------------------------------------------------------------------------------- /tests/generated/BytesMethodsTest.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/generated/BytesMethodsTest.py.j2 -------------------------------------------------------------------------------- /tests/generated/BytesMethodsTest32.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/generated/BytesMethodsTest32.py.j2 -------------------------------------------------------------------------------- /tests/generated/DictMethodsTest.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/generated/DictMethodsTest.py.j2 -------------------------------------------------------------------------------- /tests/generated/InplaceTest.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/generated/InplaceTest.py.j2 -------------------------------------------------------------------------------- /tests/generated/OperationsTest.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/generated/OperationsTest.py.j2 -------------------------------------------------------------------------------- /tests/generated/StrMethodsTest.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/generated/StrMethodsTest.py.j2 -------------------------------------------------------------------------------- /tests/generated/run_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/generated/run_all.py -------------------------------------------------------------------------------- /tests/library/compile_extension_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/library/compile_extension_modules.py -------------------------------------------------------------------------------- /tests/library/compile_python_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/library/compile_python_modules.py -------------------------------------------------------------------------------- /tests/onefile/HelloWorldTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/onefile/HelloWorldTest.py -------------------------------------------------------------------------------- /tests/onefile/KeyboardInterruptTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/onefile/KeyboardInterruptTest.py -------------------------------------------------------------------------------- /tests/onefile/run_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/onefile/run_all.py -------------------------------------------------------------------------------- /tests/optimizations/ArgumentTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/optimizations/ArgumentTypes.py -------------------------------------------------------------------------------- /tests/optimizations/AttributesTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/optimizations/AttributesTest.py -------------------------------------------------------------------------------- /tests/optimizations/CallsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/optimizations/CallsTest.py -------------------------------------------------------------------------------- /tests/optimizations/ConditionsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/optimizations/ConditionsTest.py -------------------------------------------------------------------------------- /tests/optimizations/FormatStringsTest36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/optimizations/FormatStringsTest36.py -------------------------------------------------------------------------------- /tests/optimizations/HardImportsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/optimizations/HardImportsTest.py -------------------------------------------------------------------------------- /tests/optimizations/HardImportsTest_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/optimizations/HardImportsTest_2.py -------------------------------------------------------------------------------- /tests/optimizations/Iterations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/optimizations/Iterations.py -------------------------------------------------------------------------------- /tests/optimizations/LenTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/optimizations/LenTest.py -------------------------------------------------------------------------------- /tests/optimizations/MatchingTest310.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/optimizations/MatchingTest310.py -------------------------------------------------------------------------------- /tests/optimizations/OperationsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/optimizations/OperationsTest.py -------------------------------------------------------------------------------- /tests/optimizations/SubscriptsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/optimizations/SubscriptsTest.py -------------------------------------------------------------------------------- /tests/optimizations/run_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/optimizations/run_all.py -------------------------------------------------------------------------------- /tests/packages/package_data_files_embedding/lala.txt: -------------------------------------------------------------------------------- 1 | This is file 'lala.txt' contents. 2 | -------------------------------------------------------------------------------- /tests/packages/package_data_files_embedding/sub_dir/lulu.txt: -------------------------------------------------------------------------------- 1 | This is file 'subdir/lulu.txt' contents. 2 | -------------------------------------------------------------------------------- /tests/packages/run_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/packages/run_all.py -------------------------------------------------------------------------------- /tests/pgo/run_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/pgo/run_all.py -------------------------------------------------------------------------------- /tests/pgo/unused_module/UnusedModuleMain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/pgo/unused_module/UnusedModuleMain.py -------------------------------------------------------------------------------- /tests/plugins/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/plugins/README.rst -------------------------------------------------------------------------------- /tests/plugins/data_files/DataFilesMain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/plugins/data_files/DataFilesMain.py -------------------------------------------------------------------------------- /tests/plugins/data_files/data_files_package/lala.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/plugins/data_files/data_files_package/sub_dir/lulu.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/plugins/parameters/ParametersMain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/plugins/parameters/ParametersMain.py -------------------------------------------------------------------------------- /tests/plugins/run_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/plugins/run_all.py -------------------------------------------------------------------------------- /tests/programs/dash_import/dash-module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/programs/dash_import/dash-module.py -------------------------------------------------------------------------------- /tests/programs/dash_import/plus+module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/programs/dash_import/plus+module.py -------------------------------------------------------------------------------- /tests/programs/dash_main/Dash-Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/programs/dash_main/Dash-Main.py -------------------------------------------------------------------------------- /tests/programs/deep/DeepProgramMain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/programs/deep/DeepProgramMain.py -------------------------------------------------------------------------------- /tests/programs/main_raises/ErrorMain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/programs/main_raises/ErrorMain.py -------------------------------------------------------------------------------- /tests/programs/main_raises/ErrorRaising.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/programs/main_raises/ErrorRaising.py -------------------------------------------------------------------------------- /tests/programs/main_raises2/ErrorRaising.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/programs/main_raises2/ErrorRaising.py -------------------------------------------------------------------------------- /tests/programs/module_exits/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/programs/module_exits/Main.py -------------------------------------------------------------------------------- /tests/programs/package_overload/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/programs/package_overload/Main.py -------------------------------------------------------------------------------- /tests/programs/package_overload/foo/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/programs/package_overload/foo/bar.py -------------------------------------------------------------------------------- /tests/programs/package_overload/foo/bar2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/programs/package_overload/foo/bar2.py -------------------------------------------------------------------------------- /tests/programs/pkgutil_usage/package/DATA_FILE.txt: -------------------------------------------------------------------------------- 1 | DATA_CONTENT 2 | -------------------------------------------------------------------------------- /tests/programs/pkgutil_usage/package/DATA_FILE2.txt: -------------------------------------------------------------------------------- 1 | DATA_CONTENT2 2 | -------------------------------------------------------------------------------- /tests/programs/pkgutil_usage/package/DATA_FILE3.txt: -------------------------------------------------------------------------------- 1 | DATA_CONTENT3 2 | -------------------------------------------------------------------------------- /tests/programs/plugin_import/some_package/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/programs/relative_import/dircache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/programs/relative_import/dircache.py -------------------------------------------------------------------------------- /tests/programs/resource_reader37/some_package/DATA_FILE.txt: -------------------------------------------------------------------------------- 1 | DATA_CONTENT 2 | -------------------------------------------------------------------------------- /tests/programs/run_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/programs/run_all.py -------------------------------------------------------------------------------- /tests/programs/stdlib_overload/pyexpat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/programs/stdlib_overload/pyexpat.py -------------------------------------------------------------------------------- /tests/programs/unicode_bom/unicode_bom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/programs/unicode_bom/unicode_bom.py -------------------------------------------------------------------------------- /tests/programs/with space/Space Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/programs/with space/Space Main.py -------------------------------------------------------------------------------- /tests/reflected/compile_itself.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/reflected/compile_itself.py -------------------------------------------------------------------------------- /tests/run-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/run-tests -------------------------------------------------------------------------------- /tests/standalone/BrotliUsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/BrotliUsing.py -------------------------------------------------------------------------------- /tests/standalone/CtypesUsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/CtypesUsing.py -------------------------------------------------------------------------------- /tests/standalone/DateutilsUsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/DateutilsUsing.py -------------------------------------------------------------------------------- /tests/standalone/FlaskUsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/FlaskUsing.py -------------------------------------------------------------------------------- /tests/standalone/GiUsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/GiUsing.py -------------------------------------------------------------------------------- /tests/standalone/GlfwUsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/GlfwUsing.py -------------------------------------------------------------------------------- /tests/standalone/GtkUsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/GtkUsing.py -------------------------------------------------------------------------------- /tests/standalone/HexEncodingTest_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/HexEncodingTest_2.py -------------------------------------------------------------------------------- /tests/standalone/IdnaUsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/IdnaUsing.py -------------------------------------------------------------------------------- /tests/standalone/LxmlUsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/LxmlUsing.py -------------------------------------------------------------------------------- /tests/standalone/MatplotlibUsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/MatplotlibUsing.py -------------------------------------------------------------------------------- /tests/standalone/MetadataPackagesUsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/MetadataPackagesUsing.py -------------------------------------------------------------------------------- /tests/standalone/NumpyUsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/NumpyUsing.py -------------------------------------------------------------------------------- /tests/standalone/OpenGLUsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/OpenGLUsing.py -------------------------------------------------------------------------------- /tests/standalone/PandasUsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/PandasUsing.py -------------------------------------------------------------------------------- /tests/standalone/PasslibUsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/PasslibUsing.py -------------------------------------------------------------------------------- /tests/standalone/PendulumUsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/PendulumUsing.py -------------------------------------------------------------------------------- /tests/standalone/PmwUsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/PmwUsing.py -------------------------------------------------------------------------------- /tests/standalone/PyQt5Plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/PyQt5Plugins.py -------------------------------------------------------------------------------- /tests/standalone/PyQt5SSLSupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/PyQt5SSLSupport.py -------------------------------------------------------------------------------- /tests/standalone/PyQt5Using.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/PyQt5Using.py -------------------------------------------------------------------------------- /tests/standalone/PyQt6Plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/PyQt6Plugins.py -------------------------------------------------------------------------------- /tests/standalone/PyQt6Using.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/PyQt6Using.py -------------------------------------------------------------------------------- /tests/standalone/PySide2Using.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/PySide2Using.py -------------------------------------------------------------------------------- /tests/standalone/PySide6Plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/PySide6Plugins.py -------------------------------------------------------------------------------- /tests/standalone/PySide6Using.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/PySide6Using.py -------------------------------------------------------------------------------- /tests/standalone/RsaUsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/RsaUsing.py -------------------------------------------------------------------------------- /tests/standalone/SetuptoolsUsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/SetuptoolsUsing.py -------------------------------------------------------------------------------- /tests/standalone/ShlibUsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/ShlibUsing.py -------------------------------------------------------------------------------- /tests/standalone/SocketUsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/SocketUsing.py -------------------------------------------------------------------------------- /tests/standalone/TkInterUsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/TkInterUsing.py -------------------------------------------------------------------------------- /tests/standalone/Urllib3Using.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/Urllib3Using.py -------------------------------------------------------------------------------- /tests/standalone/Win32ComUsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/Win32ComUsing.py -------------------------------------------------------------------------------- /tests/standalone/run_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/standalone/run_all.py -------------------------------------------------------------------------------- /tests/syntax/AsyncgenReturn36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/AsyncgenReturn36.py -------------------------------------------------------------------------------- /tests/syntax/AwaitInModule36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/AwaitInModule36.py -------------------------------------------------------------------------------- /tests/syntax/BreakWithoutLoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/BreakWithoutLoop.py -------------------------------------------------------------------------------- /tests/syntax/ClassReturn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/ClassReturn.py -------------------------------------------------------------------------------- /tests/syntax/ClosureDel_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/ClosureDel_2.py -------------------------------------------------------------------------------- /tests/syntax/ContinueWithoutLoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/ContinueWithoutLoop.py -------------------------------------------------------------------------------- /tests/syntax/DuplicateArgument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/DuplicateArgument.py -------------------------------------------------------------------------------- /tests/syntax/ExecWithNesting_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/ExecWithNesting_2.py -------------------------------------------------------------------------------- /tests/syntax/FutureBraces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/FutureBraces.py -------------------------------------------------------------------------------- /tests/syntax/FutureUnknown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/FutureUnknown.py -------------------------------------------------------------------------------- /tests/syntax/GeneratorExpressions38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/GeneratorExpressions38.py -------------------------------------------------------------------------------- /tests/syntax/GeneratorReturn_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/GeneratorReturn_2.py -------------------------------------------------------------------------------- /tests/syntax/GlobalForParameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/GlobalForParameter.py -------------------------------------------------------------------------------- /tests/syntax/Importing32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/Importing32.py -------------------------------------------------------------------------------- /tests/syntax/IndentationError.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/IndentationError.py -------------------------------------------------------------------------------- /tests/syntax/LateFutureImport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/LateFutureImport.py -------------------------------------------------------------------------------- /tests/syntax/MisplacedFutureImport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/MisplacedFutureImport.py -------------------------------------------------------------------------------- /tests/syntax/ModuleReturn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/ModuleReturn.py -------------------------------------------------------------------------------- /tests/syntax/NonAsciiWithoutEncoding_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/NonAsciiWithoutEncoding_2.py -------------------------------------------------------------------------------- /tests/syntax/NonlocalForParameter32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/NonlocalForParameter32.py -------------------------------------------------------------------------------- /tests/syntax/NonlocalNotFound32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/NonlocalNotFound32.py -------------------------------------------------------------------------------- /tests/syntax/StarImportExtra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/StarImportExtra.py -------------------------------------------------------------------------------- /tests/syntax/SyntaxError.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/SyntaxError.py -------------------------------------------------------------------------------- /tests/syntax/TryExceptAllNotLast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/TryExceptAllNotLast.py -------------------------------------------------------------------------------- /tests/syntax/TryFinallyContinue_37.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/TryFinallyContinue_37.py -------------------------------------------------------------------------------- /tests/syntax/UnpackNoTuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/UnpackNoTuple.py -------------------------------------------------------------------------------- /tests/syntax/UnpackTwoStars32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/UnpackTwoStars32.py -------------------------------------------------------------------------------- /tests/syntax/YieldFromInModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/YieldFromInModule.py -------------------------------------------------------------------------------- /tests/syntax/YieldInAsync35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/YieldInAsync35.py -------------------------------------------------------------------------------- /tests/syntax/YieldInGenexp38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/YieldInGenexp38.py -------------------------------------------------------------------------------- /tests/syntax/YieldInModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/YieldInModule.py -------------------------------------------------------------------------------- /tests/syntax/run_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/syntax/run_all.py -------------------------------------------------------------------------------- /tests/test-runners/run_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/test-runners/run_all.py -------------------------------------------------------------------------------- /tests/type_inference/Test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/type_inference/Test1.py -------------------------------------------------------------------------------- /tests/type_inference/Test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/type_inference/Test2.py -------------------------------------------------------------------------------- /tests/type_inference/Test3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/type_inference/Test3.py -------------------------------------------------------------------------------- /tests/type_inference/Test4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasmerio/py2wasm/HEAD/tests/type_inference/Test4.py --------------------------------------------------------------------------------