Nuitka-winsvc 2.5.6__tar.gz → 2.6.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of Nuitka-winsvc might be problematic. Click here for more details.
- nuitka_winsvc-2.6.5/Developer_Manual.rst +4683 -0
- nuitka_winsvc-2.6.5/MANIFEST.in +57 -0
- nuitka_winsvc-2.6.5/Nuitka_winsvc.egg-info/PKG-INFO +110 -0
- nuitka_winsvc-2.6.5/Nuitka_winsvc.egg-info/SOURCES.txt +1680 -0
- nuitka_winsvc-2.6.5/PKG-INFO +110 -0
- nuitka_winsvc-2.6.5/README.md +55 -0
- nuitka_winsvc-2.6.5/README.rst +1919 -0
- nuitka_winsvc-2.6.5/bin/autoformat-nuitka-source +35 -0
- nuitka_winsvc-2.6.5/bin/check-nuitka-with-pylint +35 -0
- nuitka_winsvc-2.6.5/bin/compare_with_cpython +37 -0
- nuitka_winsvc-2.6.5/bin/compare_with_xml +108 -0
- nuitka_winsvc-2.6.5/bin/measure-construct-performance +35 -0
- nuitka_winsvc-2.6.5/bin/nuitka +50 -0
- nuitka_winsvc-2.6.5/bin/nuitka-run +50 -0
- nuitka_winsvc-2.6.5/doc/nuitka-run.1 +64 -0
- nuitka_winsvc-2.6.5/doc/nuitka.1 +2180 -0
- nuitka_winsvc-2.6.5/lib/hints.py +165 -0
- nuitka_winsvc-2.6.5/misc/nuitka-run.cmd +24 -0
- nuitka_winsvc-2.6.5/misc/nuitka.cmd +30 -0
- nuitka_winsvc-2.6.5/nuitka/Builtins.py +259 -0
- nuitka_winsvc-2.6.5/nuitka/BytecodeCaching.py +184 -0
- nuitka_winsvc-2.6.5/nuitka/Bytecodes.py +109 -0
- nuitka_winsvc-2.6.5/nuitka/CacheCleanup.py +54 -0
- nuitka_winsvc-2.6.5/nuitka/Constants.py +425 -0
- nuitka_winsvc-2.6.5/nuitka/Errors.py +89 -0
- nuitka_winsvc-2.6.5/nuitka/HardImportRegistry.py +408 -0
- nuitka_winsvc-2.6.5/nuitka/MainControl.py +1192 -0
- nuitka_winsvc-2.6.5/nuitka/ModuleRegistry.py +349 -0
- nuitka_winsvc-2.6.5/nuitka/OptionParsing.py +2394 -0
- nuitka_winsvc-2.6.5/nuitka/Options.py +2819 -0
- nuitka_winsvc-2.6.5/nuitka/OutputDirectories.py +186 -0
- nuitka_winsvc-2.6.5/nuitka/PostProcessing.py +540 -0
- nuitka_winsvc-2.6.5/nuitka/Progress.py +252 -0
- nuitka_winsvc-2.6.5/nuitka/PythonFlavors.py +427 -0
- nuitka_winsvc-2.6.5/nuitka/PythonOperators.py +146 -0
- nuitka_winsvc-2.6.5/nuitka/PythonVersions.py +511 -0
- nuitka_winsvc-2.6.5/nuitka/Serialization.py +291 -0
- nuitka_winsvc-2.6.5/nuitka/SourceCodeReferences.py +176 -0
- nuitka_winsvc-2.6.5/nuitka/Tracing.py +537 -0
- nuitka_winsvc-2.6.5/nuitka/TreeXML.py +140 -0
- nuitka_winsvc-2.6.5/nuitka/Variables.py +519 -0
- nuitka_winsvc-2.6.5/nuitka/Version.py +88 -0
- nuitka_winsvc-2.6.5/nuitka/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/__main__.py +224 -0
- nuitka_winsvc-2.6.5/nuitka/__past__.py +217 -0
- nuitka_winsvc-2.6.5/nuitka/build/Backend.scons +1113 -0
- nuitka_winsvc-2.6.5/nuitka/build/CCompilerVersion.scons +281 -0
- nuitka_winsvc-2.6.5/nuitka/build/DataComposerInterface.py +116 -0
- nuitka_winsvc-2.6.5/nuitka/build/Offsets.scons +644 -0
- nuitka_winsvc-2.6.5/nuitka/build/Onefile.scons +562 -0
- nuitka_winsvc-2.6.5/nuitka/build/SconsCaching.py +451 -0
- nuitka_winsvc-2.6.5/nuitka/build/SconsCompilerSettings.py +1089 -0
- nuitka_winsvc-2.6.5/nuitka/build/SconsHacks.py +215 -0
- nuitka_winsvc-2.6.5/nuitka/build/SconsInterface.py +647 -0
- nuitka_winsvc-2.6.5/nuitka/build/SconsProgress.py +100 -0
- nuitka_winsvc-2.6.5/nuitka/build/SconsSpawn.py +440 -0
- nuitka_winsvc-2.6.5/nuitka/build/SconsUtils.py +889 -0
- nuitka_winsvc-2.6.5/nuitka/build/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/allocator.h +450 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/builtins.h +97 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/calling.h +123 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/checkers.h +39 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/checksum_tools.h +28 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/compiled_asyncgen.h +281 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/compiled_cell.h +64 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/compiled_coroutine.h +271 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/compiled_frame.h +502 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/compiled_function.h +171 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/compiled_generator.h +267 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/compiled_method.h +54 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/constants.h +251 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/constants_blob.h +34 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/debug_settings.h +60 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/environment_variables.h +30 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/environment_variables_system.h +45 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/exception_groups.h +167 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/exceptions.h +1458 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/filesystem_paths.h +105 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/freelists.h +92 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/attributes.h +90 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/boolean.h +86 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/bytearrays.h +34 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/bytes.h +28 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/calling_generated.h +132 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/comparisons_dual_eq.h +47 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/comparisons_dual_ge.h +39 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/comparisons_dual_gt.h +39 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/comparisons_dual_le.h +47 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/comparisons_dual_lt.h +47 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/comparisons_dual_ne.h +39 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/comparisons_eq.h +247 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/comparisons_ge.h +197 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/comparisons_gt.h +197 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/comparisons_le.h +247 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/comparisons_lt.h +247 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/comparisons_ne.h +197 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/complex.h +46 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/dictionaries.h +476 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/floats.h +32 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/import_hard.h +121 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/indexes.h +47 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/ints.h +165 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/iterators.h +376 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/lists.h +94 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/lists_generated.h +36 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/mappings.h +39 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations.h +114 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_binary_add.h +240 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_binary_bitand.h +108 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_binary_bitor.h +108 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_binary_bitxor.h +108 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_binary_divmod.h +103 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_binary_dual_add.h +34 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_binary_floordiv.h +103 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_binary_lshift.h +99 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_binary_matmult.h +60 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_binary_mod.h +304 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_binary_mult.h +247 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_binary_olddiv.h +125 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_binary_pow.h +90 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_binary_rshift.h +99 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_binary_sub.h +117 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_binary_truediv.h +103 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_builtin_types.h +247 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_inplace_add.h +173 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_inplace_bitand.h +76 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_inplace_bitor.h +76 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_inplace_bitxor.h +76 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_inplace_floordiv.h +95 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_inplace_lshift.h +62 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_inplace_matmult.h +60 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_inplace_mod.h +218 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_inplace_mult.h +184 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_inplace_olddiv.h +115 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_inplace_pow.h +87 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_inplace_rshift.h +62 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_inplace_sub.h +102 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/operations_inplace_truediv.h +95 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/raising.h +114 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/rangeobjects.h +66 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/richcomparisons.h +35 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/sequences.h +33 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/sets.h +25 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/slices.h +314 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/strings.h +30 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/subscripts.h +390 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helper/tuples.h +187 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/helpers.h +417 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/importing.h +149 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/jit_sources.h +25 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/prelude.h +586 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/printing.h +80 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/python_pgo.h +57 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/safe_string_ops.h +52 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/threading.h +142 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/tracing.h +82 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/type_aliases.h +30 -0
- nuitka_winsvc-2.6.5/nuitka/build/include/nuitka/unfreezing.h +91 -0
- nuitka_winsvc-2.6.5/nuitka/build/inline_copy/pefile/LICENSE.txt +21 -0
- nuitka_winsvc-2.6.5/nuitka/build/inline_copy/pefile/ordlookup/__init__.py +41 -0
- nuitka_winsvc-2.6.5/nuitka/build/inline_copy/pefile/ordlookup/oleaut32.py +400 -0
- nuitka_winsvc-2.6.5/nuitka/build/inline_copy/pefile/ordlookup/ws2_32.py +120 -0
- nuitka_winsvc-2.6.5/nuitka/build/inline_copy/pefile/pefile.py +8034 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/CompiledAsyncgenType.c +2218 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/CompiledCellType.c +300 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/CompiledCodeHelpers.c +2202 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/CompiledCoroutineType.c +1948 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/CompiledFrameType.c +1337 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/CompiledFunctionType.c +3231 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/CompiledGeneratorType.c +1879 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/CompiledGeneratorTypeUncompiledIntegration.c +2117 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/CompiledMethodType.c +608 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/GenerateHeadersMain.c +30 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersAllocator.c +939 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersAttributes.c +1241 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersBuiltin.c +899 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersBuiltinTypeMethods.c +3594 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersBytes.c +107 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersCalling.c +397 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersCallingGenerated.c +14361 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersChecksumTools.c +59 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersClasses.c +91 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersComparisonDualEq.c +183 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersComparisonDualGe.c +121 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersComparisonDualGt.c +121 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersComparisonDualLe.c +183 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersComparisonDualLt.c +183 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersComparisonDualNe.c +121 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersComparisonEq.c +12070 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersComparisonEqUtils.c +169 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersComparisonGe.c +11871 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersComparisonGt.c +11855 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersComparisonLe.c +11957 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersComparisonLt.c +11941 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersComparisonNe.c +11979 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersConsole.c +122 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersConstantsBlob.c +1477 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersDeepcopy.c +636 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersDictionaries.c +1627 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersDictionariesGenerated.c +745 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersDumpBacktraces.c +63 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersEnvironmentVariables.c +65 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersEnvironmentVariablesSystem.c +93 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersExceptions.c +298 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersFiles.c +353 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersFilesystemPaths.c +1089 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersFloats.c +92 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersHeapStorage.c +68 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersImport.c +506 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersImportHard.c +526 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersJitSources.c +46 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersLists.c +899 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersListsGenerated.c +564 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersMappings.c +46 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersMatching.c +192 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationBinaryAdd.c +6477 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationBinaryAddUtils.c +703 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationBinaryBitand.c +2738 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationBinaryBitor.c +2738 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationBinaryBitxor.c +2738 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationBinaryDivmod.c +2406 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationBinaryDivmodUtils.c +33 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationBinaryDualAdd.c +172 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationBinaryFloordiv.c +2422 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationBinaryInplaceAdd.c +220 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationBinaryLshift.c +2846 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationBinaryMatmult.c +453 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationBinaryMod.c +6549 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationBinaryMult.c +6438 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationBinaryMultUtils.c +125 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationBinaryOlddiv.c +2355 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationBinaryPow.c +2743 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationBinaryPowUtils.c +26 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationBinaryRshift.c +2706 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationBinarySub.c +2649 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationBinaryTruediv.c +2415 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationInplaceAdd.c +5211 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationInplaceAddUtils.c +144 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationInplaceBitand.c +1826 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationInplaceBitor.c +1826 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationInplaceBitxor.c +1826 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationInplaceFloordiv.c +2605 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationInplaceLshift.c +1594 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationInplaceMatmult.c +603 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationInplaceMod.c +4762 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationInplaceMult.c +4689 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationInplaceOlddiv.c +2553 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationInplacePow.c +2807 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationInplaceRshift.c +1534 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationInplaceSub.c +2894 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersOperationInplaceTruediv.c +2612 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersProfiling.c +104 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersPythonPgo.c +113 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersRaising.c +449 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersSafeStrings.c +150 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersSequences.c +134 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersSlices.c +73 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersStrings.c +998 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersTuples.c +148 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/HelpersTypes.c +329 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/InspectPatcher.c +436 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/MainProgram.c +1941 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/MetaPathBasedLoader.c +2106 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/MetaPathBasedLoaderImportlibMetadataDistribution.c +122 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/MetaPathBasedLoaderResourceReader.c +158 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/MetaPathBasedLoaderResourceReaderFiles.c +785 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/OnefileBootstrap.c +1449 -0
- nuitka_winsvc-2.6.5/nuitka/build/static_src/OnefileSplashScreen.cpp +275 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/AsyncgenCodes.py +186 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/AttributeCodes.py +357 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/BinaryOperationHelperDefinitions.py +720 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/BranchCodes.py +67 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/BuiltinCodes.py +529 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/CallCodes.py +1186 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/ClassCodes.py +156 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/CodeGeneration.py +1078 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/CodeHelperSelection.py +81 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/CodeHelpers.py +455 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/CodeObjectCodes.py +165 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/ComparisonCodes.py +569 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/ComparisonHelperDefinitions.py +146 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/ConditionalCodes.py +236 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/ConstantCodes.py +243 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/Contexts.py +1248 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/CoroutineCodes.py +253 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/CtypesCodes.py +46 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/DictCodes.py +918 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/Emission.py +75 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/ErrorCodes.py +281 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/EvalCodes.py +444 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/ExceptionCodes.py +337 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/ExpressionCTypeSelectionHelpers.py +227 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/ExpressionCodes.py +61 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/FrameCodes.py +518 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/FunctionCodes.py +858 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/GeneratorCodes.py +218 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/GlobalConstants.py +249 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/GlobalsLocalsCodes.py +211 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/IdCodes.py +53 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/ImportCodes.py +468 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/Indentation.py +45 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/IndexCodes.py +50 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/InjectCCodes.py +28 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/IntegerCodes.py +110 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/IteratorCodes.py +378 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/JitCodes.py +44 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/LabelCodes.py +67 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/LineNumberCodes.py +91 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/ListCodes.py +502 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/LoaderCodes.py +193 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/LocalsDictCodes.py +353 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/LoopCodes.py +88 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/MatchCodes.py +67 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/ModuleCodes.py +247 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/Namify.py +260 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/NetworkxCodes.py +51 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/OperationCodes.py +398 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/PackageResourceCodes.py +986 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/PrintCodes.py +93 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/PythonAPICodes.py +215 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/RaisingCodes.py +481 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/Reports.py +115 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/ReturnCodes.py +143 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/SetCodes.py +196 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/SliceCodes.py +465 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/StringCodes.py +303 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/SubscriptCodes.py +263 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/TensorflowCodes.py +54 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/TryCodes.py +326 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/TupleCodes.py +115 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/TypeAliasCodes.py +120 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/VariableCodes.py +520 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/VariableDeclarations.py +279 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/YieldCodes.py +253 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/c_types/CTypeBases.py +177 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/c_types/CTypeBooleans.py +104 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/c_types/CTypeCFloats.py +57 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/c_types/CTypeCLongs.py +45 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/c_types/CTypeModuleDictVariables.py +109 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/c_types/CTypeNuitkaBooleans.py +150 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/c_types/CTypeNuitkaInts.py +200 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/c_types/CTypeNuitkaVoids.py +107 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/c_types/CTypePyObjectPointers.py +572 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/c_types/CTypeVoids.py +92 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/c_types/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates/CodeTemplatesAsyncgens.py +106 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates/CodeTemplatesConstants.py +305 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates/CodeTemplatesCoroutines.py +109 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates/CodeTemplatesExceptions.py +84 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates/CodeTemplatesFrames.py +235 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates/CodeTemplatesFunction.py +117 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates/CodeTemplatesGeneratorFunction.py +130 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates/CodeTemplatesIterators.py +40 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates/CodeTemplatesLoader.py +180 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates/CodeTemplatesModules.py +778 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates/CodeTemplatesVariables.py +386 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates/TemplateDebugWrapper.py +80 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/CodeTemplateCallsMethodPositional.c.j2 +321 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/CodeTemplateCallsMixed.c.j2 +143 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/CodeTemplateCallsPositional.c.j2 +677 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/CodeTemplateCallsPositionalMethodDescr.c.j2 +165 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/CodeTemplateMakeListHinted.c.j2 +38 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/CodeTemplateMakeListSmall.c.j2 +41 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperBuiltinMethodOperation.c.j2 +53 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperDictionaryCopy.c.j2 +379 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperImportHard.c.j2 +37 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperLongTools.c.j2 +53 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperObjectTools.c.j2 +20 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperOperationBinary.c.j2 +148 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperOperationBinaryDual.c.j2 +115 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperOperationComparison.c.j2 +352 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperOperationComparisonBytes.c.j2 +115 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperOperationComparisonDual.c.j2 +86 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperOperationComparisonFloat.c.j2 +31 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperOperationComparisonInt.c.j2 +32 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperOperationComparisonList.c.j2 +112 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperOperationComparisonLong.c.j2 +157 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperOperationComparisonStr.c.j2 +115 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperOperationComparisonTuple.c.j2 +99 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperOperationComparisonUnicode.c.j2 +115 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperOperationInplace.c.j2 +281 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperSlotsBinary.c.j2 +420 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperSlotsBytes.c.j2 +51 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperSlotsCommon.c.j2 +71 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperSlotsFloat.c.j2 +327 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperSlotsInt.c.j2 +411 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperSlotsList.c.j2 +59 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperSlotsLong.c.j2 +229 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperSlotsSet.c.j2 +47 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperSlotsStr.c.j2 +55 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperSlotsTuple.c.j2 +58 -0
- nuitka_winsvc-2.6.5/nuitka/code_generation/templates_c/HelperSlotsUnicode.c.j2 +62 -0
- nuitka_winsvc-2.6.5/nuitka/containers/Namedtuples.py +51 -0
- nuitka_winsvc-2.6.5/nuitka/containers/OrderedSetsFallback.py +139 -0
- nuitka_winsvc-2.6.5/nuitka/containers/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/distutils/Build.py +76 -0
- nuitka_winsvc-2.6.5/nuitka/distutils/DistutilCommands.py +443 -0
- nuitka_winsvc-2.6.5/nuitka/distutils/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/finalizations/Finalization.py +35 -0
- nuitka_winsvc-2.6.5/nuitka/finalizations/FinalizeMarkups.py +136 -0
- nuitka_winsvc-2.6.5/nuitka/finalizations/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/freezer/DependsExe.py +257 -0
- nuitka_winsvc-2.6.5/nuitka/freezer/DllDependenciesCommon.py +97 -0
- nuitka_winsvc-2.6.5/nuitka/freezer/DllDependenciesMacOS.py +444 -0
- nuitka_winsvc-2.6.5/nuitka/freezer/DllDependenciesPosix.py +242 -0
- nuitka_winsvc-2.6.5/nuitka/freezer/DllDependenciesWin32.py +315 -0
- nuitka_winsvc-2.6.5/nuitka/freezer/ImportDetection.py +359 -0
- nuitka_winsvc-2.6.5/nuitka/freezer/IncludedDataFiles.py +681 -0
- nuitka_winsvc-2.6.5/nuitka/freezer/IncludedEntryPoints.py +376 -0
- nuitka_winsvc-2.6.5/nuitka/freezer/Onefile.py +296 -0
- nuitka_winsvc-2.6.5/nuitka/freezer/Standalone.py +440 -0
- nuitka_winsvc-2.6.5/nuitka/freezer/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/importing/IgnoreListing.py +449 -0
- nuitka_winsvc-2.6.5/nuitka/importing/ImportCache.py +95 -0
- nuitka_winsvc-2.6.5/nuitka/importing/ImportResolving.py +189 -0
- nuitka_winsvc-2.6.5/nuitka/importing/Importing.py +1097 -0
- nuitka_winsvc-2.6.5/nuitka/importing/PreloadedPackages.py +164 -0
- nuitka_winsvc-2.6.5/nuitka/importing/Recursion.py +607 -0
- nuitka_winsvc-2.6.5/nuitka/importing/StandardLibrary.py +429 -0
- nuitka_winsvc-2.6.5/nuitka/importing/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/AsyncgenNodes.py +107 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/AttributeLookupNodes.py +124 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/AttributeNodes.py +386 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/AttributeNodesGenerated.py +10734 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/BuiltinAllNodes.py +115 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/BuiltinAnyNodes.py +124 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/BuiltinComplexNodes.py +83 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/BuiltinDecodingNodes.py +52 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/BuiltinDecoratorNodes.py +85 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/BuiltinDictNodes.py +140 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/BuiltinFormatNodes.py +159 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/BuiltinHashNodes.py +63 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/BuiltinInputNodes.py +39 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/BuiltinIntegerNodes.py +170 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/BuiltinIteratorNodes.py +391 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/BuiltinLenNodes.py +61 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/BuiltinNextNodes.py +111 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/BuiltinOpenNodes.py +148 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/BuiltinOperationNodeBasesGenerated.py +7367 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/BuiltinRangeNodes.py +690 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/BuiltinRefNodes.py +314 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/BuiltinSumNodes.py +104 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/BuiltinTypeNodes.py +452 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/BuiltinVarsNodes.py +44 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/BytesNodes.py +829 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/CallNodes.py +217 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/Checkers.py +55 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/ChildrenHavingMixins.py +21576 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/ClassNodes.py +286 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/CodeObjectSpecs.py +230 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/ComparisonNodes.py +687 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/ConditionalNodes.py +884 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/ConstantRefNodes.py +1717 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/ContainerMakingNodes.py +408 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/ContainerOperationNodes.py +87 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/CoroutineNodes.py +144 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/CtypesNodes.py +51 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/DictionaryNodes.py +1513 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/ExceptionNodes.py +363 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/ExecEvalNodes.py +229 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/ExpressionBases.py +1301 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/ExpressionBasesGenerated.py +2103 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/ExpressionShapeMixins.py +886 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/FrameNodes.py +413 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/FunctionAttributeNodes.py +102 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/FunctionNodes.py +1303 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/FutureSpecs.py +224 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/GeneratorNodes.py +201 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/GlobalsLocalsNodes.py +209 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/HardImportNodesGenerated.py +3599 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/ImportHardNodes.py +185 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/ImportNodes.py +1359 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/IndicatorMixins.py +79 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/InjectCNodes.py +51 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/IterationHandles.py +407 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/KeyValuePairNodes.py +378 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/ListOperationNodes.py +525 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/LocalsDictNodes.py +717 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/LocalsScopes.py +505 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/LoopNodes.py +445 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/MatchNodes.py +60 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/ModuleAttributeNodes.py +180 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/ModuleNodes.py +1132 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/NetworkxNodes.py +45 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/NodeBases.py +889 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/NodeMakingHelpers.py +481 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/NodeMetaClasses.py +170 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/OperatorNodes.py +944 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/OperatorNodesUnary.py +403 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/OsSysNodes.py +215 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/OutlineNodes.py +372 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/PackageMetadataNodes.py +981 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/PackageResourceNodes.py +424 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/PrintNodes.py +105 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/ReturnNodes.py +255 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/SideEffectNodes.py +139 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/SliceNodes.py +386 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/StatementBasesGenerated.py +3419 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/StatementNodes.py +316 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/StrNodes.py +919 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/StringConcatenationNodes.py +103 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/SubscriptNodes.py +245 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/TensorflowNodes.py +38 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/TryNodes.py +519 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/TypeMatchNodes.py +65 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/TypeNodes.py +390 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/VariableAssignNodes.py +1177 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/VariableDelNodes.py +320 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/VariableNameNodes.py +153 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/VariableRefNodes.py +895 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/VariableReleaseNodes.py +153 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/YieldNodes.py +121 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/shapes/BuiltinTypeShapes.py +4290 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/shapes/ControlFlowDescriptions.py +199 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/shapes/IteratorShapes.py +71 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/shapes/ShapeMixins.py +255 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/shapes/StandardShapes.py +1384 -0
- nuitka_winsvc-2.6.5/nuitka/nodes/shapes/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/optimizations/BytecodeDemotion.py +105 -0
- nuitka_winsvc-2.6.5/nuitka/optimizations/FunctionInlining.py +110 -0
- nuitka_winsvc-2.6.5/nuitka/optimizations/Graphs.py +70 -0
- nuitka_winsvc-2.6.5/nuitka/optimizations/Optimization.py +363 -0
- nuitka_winsvc-2.6.5/nuitka/optimizations/OptimizeBuiltinCalls.py +1582 -0
- nuitka_winsvc-2.6.5/nuitka/optimizations/Tags.py +76 -0
- nuitka_winsvc-2.6.5/nuitka/optimizations/TraceCollections.py +1257 -0
- nuitka_winsvc-2.6.5/nuitka/optimizations/ValueTraces.py +980 -0
- nuitka_winsvc-2.6.5/nuitka/optimizations/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/pgo/PGO.py +160 -0
- nuitka_winsvc-2.6.5/nuitka/pgo/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/PluginBase.py +1871 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/Plugins.py +1976 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/YamlPluginBase.py +121 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/AntiBloatPlugin.py +988 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/ConsiderPyLintAnnotationsPlugin.py +95 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/DataFilesPlugin.py +311 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/DelvewheelPlugin.py +150 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/DillPlugin/DillPlugin.c +37 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/DillPlugin/dill-postLoad.py +256 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/DillPlugin.py +76 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/DllFilesPlugin.py +527 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/EnumPlugin.py +64 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/EventletPlugin.py +57 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/GeventPlugin.py +64 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/GiPlugin.py +118 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/GlfwPlugin.py +138 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/ImplicitImports.py +796 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/KivyPlugin.py +141 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/MatplotlibPlugin.py +256 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/MultiprocessingPlugin.py +199 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/NumpyPlugin.py +35 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/OptionsNannyPlugin.py +158 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/PbrPlugin.py +62 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/PkgResourcesPlugin.py +157 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/PlaywrightPlugin.py +179 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/PmwPlugin.py +248 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/PySidePyQtPlugin.py +1496 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/PywebViewPlugin.py +81 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/SpacyPlugin.py +137 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/TensorflowPlugin.py +35 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/TkinterPlugin.py +371 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/TorchPlugin.py +35 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/TransformersPlugin.py +121 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/TrioPlugin.py +33 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/UpxPlugin.py +174 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/plugins/standard/standard.nuitka-package.config.yml +8935 -0
- nuitka_winsvc-2.6.5/nuitka/reports/CompilationReportReader.py +83 -0
- nuitka_winsvc-2.6.5/nuitka/reports/LicenseReport.rst.j2 +41 -0
- nuitka_winsvc-2.6.5/nuitka/reports/Reports.py +941 -0
- nuitka_winsvc-2.6.5/nuitka/reports/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/specs/BuiltinBytesOperationSpecs.py +180 -0
- nuitka_winsvc-2.6.5/nuitka/specs/BuiltinDictOperationSpecs.py +82 -0
- nuitka_winsvc-2.6.5/nuitka/specs/BuiltinListOperationSpecs.py +80 -0
- nuitka_winsvc-2.6.5/nuitka/specs/BuiltinParameterSpecs.py +831 -0
- nuitka_winsvc-2.6.5/nuitka/specs/BuiltinStrOperationSpecs.py +181 -0
- nuitka_winsvc-2.6.5/nuitka/specs/BuiltinTypeOperationSpecs.py +34 -0
- nuitka_winsvc-2.6.5/nuitka/specs/BuiltinUnicodeOperationSpecs.py +123 -0
- nuitka_winsvc-2.6.5/nuitka/specs/HardImportSpecs.py +236 -0
- nuitka_winsvc-2.6.5/nuitka/specs/ParameterSpecs.py +630 -0
- nuitka_winsvc-2.6.5/nuitka/specs/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/tools/Basics.py +55 -0
- nuitka_winsvc-2.6.5/nuitka/tools/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/tools/commercial/__init__.py +21 -0
- nuitka_winsvc-2.6.5/nuitka/tools/data_composer/DataComposer.py +589 -0
- nuitka_winsvc-2.6.5/nuitka/tools/data_composer/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/tools/data_composer/__main__.py +41 -0
- nuitka_winsvc-2.6.5/nuitka/tools/environments/CreateEnvironment.py +69 -0
- nuitka_winsvc-2.6.5/nuitka/tools/environments/Virtualenv.py +158 -0
- nuitka_winsvc-2.6.5/nuitka/tools/environments/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/tools/general/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/tools/general/dll_report/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/tools/general/dll_report/__main__.py +83 -0
- nuitka_winsvc-2.6.5/nuitka/tools/general/find_module/FindModuleCode.py +127 -0
- nuitka_winsvc-2.6.5/nuitka/tools/general/find_module/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/tools/general/generate_header/GenerateHeader.py +73 -0
- nuitka_winsvc-2.6.5/nuitka/tools/general/generate_header/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/tools/onefile_compressor/OnefileCompressor.py +390 -0
- nuitka_winsvc-2.6.5/nuitka/tools/onefile_compressor/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/tools/onefile_compressor/__main__.py +41 -0
- nuitka_winsvc-2.6.5/nuitka/tools/podman/Podman.py +55 -0
- nuitka_winsvc-2.6.5/nuitka/tools/podman/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/tools/podman/__main__.py +424 -0
- nuitka_winsvc-2.6.5/nuitka/tools/profiler/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/tools/profiler/__main__.py +93 -0
- nuitka_winsvc-2.6.5/nuitka/tools/scanning/DisplayPackageDLLs.py +151 -0
- nuitka_winsvc-2.6.5/nuitka/tools/scanning/DisplayPackageData.py +73 -0
- nuitka_winsvc-2.6.5/nuitka/tools/scanning/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/tools/specialize/CTypeDescriptions.py +1928 -0
- nuitka_winsvc-2.6.5/nuitka/tools/specialize/Common.py +380 -0
- nuitka_winsvc-2.6.5/nuitka/tools/specialize/SpecializeC.py +1483 -0
- nuitka_winsvc-2.6.5/nuitka/tools/specialize/SpecializePython.py +1151 -0
- nuitka_winsvc-2.6.5/nuitka/tools/specialize/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/tools/testing/Common.py +2119 -0
- nuitka_winsvc-2.6.5/nuitka/tools/testing/Constructs.py +53 -0
- nuitka_winsvc-2.6.5/nuitka/tools/testing/OutputComparison.py +302 -0
- nuitka_winsvc-2.6.5/nuitka/tools/testing/Pythons.py +34 -0
- nuitka_winsvc-2.6.5/nuitka/tools/testing/RuntimeTracing.py +260 -0
- nuitka_winsvc-2.6.5/nuitka/tools/testing/SearchModes.py +208 -0
- nuitka_winsvc-2.6.5/nuitka/tools/testing/Valgrind.py +103 -0
- nuitka_winsvc-2.6.5/nuitka/tools/testing/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/tools/testing/check_reference_counts/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/tools/testing/check_reference_counts/__main__.py +107 -0
- nuitka_winsvc-2.6.5/nuitka/tools/testing/compare_with_cpython/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/tools/testing/compare_with_cpython/__main__.py +942 -0
- nuitka_winsvc-2.6.5/nuitka/tools/testing/find_sxs_modules/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/tools/testing/find_sxs_modules/__main__.py +73 -0
- nuitka_winsvc-2.6.5/nuitka/tools/testing/measure_construct_performance/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/tools/testing/measure_construct_performance/__main__.py +288 -0
- nuitka_winsvc-2.6.5/nuitka/tools/testing/run_nuitka_tests/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/tools/testing/run_nuitka_tests/__main__.py +1091 -0
- nuitka_winsvc-2.6.5/nuitka/tools/watch/AutoStage.py +145 -0
- nuitka_winsvc-2.6.5/nuitka/tools/watch/Common.py +55 -0
- nuitka_winsvc-2.6.5/nuitka/tools/watch/Conda.py +125 -0
- nuitka_winsvc-2.6.5/nuitka/tools/watch/GitHub.py +113 -0
- nuitka_winsvc-2.6.5/nuitka/tools/watch/Pacman.py +73 -0
- nuitka_winsvc-2.6.5/nuitka/tools/watch/Pipenv.py +143 -0
- nuitka_winsvc-2.6.5/nuitka/tools/watch/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/tools/watch/__main__.py +584 -0
- nuitka_winsvc-2.6.5/nuitka/tree/Building.py +1461 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ComplexCallHelperFunctions.py +2150 -0
- nuitka_winsvc-2.6.5/nuitka/tree/Extractions.py +48 -0
- nuitka_winsvc-2.6.5/nuitka/tree/FutureSpecState.py +71 -0
- nuitka_winsvc-2.6.5/nuitka/tree/InternalModule.py +96 -0
- nuitka_winsvc-2.6.5/nuitka/tree/Operations.py +45 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ReformulationAssertStatements.py +97 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ReformulationAssignmentStatements.py +1260 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ReformulationBooleanExpressions.py +97 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ReformulationCallExpressions.py +314 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ReformulationClasses.py +407 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ReformulationClasses3.py +1149 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ReformulationComparisonExpressions.py +174 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ReformulationContractionExpressions.py +676 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ReformulationDictionaryCreation.py +304 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ReformulationExecStatements.py +386 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ReformulationForLoopStatements.py +215 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ReformulationFunctionStatements.py +931 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ReformulationImportStatements.py +333 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ReformulationLambdaExpressions.py +185 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ReformulationMatchStatements.py +797 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ReformulationMultidist.py +80 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ReformulationNamespacePackages.py +239 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ReformulationPrintStatements.py +127 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ReformulationSequenceCreation.py +438 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ReformulationSubscriptExpressions.py +123 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ReformulationTryExceptStatements.py +418 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ReformulationTryFinallyStatements.py +239 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ReformulationWhileLoopStatements.py +160 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ReformulationWithStatements.py +382 -0
- nuitka_winsvc-2.6.5/nuitka/tree/ReformulationYieldExpressions.py +133 -0
- nuitka_winsvc-2.6.5/nuitka/tree/SourceHandling.py +476 -0
- nuitka_winsvc-2.6.5/nuitka/tree/SyntaxErrors.py +143 -0
- nuitka_winsvc-2.6.5/nuitka/tree/TreeHelpers.py +720 -0
- nuitka_winsvc-2.6.5/nuitka/tree/VariableClosure.py +483 -0
- nuitka_winsvc-2.6.5/nuitka/tree/__init__.py +19 -0
- nuitka_winsvc-2.6.5/nuitka/utils/AppDirs.py +104 -0
- nuitka_winsvc-2.6.5/nuitka/utils/CStrings.py +168 -0
- nuitka_winsvc-2.6.5/nuitka/utils/CommandLineOptions.py +207 -0
- nuitka_winsvc-2.6.5/nuitka/utils/Distributions.py +719 -0
- nuitka_winsvc-2.6.5/nuitka/utils/Download.py +217 -0
- nuitka_winsvc-2.6.5/nuitka/utils/Execution.py +517 -0
- nuitka_winsvc-2.6.5/nuitka/utils/FileOperations.py +1570 -0
- nuitka_winsvc-2.6.5/nuitka/utils/Hashing.py +137 -0
- nuitka_winsvc-2.6.5/nuitka/utils/Images.py +79 -0
- nuitka_winsvc-2.6.5/nuitka/utils/Importing.py +335 -0
- nuitka_winsvc-2.6.5/nuitka/utils/InlineCopies.py +52 -0
- nuitka_winsvc-2.6.5/nuitka/utils/InstalledPythons.py +254 -0
- nuitka_winsvc-2.6.5/nuitka/utils/InstanceCounters.py +86 -0
- nuitka_winsvc-2.6.5/nuitka/utils/Jinja2.py +158 -0
- nuitka_winsvc-2.6.5/nuitka/utils/Json.py +40 -0
- nuitka_winsvc-2.6.5/nuitka/utils/MacOSApp.py +133 -0
- nuitka_winsvc-2.6.5/nuitka/utils/MemoryUsage.py +165 -0
- nuitka_winsvc-2.6.5/nuitka/utils/ModuleNames.py +317 -0
- nuitka_winsvc-2.6.5/nuitka/utils/PackageResources.py +44 -0
- nuitka_winsvc-2.6.5/nuitka/utils/ReExecute.py +152 -0
- nuitka_winsvc-2.6.5/nuitka/utils/Rest.py +60 -0
- nuitka_winsvc-2.6.5/nuitka/utils/SharedLibraries.py +952 -0
- nuitka_winsvc-2.6.5/nuitka/utils/Shebang.py +113 -0
- nuitka_winsvc-2.6.5/nuitka/utils/Signing.py +144 -0
- nuitka_winsvc-2.6.5/nuitka/utils/SlotMetaClasses.py +57 -0
- nuitka_winsvc-2.6.5/nuitka/utils/StaticLibraries.py +256 -0
- nuitka_winsvc-2.6.5/nuitka/utils/ThreadedExecutor.py +87 -0
- nuitka_winsvc-2.6.5/nuitka/utils/Timing.py +102 -0
- nuitka_winsvc-2.6.5/nuitka/utils/Utils.py +498 -0
- nuitka_winsvc-2.6.5/nuitka/utils/WindowsFileUsage.py +337 -0
- nuitka_winsvc-2.6.5/nuitka/utils/WindowsResources.py +645 -0
- nuitka_winsvc-2.6.5/nuitka/utils/Yaml.py +247 -0
- nuitka_winsvc-2.6.5/nuitka/utils/__init__.py +19 -0
- nuitka_winsvc-2.6.5/pyproject.toml +19 -0
- nuitka_winsvc-2.6.5/setup.py +497 -0
- nuitka_winsvc-2.6.5/tests/basics/AssertsTest.py +75 -0
- nuitka_winsvc-2.6.5/tests/basics/AssignmentsTest.py +285 -0
- nuitka_winsvc-2.6.5/tests/basics/AssignmentsTest32.py +218 -0
- nuitka_winsvc-2.6.5/tests/basics/BranchingTest.py +193 -0
- nuitka_winsvc-2.6.5/tests/basics/BuiltinOverload.py +35 -0
- nuitka_winsvc-2.6.5/tests/basics/BuiltinSuperTest.py +158 -0
- nuitka_winsvc-2.6.5/tests/basics/BuiltinsTest.py +755 -0
- nuitka_winsvc-2.6.5/tests/basics/ClassMinimalTest.py +28 -0
- nuitka_winsvc-2.6.5/tests/basics/ClassesTest.py +244 -0
- nuitka_winsvc-2.6.5/tests/basics/ClassesTest32.py +161 -0
- nuitka_winsvc-2.6.5/tests/basics/ClassesTest34.py +53 -0
- nuitka_winsvc-2.6.5/tests/basics/ComparisonChainsTest.py +228 -0
- nuitka_winsvc-2.6.5/tests/basics/ConstantsTest.py +189 -0
- nuitka_winsvc-2.6.5/tests/basics/ConstantsTest27.py +28 -0
- nuitka_winsvc-2.6.5/tests/basics/DecoratorsTest.py +76 -0
- nuitka_winsvc-2.6.5/tests/basics/DefaultParametersTest.py +83 -0
- nuitka_winsvc-2.6.5/tests/basics/DoubleDeletionsTest.py +44 -0
- nuitka_winsvc-2.6.5/tests/basics/EmptyModuleTest.py +19 -0
- nuitka_winsvc-2.6.5/tests/basics/ExceptionRaisingTest32.py +633 -0
- nuitka_winsvc-2.6.5/tests/basics/ExceptionRaisingTest33.py +41 -0
- nuitka_winsvc-2.6.5/tests/basics/ExceptionRaisingTest_2.py +653 -0
- nuitka_winsvc-2.6.5/tests/basics/ExecEvalTest_2.py +361 -0
- nuitka_winsvc-2.6.5/tests/basics/ExtremeClosureTest.py +60 -0
- nuitka_winsvc-2.6.5/tests/basics/FunctionObjectsTest.py +59 -0
- nuitka_winsvc-2.6.5/tests/basics/FunctionsTest.py +611 -0
- nuitka_winsvc-2.6.5/tests/basics/FunctionsTest32.py +196 -0
- nuitka_winsvc-2.6.5/tests/basics/FunctionsTest_2.py +117 -0
- nuitka_winsvc-2.6.5/tests/basics/FutureTest32.py +23 -0
- nuitka_winsvc-2.6.5/tests/basics/GeneratorExpressionsTest.py +251 -0
- nuitka_winsvc-2.6.5/tests/basics/GeneratorExpressionsTest_37.py +31 -0
- nuitka_winsvc-2.6.5/tests/basics/GlobalStatementTest.py +207 -0
- nuitka_winsvc-2.6.5/tests/basics/HelloWorldTest_2.py +48 -0
- nuitka_winsvc-2.6.5/tests/basics/ImportingTest.py +103 -0
- nuitka_winsvc-2.6.5/tests/basics/InplaceOperationsTest.py +60 -0
- nuitka_winsvc-2.6.5/tests/basics/InspectionTest.py +160 -0
- nuitka_winsvc-2.6.5/tests/basics/InspectionTest_35.py +48 -0
- nuitka_winsvc-2.6.5/tests/basics/InspectionTest_36.py +50 -0
- nuitka_winsvc-2.6.5/tests/basics/LambdasTest.py +73 -0
- nuitka_winsvc-2.6.5/tests/basics/LateClosureAssignmentTest.py +127 -0
- nuitka_winsvc-2.6.5/tests/basics/ListContractionsTest.py +124 -0
- nuitka_winsvc-2.6.5/tests/basics/LoopingTest.py +159 -0
- nuitka_winsvc-2.6.5/tests/basics/MainProgramsTest.py +49 -0
- nuitka_winsvc-2.6.5/tests/basics/ModuleAttributesTest.py +69 -0
- nuitka_winsvc-2.6.5/tests/basics/OperatorsTest.py +93 -0
- nuitka_winsvc-2.6.5/tests/basics/OrderChecksTest.py +699 -0
- nuitka_winsvc-2.6.5/tests/basics/OrderChecksTest27.py +62 -0
- nuitka_winsvc-2.6.5/tests/basics/OverflowFunctionsTest_2.py +52 -0
- nuitka_winsvc-2.6.5/tests/basics/ParameterErrorsTest.py +294 -0
- nuitka_winsvc-2.6.5/tests/basics/ParameterErrorsTest32.py +83 -0
- nuitka_winsvc-2.6.5/tests/basics/PrintFutureTest.py +22 -0
- nuitka_winsvc-2.6.5/tests/basics/PrintingTest_2.py +49 -0
- nuitka_winsvc-2.6.5/tests/basics/RecursionTest.py +30 -0
- nuitka_winsvc-2.6.5/tests/basics/ReferencingTest.py +1391 -0
- nuitka_winsvc-2.6.5/tests/basics/ReferencingTest27.py +84 -0
- nuitka_winsvc-2.6.5/tests/basics/ReferencingTest33.py +434 -0
- nuitka_winsvc-2.6.5/tests/basics/ReferencingTest35.py +249 -0
- nuitka_winsvc-2.6.5/tests/basics/ReferencingTest36.py +299 -0
- nuitka_winsvc-2.6.5/tests/basics/ReferencingTest_2.py +133 -0
- nuitka_winsvc-2.6.5/tests/basics/SlotsTest.py +86 -0
- nuitka_winsvc-2.6.5/tests/basics/ThreadedGeneratorsTest.py +43 -0
- nuitka_winsvc-2.6.5/tests/basics/TrickAssignmentsTest32.py +1312 -0
- nuitka_winsvc-2.6.5/tests/basics/TrickAssignmentsTest35.py +58 -0
- nuitka_winsvc-2.6.5/tests/basics/TrickAssignmentsTest_2.py +76 -0
- nuitka_winsvc-2.6.5/tests/basics/TryContinueFinallyTest.py +94 -0
- nuitka_winsvc-2.6.5/tests/basics/TryExceptContinueTest.py +100 -0
- nuitka_winsvc-2.6.5/tests/basics/TryExceptFinallyTest.py +111 -0
- nuitka_winsvc-2.6.5/tests/basics/TryExceptFramesTest.py +95 -0
- nuitka_winsvc-2.6.5/tests/basics/TryReturnFinallyTest.py +115 -0
- nuitka_winsvc-2.6.5/tests/basics/TryYieldFinallyTest.py +95 -0
- nuitka_winsvc-2.6.5/tests/basics/UnicodeTest.py +40 -0
- nuitka_winsvc-2.6.5/tests/basics/UnpackingTest35.py +80 -0
- nuitka_winsvc-2.6.5/tests/basics/VarargsTest.py +71 -0
- nuitka_winsvc-2.6.5/tests/basics/WithStatementsTest.py +192 -0
- nuitka_winsvc-2.6.5/tests/basics/YieldFromTest33.py +137 -0
- nuitka_winsvc-2.6.5/tests/basics/run_all.py +124 -0
- nuitka_winsvc-2.6.5/tests/basics/run_xml.py +82 -0
- nuitka_winsvc-2.6.5/tests/onefile/ExternalDataTest.py +39 -0
- nuitka_winsvc-2.6.5/tests/onefile/HelloWorldTest.py +31 -0
- nuitka_winsvc-2.6.5/tests/onefile/KeyboardInterruptTest.py +42 -0
- nuitka_winsvc-2.6.5/tests/onefile/external-data/external-data.txt +1 -0
- nuitka_winsvc-2.6.5/tests/onefile/run_all.py +213 -0
- nuitka_winsvc-2.6.5/tests/optimizations/ArgumentTypes.py +23 -0
- nuitka_winsvc-2.6.5/tests/optimizations/AttributesTest.py +28 -0
- nuitka_winsvc-2.6.5/tests/optimizations/CallsTest.py +27 -0
- nuitka_winsvc-2.6.5/tests/optimizations/ConditionsTest.py +21 -0
- nuitka_winsvc-2.6.5/tests/optimizations/DecodingOperationsTest.py +21 -0
- nuitka_winsvc-2.6.5/tests/optimizations/FormatStringsTest36.py +45 -0
- nuitka_winsvc-2.6.5/tests/optimizations/HardImportsTest.py +38 -0
- nuitka_winsvc-2.6.5/tests/optimizations/HardImportsTest_2.py +26 -0
- nuitka_winsvc-2.6.5/tests/optimizations/Iterations.py +21 -0
- nuitka_winsvc-2.6.5/tests/optimizations/LenTest.py +33 -0
- nuitka_winsvc-2.6.5/tests/optimizations/MatchingTest310.py +32 -0
- nuitka_winsvc-2.6.5/tests/optimizations/OperationsTest.py +109 -0
- nuitka_winsvc-2.6.5/tests/optimizations/SubscriptsTest.py +35 -0
- nuitka_winsvc-2.6.5/tests/optimizations/run_all.py +273 -0
- nuitka_winsvc-2.6.5/tests/packages/package_import_success_after_failure/PackageImportSuccessAfterFailureMain.py +81 -0
- nuitka_winsvc-2.6.5/tests/packages/package_import_success_after_failure/variable_package/SomeModule.py +23 -0
- nuitka_winsvc-2.6.5/tests/packages/package_import_success_after_failure/variable_package/__init__.py +42 -0
- nuitka_winsvc-2.6.5/tests/packages/run_all.py +97 -0
- nuitka_winsvc-2.6.5/tests/packages/sub_package/kitty/__init__.py +36 -0
- nuitka_winsvc-2.6.5/tests/packages/sub_package/kitty/bigkitty.py +21 -0
- nuitka_winsvc-2.6.5/tests/packages/sub_package/kitty/smallkitty.py +21 -0
- nuitka_winsvc-2.6.5/tests/packages/sub_package/kitty/speak/__init__.py +21 -0
- nuitka_winsvc-2.6.5/tests/packages/sub_package/kitty/speak/hello.py +29 -0
- nuitka_winsvc-2.6.5/tests/packages/sub_package/kitty/speak/miau.py +26 -0
- nuitka_winsvc-2.6.5/tests/packages/sub_package/kitty/speak/purr.py +26 -0
- nuitka_winsvc-2.6.5/tests/packages/top_level_attributes_3/some_package/__init__.py +66 -0
- nuitka_winsvc-2.6.5/tests/packages/top_level_attributes_3/some_package/some_module.py +21 -0
- nuitka_winsvc-2.6.5/tests/plugins/data_files/DataFilesMain.py +39 -0
- nuitka_winsvc-2.6.5/tests/plugins/data_files/data_files_package/__init__.py +21 -0
- nuitka_winsvc-2.6.5/tests/plugins/dill_compat/DillCompatMain.py +292 -0
- nuitka_winsvc-2.6.5/tests/plugins/parameters/ParametersMain.py +33 -0
- nuitka_winsvc-2.6.5/tests/plugins/parameters/parameter-using-plugin.py +64 -0
- nuitka_winsvc-2.6.5/tests/plugins/run_all.py +120 -0
- nuitka_winsvc-2.6.5/tests/programs/absolute_import/AbsoluteImportMain.py +24 -0
- nuitka_winsvc-2.6.5/tests/programs/absolute_import/foobar/__init__.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/absolute_import/foobar/foobar.py +33 -0
- nuitka_winsvc-2.6.5/tests/programs/absolute_import/foobar/local.py +25 -0
- nuitka_winsvc-2.6.5/tests/programs/absolute_import/foobar/util.py +26 -0
- nuitka_winsvc-2.6.5/tests/programs/case_imports1/CasedImportingMain.py +20 -0
- nuitka_winsvc-2.6.5/tests/programs/case_imports1/path1/Some_Module.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/case_imports1/path1/Some_Package/__init__.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/case_imports1/path2/some_module.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/case_imports1/path2/some_package/__init__.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/case_imports2/CasedImportingMain.py +20 -0
- nuitka_winsvc-2.6.5/tests/programs/case_imports2/path1/some_module.py +16 -0
- nuitka_winsvc-2.6.5/tests/programs/case_imports2/path1/some_package/__init__.py +16 -0
- nuitka_winsvc-2.6.5/tests/programs/case_imports2/path2/Some_Module.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/case_imports2/path2/Some_Package/__init__.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/case_imports3/CasedImportingMain.py +31 -0
- nuitka_winsvc-2.6.5/tests/programs/case_imports3/path1/Some_Module.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/case_imports3/path1/Some_Package/__init__.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/case_imports3/path2/Some_Module.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/case_imports3/path2/Some_Package/__init__.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/cyclic_imports/CyclicImportsMain.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/cyclic_imports/cyclic_importing_package/Child1.py +23 -0
- nuitka_winsvc-2.6.5/tests/programs/cyclic_imports/cyclic_importing_package/Child2.py +23 -0
- nuitka_winsvc-2.6.5/tests/programs/cyclic_imports/cyclic_importing_package/__init__.py +21 -0
- nuitka_winsvc-2.6.5/tests/programs/dash_import/DashImportMain.py +27 -0
- nuitka_winsvc-2.6.5/tests/programs/dash_import/dash-module.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/dash_import/plus+module.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/dash_main/Dash-Main.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/deep/DeepProgramMain.py +24 -0
- nuitka_winsvc-2.6.5/tests/programs/deep/some_package/DeepBrother.py +28 -0
- nuitka_winsvc-2.6.5/tests/programs/deep/some_package/DeepChild.py +52 -0
- nuitka_winsvc-2.6.5/tests/programs/deep/some_package/__init__.py +16 -0
- nuitka_winsvc-2.6.5/tests/programs/deep/some_package/deep_package/DeepDeepChild.py +23 -0
- nuitka_winsvc-2.6.5/tests/programs/deep/some_package/deep_package/__init__.py +24 -0
- nuitka_winsvc-2.6.5/tests/programs/dunderinit_imports/DunderInitImportsMain.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/dunderinit_imports/package/SubModule.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/dunderinit_imports/package/__init__.py +22 -0
- nuitka_winsvc-2.6.5/tests/programs/import_variants/ImportVariationsMain.py +29 -0
- nuitka_winsvc-2.6.5/tests/programs/import_variants/some_package/Child1.py +28 -0
- nuitka_winsvc-2.6.5/tests/programs/import_variants/some_package/Child2.py +31 -0
- nuitka_winsvc-2.6.5/tests/programs/import_variants/some_package/Child3.py +21 -0
- nuitka_winsvc-2.6.5/tests/programs/import_variants/some_package/__init__.py +23 -0
- nuitka_winsvc-2.6.5/tests/programs/main_raises/ErrorMain.py +22 -0
- nuitka_winsvc-2.6.5/tests/programs/main_raises/ErrorRaising.py +21 -0
- nuitka_winsvc-2.6.5/tests/programs/main_raises2/ErrorInFunctionMain.py +36 -0
- nuitka_winsvc-2.6.5/tests/programs/main_raises2/ErrorRaising.py +21 -0
- nuitka_winsvc-2.6.5/tests/programs/module_attributes/ModuleAttributesMain.py +55 -0
- nuitka_winsvc-2.6.5/tests/programs/module_attributes/package_level1/Nearby1.py +67 -0
- nuitka_winsvc-2.6.5/tests/programs/module_attributes/package_level1/__init__.py +57 -0
- nuitka_winsvc-2.6.5/tests/programs/module_attributes/package_level1/package_level2/Nearby2.py +67 -0
- nuitka_winsvc-2.6.5/tests/programs/module_attributes/package_level1/package_level2/__init__.py +57 -0
- nuitka_winsvc-2.6.5/tests/programs/module_attributes/package_level1/package_level2/package_level3/Nearby3.py +67 -0
- nuitka_winsvc-2.6.5/tests/programs/module_attributes/package_level1/package_level2/package_level3/__init__.py +57 -0
- nuitka_winsvc-2.6.5/tests/programs/module_exits/ErrorExitingModule.py +23 -0
- nuitka_winsvc-2.6.5/tests/programs/module_exits/Main.py +23 -0
- nuitka_winsvc-2.6.5/tests/programs/module_object_replacing/ModuleObjectReplacingMain.py +31 -0
- nuitka_winsvc-2.6.5/tests/programs/module_object_replacing/SelfReplacingModule.py +44 -0
- nuitka_winsvc-2.6.5/tests/programs/multiprocessing_using/MultiprocessingUsingMain.py +28 -0
- nuitka_winsvc-2.6.5/tests/programs/multiprocessing_using/foo/__init__.py +16 -0
- nuitka_winsvc-2.6.5/tests/programs/multiprocessing_using/foo/__main__.py +22 -0
- nuitka_winsvc-2.6.5/tests/programs/multiprocessing_using/foo/entry.py +54 -0
- nuitka_winsvc-2.6.5/tests/programs/named_imports/NamedImportsMain.py +21 -0
- nuitka_winsvc-2.6.5/tests/programs/named_imports/some_package/SomeModule.py +16 -0
- nuitka_winsvc-2.6.5/tests/programs/named_imports/some_package/__init__.py +21 -0
- nuitka_winsvc-2.6.5/tests/programs/named_imports/some_package/sub_package/SomeModule.py +16 -0
- nuitka_winsvc-2.6.5/tests/programs/package_code/PackageInitCodeMain.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/package_code/some_package/SomeModule.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/package_code/some_package/__init__.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/package_contains_main/PackageContainsMain.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/package_contains_main/__init__.py +16 -0
- nuitka_winsvc-2.6.5/tests/programs/package_contains_main/local.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/package_init_import/PackageInitImportMain.py +21 -0
- nuitka_winsvc-2.6.5/tests/programs/package_init_import/some_package/PackageLocal.py +32 -0
- nuitka_winsvc-2.6.5/tests/programs/package_init_import/some_package/__init__.py +39 -0
- nuitka_winsvc-2.6.5/tests/programs/package_init_issue/PackageInitIssueMain.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/package_init_issue/some_package/__init__.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/package_init_issue/some_package/child_package/SomeModule.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/package_init_issue/some_package/child_package/__init__.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/package_missing_init/PackageMissingInitMain.py +23 -0
- nuitka_winsvc-2.6.5/tests/programs/package_missing_init/some_package/some_module.py +31 -0
- nuitka_winsvc-2.6.5/tests/programs/package_missing_init/some_package/sub_package/some_sub_module.py +31 -0
- nuitka_winsvc-2.6.5/tests/programs/package_module_collision/PackageAndModuleNamedSameMain.py +24 -0
- nuitka_winsvc-2.6.5/tests/programs/package_module_collision/Something/__init__.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/package_module_collision/something.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/package_overload/Main.py +23 -0
- nuitka_winsvc-2.6.5/tests/programs/package_overload/foo/__init__.py +21 -0
- nuitka_winsvc-2.6.5/tests/programs/package_overload/foo/bar.py +16 -0
- nuitka_winsvc-2.6.5/tests/programs/package_overload/foo/bar2.py +16 -0
- nuitka_winsvc-2.6.5/tests/programs/package_prevents_submodule/PackagePreventsSubmoduleMain.py +112 -0
- nuitka_winsvc-2.6.5/tests/programs/package_prevents_submodule/some_package/__init__.py +43 -0
- nuitka_winsvc-2.6.5/tests/programs/package_prevents_submodule/some_package/some_module.py +21 -0
- nuitka_winsvc-2.6.5/tests/programs/package_program/PackageAsMain/__init__.py +23 -0
- nuitka_winsvc-2.6.5/tests/programs/package_program/PackageAsMain/__main__.py +47 -0
- nuitka_winsvc-2.6.5/tests/programs/pkgutil_itermodules/PkgUtilIterModulesMain.py +54 -0
- nuitka_winsvc-2.6.5/tests/programs/pkgutil_itermodules/some_package/__init__.py +16 -0
- nuitka_winsvc-2.6.5/tests/programs/pkgutil_itermodules/some_package/sub_package1/SomeModuleC.py +16 -0
- nuitka_winsvc-2.6.5/tests/programs/pkgutil_itermodules/some_package/sub_package1/SomeModuleD.py +16 -0
- nuitka_winsvc-2.6.5/tests/programs/pkgutil_itermodules/some_package/sub_package1/__init__.py +16 -0
- nuitka_winsvc-2.6.5/tests/programs/pkgutil_itermodules/some_package/sub_package2/SomeModuleA.py +16 -0
- nuitka_winsvc-2.6.5/tests/programs/pkgutil_itermodules/some_package/sub_package2/SomeModuleB.py +16 -0
- nuitka_winsvc-2.6.5/tests/programs/pkgutil_itermodules/some_package/sub_package2/__init__.py +16 -0
- nuitka_winsvc-2.6.5/tests/programs/pkgutil_usage/PkgUtilUsageMain.py +34 -0
- nuitka_winsvc-2.6.5/tests/programs/pkgutil_usage/package/__init__.py +45 -0
- nuitka_winsvc-2.6.5/tests/programs/plugin_import/PluginImportMain.py +21 -0
- nuitka_winsvc-2.6.5/tests/programs/plugin_import/some_package/__init__.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/plugin_import/some_package/some_module.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/reimport_main_dynamic/ImportItselfDynamicMain.py +25 -0
- nuitka_winsvc-2.6.5/tests/programs/reimport_main_static/ImportItselfStaticMain.py +25 -0
- nuitka_winsvc-2.6.5/tests/programs/relative_import/RelativeImportMain.py +23 -0
- nuitka_winsvc-2.6.5/tests/programs/relative_import/dircache.py +16 -0
- nuitka_winsvc-2.6.5/tests/programs/resource_reader37/ResourceReaderMain.py +32 -0
- nuitka_winsvc-2.6.5/tests/programs/resource_reader37/some_package/__init__.py +16 -0
- nuitka_winsvc-2.6.5/tests/programs/run_all.py +196 -0
- nuitka_winsvc-2.6.5/tests/programs/stdlib_overload/StdlibOverloadMain.py +31 -0
- nuitka_winsvc-2.6.5/tests/programs/stdlib_overload/pyexpat.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/stdlib_overload/some_package/__init__.py +16 -0
- nuitka_winsvc-2.6.5/tests/programs/stdlib_overload/some_package/normal_importing.py +23 -0
- nuitka_winsvc-2.6.5/tests/programs/stdlib_overload/some_package/pyexpat.py +19 -0
- nuitka_winsvc-2.6.5/tests/programs/stdlib_overload/some_package/star_importing.py +35 -0
- nuitka_winsvc-2.6.5/tests/programs/syntax_errors/IndentationErroring.py +22 -0
- nuitka_winsvc-2.6.5/tests/programs/syntax_errors/SyntaxErroring.py +21 -0
- nuitka_winsvc-2.6.5/tests/programs/syntax_errors/SyntaxErrorsMain.py +33 -0
- nuitka_winsvc-2.6.5/tests/programs/unicode_bom/UnicodeBomMain.py +29 -0
- nuitka_winsvc-2.6.5/tests/programs/unicode_bom/unicode_bom.py +22 -0
- nuitka_winsvc-2.6.5/tests/programs/with space/Space Main.py +19 -0
- nuitka_winsvc-2.6.5/tests/reflected/compile_itself.py +518 -0
- nuitka_winsvc-2.6.5/tests/run-tests +44 -0
- nuitka_winsvc-2.6.5/tests/standalone/BrotliUsing.py +28 -0
- nuitka_winsvc-2.6.5/tests/standalone/CtypesUsing.py +83 -0
- nuitka_winsvc-2.6.5/tests/standalone/DateutilsUsing.py +72 -0
- nuitka_winsvc-2.6.5/tests/standalone/FlaskUsing.py +39 -0
- nuitka_winsvc-2.6.5/tests/standalone/GiUsing.py +41 -0
- nuitka_winsvc-2.6.5/tests/standalone/GlfwUsing.py +27 -0
- nuitka_winsvc-2.6.5/tests/standalone/GtkUsing.py +44 -0
- nuitka_winsvc-2.6.5/tests/standalone/HexEncodingTest_2.py +25 -0
- nuitka_winsvc-2.6.5/tests/standalone/IdnaUsing.py +31 -0
- nuitka_winsvc-2.6.5/tests/standalone/LxmlUsing.py +37 -0
- nuitka_winsvc-2.6.5/tests/standalone/MatplotlibUsing.py +46 -0
- nuitka_winsvc-2.6.5/tests/standalone/MetadataPackagesUsing.py +75 -0
- nuitka_winsvc-2.6.5/tests/standalone/NumpyUsing.py +55 -0
- nuitka_winsvc-2.6.5/tests/standalone/OpenGLUsing.py +25 -0
- nuitka_winsvc-2.6.5/tests/standalone/PandasUsing.py +44 -0
- nuitka_winsvc-2.6.5/tests/standalone/PasslibUsing.py +29 -0
- nuitka_winsvc-2.6.5/tests/standalone/PendulumUsing.py +40 -0
- nuitka_winsvc-2.6.5/tests/standalone/PkgResourcesRequiresUsing.py +62 -0
- nuitka_winsvc-2.6.5/tests/standalone/PmwUsing.py +28 -0
- nuitka_winsvc-2.6.5/tests/standalone/PyQt5Plugins.py +37 -0
- nuitka_winsvc-2.6.5/tests/standalone/PyQt5SSLSupport.py +31 -0
- nuitka_winsvc-2.6.5/tests/standalone/PyQt5Using.py +78 -0
- nuitka_winsvc-2.6.5/tests/standalone/PyQt6Plugins.py +31 -0
- nuitka_winsvc-2.6.5/tests/standalone/PyQt6Using.py +74 -0
- nuitka_winsvc-2.6.5/tests/standalone/PySide2Using.py +57 -0
- nuitka_winsvc-2.6.5/tests/standalone/PySide6Plugins.py +28 -0
- nuitka_winsvc-2.6.5/tests/standalone/PySide6Using.py +57 -0
- nuitka_winsvc-2.6.5/tests/standalone/RsaUsing.py +39 -0
- nuitka_winsvc-2.6.5/tests/standalone/SetuptoolsUsing_311.py +34 -0
- nuitka_winsvc-2.6.5/tests/standalone/ShlibUsing.py +29 -0
- nuitka_winsvc-2.6.5/tests/standalone/SocketUsing.py +49 -0
- nuitka_winsvc-2.6.5/tests/standalone/TkInterUsing.py +75 -0
- nuitka_winsvc-2.6.5/tests/standalone/Urllib3Using.py +122 -0
- nuitka_winsvc-2.6.5/tests/standalone/Win32ComUsing.py +34 -0
- nuitka_winsvc-2.6.5/tests/standalone/run_all.py +312 -0
- nuitka_winsvc-2.6.5/tests/standalone/zip_importer/ZipImporterMain.py +35 -0
- nuitka_winsvc-2.6.5/tests/syntax/AsyncgenReturn36.py +22 -0
- nuitka_winsvc-2.6.5/tests/syntax/AwaitInModule36.py +19 -0
- nuitka_winsvc-2.6.5/tests/syntax/BreakWithoutLoop.py +26 -0
- nuitka_winsvc-2.6.5/tests/syntax/ClassReturn.py +21 -0
- nuitka_winsvc-2.6.5/tests/syntax/ClosureDel_2.py +32 -0
- nuitka_winsvc-2.6.5/tests/syntax/ContinueWithoutLoop.py +22 -0
- nuitka_winsvc-2.6.5/tests/syntax/DuplicateArgument.py +21 -0
- nuitka_winsvc-2.6.5/tests/syntax/ExecWithNesting_2.py +29 -0
- nuitka_winsvc-2.6.5/tests/syntax/FutureBraces.py +21 -0
- nuitka_winsvc-2.6.5/tests/syntax/FutureUnknown.py +19 -0
- nuitka_winsvc-2.6.5/tests/syntax/GeneratorExpressions38.py +31 -0
- nuitka_winsvc-2.6.5/tests/syntax/GeneratorReturn_2.py +26 -0
- nuitka_winsvc-2.6.5/tests/syntax/GlobalForParameter.py +21 -0
- nuitka_winsvc-2.6.5/tests/syntax/Importing32.py +29 -0
- nuitka_winsvc-2.6.5/tests/syntax/IndentationError.py +21 -0
- nuitka_winsvc-2.6.5/tests/syntax/LateFutureImport.py +24 -0
- nuitka_winsvc-2.6.5/tests/syntax/MisplacedFutureImport.py +23 -0
- nuitka_winsvc-2.6.5/tests/syntax/ModuleReturn.py +23 -0
- nuitka_winsvc-2.6.5/tests/syntax/NonAsciiWithoutEncoding_2.py +21 -0
- nuitka_winsvc-2.6.5/tests/syntax/NonlocalForParameter32.py +21 -0
- nuitka_winsvc-2.6.5/tests/syntax/NonlocalNotFound32.py +29 -0
- nuitka_winsvc-2.6.5/tests/syntax/StarImportExtra.py +22 -0
- nuitka_winsvc-2.6.5/tests/syntax/SyntaxError.py +24 -0
- nuitka_winsvc-2.6.5/tests/syntax/TryExceptAllNotLast.py +26 -0
- nuitka_winsvc-2.6.5/tests/syntax/TryFinallyContinue_37.py +25 -0
- nuitka_winsvc-2.6.5/tests/syntax/UnpackNoTuple.py +19 -0
- nuitka_winsvc-2.6.5/tests/syntax/UnpackTwoStars32.py +19 -0
- nuitka_winsvc-2.6.5/tests/syntax/YieldFromInModule.py +19 -0
- nuitka_winsvc-2.6.5/tests/syntax/YieldInAsync35.py +21 -0
- nuitka_winsvc-2.6.5/tests/syntax/YieldInGenexp38.py +24 -0
- nuitka_winsvc-2.6.5/tests/syntax/YieldInModule.py +19 -0
- nuitka_winsvc-2.6.5/tests/syntax/run_all.py +83 -0
- nuitka_winsvc-2.5.6/Developer_Manual.rst +0 -4673
- nuitka_winsvc-2.5.6/MANIFEST.in +0 -56
- nuitka_winsvc-2.5.6/Nuitka_winsvc.egg-info/PKG-INFO +0 -98
- nuitka_winsvc-2.5.6/Nuitka_winsvc.egg-info/SOURCES.txt +0 -1667
- nuitka_winsvc-2.5.6/PKG-INFO +0 -98
- nuitka_winsvc-2.5.6/README.md +0 -54
- nuitka_winsvc-2.5.6/README.rst +0 -1914
- nuitka_winsvc-2.5.6/bin/autoformat-nuitka-source +0 -35
- nuitka_winsvc-2.5.6/bin/check-nuitka-with-pylint +0 -35
- nuitka_winsvc-2.5.6/bin/compare_with_cpython +0 -37
- nuitka_winsvc-2.5.6/bin/compare_with_xml +0 -108
- nuitka_winsvc-2.5.6/bin/measure-construct-performance +0 -35
- nuitka_winsvc-2.5.6/bin/nuitka +0 -50
- nuitka_winsvc-2.5.6/bin/nuitka-run +0 -50
- nuitka_winsvc-2.5.6/doc/nuitka-run.1 +0 -944
- nuitka_winsvc-2.5.6/doc/nuitka.1 +0 -944
- nuitka_winsvc-2.5.6/lib/hints.py +0 -165
- nuitka_winsvc-2.5.6/misc/nuitka-run.cmd +0 -24
- nuitka_winsvc-2.5.6/misc/nuitka.cmd +0 -30
- nuitka_winsvc-2.5.6/nuitka/Builtins.py +0 -259
- nuitka_winsvc-2.5.6/nuitka/BytecodeCaching.py +0 -173
- nuitka_winsvc-2.5.6/nuitka/Bytecodes.py +0 -109
- nuitka_winsvc-2.5.6/nuitka/CacheCleanup.py +0 -54
- nuitka_winsvc-2.5.6/nuitka/Constants.py +0 -425
- nuitka_winsvc-2.5.6/nuitka/Errors.py +0 -89
- nuitka_winsvc-2.5.6/nuitka/HardImportRegistry.py +0 -408
- nuitka_winsvc-2.5.6/nuitka/MainControl.py +0 -1193
- nuitka_winsvc-2.5.6/nuitka/ModuleRegistry.py +0 -334
- nuitka_winsvc-2.5.6/nuitka/OptionParsing.py +0 -2325
- nuitka_winsvc-2.5.6/nuitka/Options.py +0 -2695
- nuitka_winsvc-2.5.6/nuitka/OutputDirectories.py +0 -184
- nuitka_winsvc-2.5.6/nuitka/PostProcessing.py +0 -491
- nuitka_winsvc-2.5.6/nuitka/Progress.py +0 -252
- nuitka_winsvc-2.5.6/nuitka/PythonFlavors.py +0 -406
- nuitka_winsvc-2.5.6/nuitka/PythonOperators.py +0 -146
- nuitka_winsvc-2.5.6/nuitka/PythonVersions.py +0 -507
- nuitka_winsvc-2.5.6/nuitka/Serialization.py +0 -291
- nuitka_winsvc-2.5.6/nuitka/SourceCodeReferences.py +0 -176
- nuitka_winsvc-2.5.6/nuitka/Tracing.py +0 -536
- nuitka_winsvc-2.5.6/nuitka/TreeXML.py +0 -140
- nuitka_winsvc-2.5.6/nuitka/Variables.py +0 -519
- nuitka_winsvc-2.5.6/nuitka/Version.py +0 -88
- nuitka_winsvc-2.5.6/nuitka/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/__main__.py +0 -221
- nuitka_winsvc-2.5.6/nuitka/__past__.py +0 -217
- nuitka_winsvc-2.5.6/nuitka/build/Backend.scons +0 -1135
- nuitka_winsvc-2.5.6/nuitka/build/CCompilerVersion.scons +0 -280
- nuitka_winsvc-2.5.6/nuitka/build/DataComposerInterface.py +0 -115
- nuitka_winsvc-2.5.6/nuitka/build/Onefile.scons +0 -570
- nuitka_winsvc-2.5.6/nuitka/build/SconsCaching.py +0 -449
- nuitka_winsvc-2.5.6/nuitka/build/SconsCompilerSettings.py +0 -1067
- nuitka_winsvc-2.5.6/nuitka/build/SconsHacks.py +0 -215
- nuitka_winsvc-2.5.6/nuitka/build/SconsInterface.py +0 -619
- nuitka_winsvc-2.5.6/nuitka/build/SconsProgress.py +0 -93
- nuitka_winsvc-2.5.6/nuitka/build/SconsSpawn.py +0 -440
- nuitka_winsvc-2.5.6/nuitka/build/SconsUtils.py +0 -870
- nuitka_winsvc-2.5.6/nuitka/build/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/allocator.h +0 -448
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/builtins.h +0 -97
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/calling.h +0 -123
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/checkers.h +0 -39
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/checksum_tools.h +0 -28
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/compiled_asyncgen.h +0 -279
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/compiled_cell.h +0 -64
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/compiled_coroutine.h +0 -270
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/compiled_frame.h +0 -509
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/compiled_function.h +0 -172
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/compiled_generator.h +0 -266
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/compiled_method.h +0 -54
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/constants.h +0 -247
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/constants_blob.h +0 -34
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/debug_settings.h +0 -60
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/environment_variables.h +0 -30
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/environment_variables_system.h +0 -45
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/exception_groups.h +0 -167
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/exceptions.h +0 -1458
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/filesystem_paths.h +0 -102
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/freelists.h +0 -92
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/attributes.h +0 -90
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/boolean.h +0 -86
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/bytearrays.h +0 -34
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/bytes.h +0 -28
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/calling_generated.h +0 -132
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/comparisons_dual_eq.h +0 -47
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/comparisons_dual_ge.h +0 -39
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/comparisons_dual_gt.h +0 -39
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/comparisons_dual_le.h +0 -47
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/comparisons_dual_lt.h +0 -47
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/comparisons_dual_ne.h +0 -39
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/comparisons_eq.h +0 -247
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/comparisons_ge.h +0 -197
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/comparisons_gt.h +0 -197
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/comparisons_le.h +0 -247
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/comparisons_lt.h +0 -247
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/comparisons_ne.h +0 -197
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/complex.h +0 -46
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/dictionaries.h +0 -476
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/floats.h +0 -32
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/import_hard.h +0 -121
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/indexes.h +0 -47
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/ints.h +0 -165
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/iterators.h +0 -376
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/lists.h +0 -94
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/lists_generated.h +0 -36
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/mappings.h +0 -39
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations.h +0 -114
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_binary_add.h +0 -240
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_binary_bitand.h +0 -108
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_binary_bitor.h +0 -108
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_binary_bitxor.h +0 -108
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_binary_divmod.h +0 -103
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_binary_dual_add.h +0 -34
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_binary_floordiv.h +0 -103
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_binary_lshift.h +0 -99
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_binary_matmult.h +0 -60
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_binary_mod.h +0 -304
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_binary_mult.h +0 -247
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_binary_olddiv.h +0 -125
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_binary_pow.h +0 -90
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_binary_rshift.h +0 -99
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_binary_sub.h +0 -117
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_binary_truediv.h +0 -103
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_builtin_types.h +0 -247
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_inplace_add.h +0 -173
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_inplace_bitand.h +0 -76
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_inplace_bitor.h +0 -76
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_inplace_bitxor.h +0 -76
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_inplace_floordiv.h +0 -95
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_inplace_lshift.h +0 -62
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_inplace_matmult.h +0 -60
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_inplace_mod.h +0 -218
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_inplace_mult.h +0 -184
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_inplace_olddiv.h +0 -115
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_inplace_pow.h +0 -87
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_inplace_rshift.h +0 -62
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_inplace_sub.h +0 -102
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/operations_inplace_truediv.h +0 -95
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/raising.h +0 -114
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/rangeobjects.h +0 -66
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/richcomparisons.h +0 -35
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/sequences.h +0 -33
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/sets.h +0 -25
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/slices.h +0 -314
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/strings.h +0 -30
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/subscripts.h +0 -390
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helper/tuples.h +0 -187
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/helpers.h +0 -459
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/importing.h +0 -149
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/jit_sources.h +0 -25
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/prelude.h +0 -586
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/printing.h +0 -80
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/python_pgo.h +0 -57
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/safe_string_ops.h +0 -52
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/threading.h +0 -142
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/tracing.h +0 -82
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/type_aliases.h +0 -30
- nuitka_winsvc-2.5.6/nuitka/build/include/nuitka/unfreezing.h +0 -91
- nuitka_winsvc-2.5.6/nuitka/build/static_src/CompiledAsyncgenType.c +0 -2213
- nuitka_winsvc-2.5.6/nuitka/build/static_src/CompiledCellType.c +0 -299
- nuitka_winsvc-2.5.6/nuitka/build/static_src/CompiledCodeHelpers.c +0 -2220
- nuitka_winsvc-2.5.6/nuitka/build/static_src/CompiledCoroutineType.c +0 -1958
- nuitka_winsvc-2.5.6/nuitka/build/static_src/CompiledFrameType.c +0 -1279
- nuitka_winsvc-2.5.6/nuitka/build/static_src/CompiledFunctionType.c +0 -3233
- nuitka_winsvc-2.5.6/nuitka/build/static_src/CompiledGeneratorType.c +0 -1836
- nuitka_winsvc-2.5.6/nuitka/build/static_src/CompiledGeneratorTypeUncompiledIntegration.c +0 -2117
- nuitka_winsvc-2.5.6/nuitka/build/static_src/CompiledMethodType.c +0 -607
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersAllocator.c +0 -939
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersAttributes.c +0 -1238
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersBuiltin.c +0 -899
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersBuiltinTypeMethods.c +0 -3594
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersBytes.c +0 -107
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersCalling.c +0 -397
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersCallingGenerated.c +0 -14371
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersChecksumTools.c +0 -59
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersClasses.c +0 -91
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersComparisonDualEq.c +0 -183
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersComparisonDualGe.c +0 -121
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersComparisonDualGt.c +0 -121
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersComparisonDualLe.c +0 -183
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersComparisonDualLt.c +0 -183
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersComparisonDualNe.c +0 -121
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersComparisonEq.c +0 -12070
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersComparisonEqUtils.c +0 -169
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersComparisonGe.c +0 -11871
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersComparisonGt.c +0 -11855
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersComparisonLe.c +0 -11957
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersComparisonLt.c +0 -11941
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersComparisonNe.c +0 -11979
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersConsole.c +0 -122
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersConstantsBlob.c +0 -1328
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersDeepcopy.c +0 -634
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersDictionaries.c +0 -1627
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersDictionariesGenerated.c +0 -745
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersDumpBacktraces.c +0 -63
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersEnvironmentVariables.c +0 -65
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersEnvironmentVariablesSystem.c +0 -93
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersExceptions.c +0 -298
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersFiles.c +0 -345
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersFilesystemPaths.c +0 -1069
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersFloats.c +0 -92
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersHeapStorage.c +0 -68
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersImport.c +0 -506
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersImportHard.c +0 -526
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersJitSources.c +0 -46
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersLists.c +0 -898
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersListsGenerated.c +0 -564
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersMappings.c +0 -46
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersMatching.c +0 -192
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationBinaryAdd.c +0 -6477
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationBinaryAddUtils.c +0 -703
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationBinaryBitand.c +0 -2738
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationBinaryBitor.c +0 -2738
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationBinaryBitxor.c +0 -2738
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationBinaryDivmod.c +0 -2406
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationBinaryDivmodUtils.c +0 -33
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationBinaryDualAdd.c +0 -172
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationBinaryFloordiv.c +0 -2422
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationBinaryInplaceAdd.c +0 -220
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationBinaryLshift.c +0 -2846
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationBinaryMatmult.c +0 -453
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationBinaryMod.c +0 -6549
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationBinaryMult.c +0 -6438
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationBinaryMultUtils.c +0 -125
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationBinaryOlddiv.c +0 -2355
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationBinaryPow.c +0 -2743
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationBinaryPowUtils.c +0 -26
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationBinaryRshift.c +0 -2706
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationBinarySub.c +0 -2649
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationBinaryTruediv.c +0 -2415
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationInplaceAdd.c +0 -5211
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationInplaceAddUtils.c +0 -144
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationInplaceBitand.c +0 -1826
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationInplaceBitor.c +0 -1826
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationInplaceBitxor.c +0 -1826
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationInplaceFloordiv.c +0 -2605
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationInplaceLshift.c +0 -1594
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationInplaceMatmult.c +0 -603
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationInplaceMod.c +0 -4762
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationInplaceMult.c +0 -4689
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationInplaceOlddiv.c +0 -2553
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationInplacePow.c +0 -2807
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationInplaceRshift.c +0 -1534
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationInplaceSub.c +0 -2894
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersOperationInplaceTruediv.c +0 -2612
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersProfiling.c +0 -104
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersPythonPgo.c +0 -110
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersRaising.c +0 -449
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersSafeStrings.c +0 -150
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersSequences.c +0 -134
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersSlices.c +0 -73
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersStrings.c +0 -998
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersTuples.c +0 -148
- nuitka_winsvc-2.5.6/nuitka/build/static_src/HelpersTypes.c +0 -329
- nuitka_winsvc-2.5.6/nuitka/build/static_src/InspectPatcher.c +0 -435
- nuitka_winsvc-2.5.6/nuitka/build/static_src/MainProgram.c +0 -1917
- nuitka_winsvc-2.5.6/nuitka/build/static_src/MetaPathBasedLoader.c +0 -2098
- nuitka_winsvc-2.5.6/nuitka/build/static_src/MetaPathBasedLoaderImportlibMetadataDistribution.c +0 -122
- nuitka_winsvc-2.5.6/nuitka/build/static_src/MetaPathBasedLoaderResourceReader.c +0 -158
- nuitka_winsvc-2.5.6/nuitka/build/static_src/MetaPathBasedLoaderResourceReaderFiles.c +0 -772
- nuitka_winsvc-2.5.6/nuitka/build/static_src/OnefileBootstrap.c +0 -1447
- nuitka_winsvc-2.5.6/nuitka/build/static_src/OnefileSplashScreen.cpp +0 -275
- nuitka_winsvc-2.5.6/nuitka/code_generation/AsyncgenCodes.py +0 -187
- nuitka_winsvc-2.5.6/nuitka/code_generation/AttributeCodes.py +0 -357
- nuitka_winsvc-2.5.6/nuitka/code_generation/BinaryOperationHelperDefinitions.py +0 -720
- nuitka_winsvc-2.5.6/nuitka/code_generation/BranchCodes.py +0 -67
- nuitka_winsvc-2.5.6/nuitka/code_generation/BuiltinCodes.py +0 -519
- nuitka_winsvc-2.5.6/nuitka/code_generation/CallCodes.py +0 -1186
- nuitka_winsvc-2.5.6/nuitka/code_generation/ClassCodes.py +0 -156
- nuitka_winsvc-2.5.6/nuitka/code_generation/CodeGeneration.py +0 -1072
- nuitka_winsvc-2.5.6/nuitka/code_generation/CodeHelperSelection.py +0 -81
- nuitka_winsvc-2.5.6/nuitka/code_generation/CodeHelpers.py +0 -455
- nuitka_winsvc-2.5.6/nuitka/code_generation/CodeObjectCodes.py +0 -148
- nuitka_winsvc-2.5.6/nuitka/code_generation/ComparisonCodes.py +0 -569
- nuitka_winsvc-2.5.6/nuitka/code_generation/ComparisonHelperDefinitions.py +0 -146
- nuitka_winsvc-2.5.6/nuitka/code_generation/ConditionalCodes.py +0 -236
- nuitka_winsvc-2.5.6/nuitka/code_generation/ConstantCodes.py +0 -243
- nuitka_winsvc-2.5.6/nuitka/code_generation/Contexts.py +0 -1235
- nuitka_winsvc-2.5.6/nuitka/code_generation/CoroutineCodes.py +0 -254
- nuitka_winsvc-2.5.6/nuitka/code_generation/CtypesCodes.py +0 -46
- nuitka_winsvc-2.5.6/nuitka/code_generation/DictCodes.py +0 -918
- nuitka_winsvc-2.5.6/nuitka/code_generation/Emission.py +0 -75
- nuitka_winsvc-2.5.6/nuitka/code_generation/ErrorCodes.py +0 -281
- nuitka_winsvc-2.5.6/nuitka/code_generation/EvalCodes.py +0 -444
- nuitka_winsvc-2.5.6/nuitka/code_generation/ExceptionCodes.py +0 -337
- nuitka_winsvc-2.5.6/nuitka/code_generation/ExpressionCTypeSelectionHelpers.py +0 -227
- nuitka_winsvc-2.5.6/nuitka/code_generation/ExpressionCodes.py +0 -61
- nuitka_winsvc-2.5.6/nuitka/code_generation/FrameCodes.py +0 -509
- nuitka_winsvc-2.5.6/nuitka/code_generation/FunctionCodes.py +0 -864
- nuitka_winsvc-2.5.6/nuitka/code_generation/GeneratorCodes.py +0 -219
- nuitka_winsvc-2.5.6/nuitka/code_generation/GlobalConstants.py +0 -247
- nuitka_winsvc-2.5.6/nuitka/code_generation/GlobalsLocalsCodes.py +0 -211
- nuitka_winsvc-2.5.6/nuitka/code_generation/IdCodes.py +0 -53
- nuitka_winsvc-2.5.6/nuitka/code_generation/ImportCodes.py +0 -468
- nuitka_winsvc-2.5.6/nuitka/code_generation/Indentation.py +0 -45
- nuitka_winsvc-2.5.6/nuitka/code_generation/IndexCodes.py +0 -50
- nuitka_winsvc-2.5.6/nuitka/code_generation/InjectCCodes.py +0 -28
- nuitka_winsvc-2.5.6/nuitka/code_generation/IntegerCodes.py +0 -110
- nuitka_winsvc-2.5.6/nuitka/code_generation/IteratorCodes.py +0 -378
- nuitka_winsvc-2.5.6/nuitka/code_generation/JitCodes.py +0 -44
- nuitka_winsvc-2.5.6/nuitka/code_generation/LabelCodes.py +0 -67
- nuitka_winsvc-2.5.6/nuitka/code_generation/LineNumberCodes.py +0 -91
- nuitka_winsvc-2.5.6/nuitka/code_generation/ListCodes.py +0 -502
- nuitka_winsvc-2.5.6/nuitka/code_generation/LoaderCodes.py +0 -193
- nuitka_winsvc-2.5.6/nuitka/code_generation/LocalsDictCodes.py +0 -353
- nuitka_winsvc-2.5.6/nuitka/code_generation/LoopCodes.py +0 -88
- nuitka_winsvc-2.5.6/nuitka/code_generation/MatchCodes.py +0 -67
- nuitka_winsvc-2.5.6/nuitka/code_generation/ModuleCodes.py +0 -220
- nuitka_winsvc-2.5.6/nuitka/code_generation/Namify.py +0 -257
- nuitka_winsvc-2.5.6/nuitka/code_generation/NetworkxCodes.py +0 -51
- nuitka_winsvc-2.5.6/nuitka/code_generation/OperationCodes.py +0 -398
- nuitka_winsvc-2.5.6/nuitka/code_generation/PackageResourceCodes.py +0 -992
- nuitka_winsvc-2.5.6/nuitka/code_generation/PrintCodes.py +0 -93
- nuitka_winsvc-2.5.6/nuitka/code_generation/PythonAPICodes.py +0 -215
- nuitka_winsvc-2.5.6/nuitka/code_generation/RaisingCodes.py +0 -481
- nuitka_winsvc-2.5.6/nuitka/code_generation/Reports.py +0 -115
- nuitka_winsvc-2.5.6/nuitka/code_generation/ReturnCodes.py +0 -143
- nuitka_winsvc-2.5.6/nuitka/code_generation/SetCodes.py +0 -196
- nuitka_winsvc-2.5.6/nuitka/code_generation/SliceCodes.py +0 -465
- nuitka_winsvc-2.5.6/nuitka/code_generation/StringCodes.py +0 -303
- nuitka_winsvc-2.5.6/nuitka/code_generation/SubscriptCodes.py +0 -263
- nuitka_winsvc-2.5.6/nuitka/code_generation/TensorflowCodes.py +0 -54
- nuitka_winsvc-2.5.6/nuitka/code_generation/TryCodes.py +0 -326
- nuitka_winsvc-2.5.6/nuitka/code_generation/TupleCodes.py +0 -115
- nuitka_winsvc-2.5.6/nuitka/code_generation/TypeAliasCodes.py +0 -119
- nuitka_winsvc-2.5.6/nuitka/code_generation/VariableCodes.py +0 -520
- nuitka_winsvc-2.5.6/nuitka/code_generation/VariableDeclarations.py +0 -279
- nuitka_winsvc-2.5.6/nuitka/code_generation/YieldCodes.py +0 -253
- nuitka_winsvc-2.5.6/nuitka/code_generation/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/code_generation/c_types/CTypeBases.py +0 -177
- nuitka_winsvc-2.5.6/nuitka/code_generation/c_types/CTypeBooleans.py +0 -104
- nuitka_winsvc-2.5.6/nuitka/code_generation/c_types/CTypeCFloats.py +0 -57
- nuitka_winsvc-2.5.6/nuitka/code_generation/c_types/CTypeCLongs.py +0 -45
- nuitka_winsvc-2.5.6/nuitka/code_generation/c_types/CTypeModuleDictVariables.py +0 -109
- nuitka_winsvc-2.5.6/nuitka/code_generation/c_types/CTypeNuitkaBooleans.py +0 -150
- nuitka_winsvc-2.5.6/nuitka/code_generation/c_types/CTypeNuitkaInts.py +0 -200
- nuitka_winsvc-2.5.6/nuitka/code_generation/c_types/CTypeNuitkaVoids.py +0 -107
- nuitka_winsvc-2.5.6/nuitka/code_generation/c_types/CTypePyObjectPointers.py +0 -572
- nuitka_winsvc-2.5.6/nuitka/code_generation/c_types/CTypeVoids.py +0 -92
- nuitka_winsvc-2.5.6/nuitka/code_generation/c_types/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates/CodeTemplatesAsyncgens.py +0 -106
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates/CodeTemplatesConstants.py +0 -305
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates/CodeTemplatesCoroutines.py +0 -109
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates/CodeTemplatesExceptions.py +0 -84
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates/CodeTemplatesFrames.py +0 -239
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates/CodeTemplatesFunction.py +0 -117
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates/CodeTemplatesGeneratorFunction.py +0 -130
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates/CodeTemplatesIterators.py +0 -40
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates/CodeTemplatesLoader.py +0 -157
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates/CodeTemplatesModules.py +0 -765
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates/CodeTemplatesVariables.py +0 -386
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates/TemplateDebugWrapper.py +0 -80
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/CodeTemplateCallsMethodPositional.c.j2 +0 -321
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/CodeTemplateCallsMixed.c.j2 +0 -143
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/CodeTemplateCallsPositional.c.j2 +0 -677
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/CodeTemplateCallsPositionalMethodDescr.c.j2 +0 -145
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/CodeTemplateMakeListHinted.c.j2 +0 -38
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/CodeTemplateMakeListSmall.c.j2 +0 -41
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperBuiltinMethodOperation.c.j2 +0 -53
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperDictionaryCopy.c.j2 +0 -379
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperImportHard.c.j2 +0 -37
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperLongTools.c.j2 +0 -53
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperObjectTools.c.j2 +0 -20
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperOperationBinary.c.j2 +0 -148
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperOperationBinaryDual.c.j2 +0 -115
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperOperationComparison.c.j2 +0 -352
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperOperationComparisonBytes.c.j2 +0 -115
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperOperationComparisonDual.c.j2 +0 -86
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperOperationComparisonFloat.c.j2 +0 -31
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperOperationComparisonInt.c.j2 +0 -32
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperOperationComparisonList.c.j2 +0 -112
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperOperationComparisonLong.c.j2 +0 -157
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperOperationComparisonStr.c.j2 +0 -115
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperOperationComparisonTuple.c.j2 +0 -99
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperOperationComparisonUnicode.c.j2 +0 -115
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperOperationInplace.c.j2 +0 -281
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperSlotsBinary.c.j2 +0 -420
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperSlotsBytes.c.j2 +0 -51
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperSlotsCommon.c.j2 +0 -71
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperSlotsFloat.c.j2 +0 -327
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperSlotsInt.c.j2 +0 -411
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperSlotsList.c.j2 +0 -59
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperSlotsLong.c.j2 +0 -229
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperSlotsSet.c.j2 +0 -47
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperSlotsStr.c.j2 +0 -55
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperSlotsTuple.c.j2 +0 -58
- nuitka_winsvc-2.5.6/nuitka/code_generation/templates_c/HelperSlotsUnicode.c.j2 +0 -62
- nuitka_winsvc-2.5.6/nuitka/containers/Namedtuples.py +0 -51
- nuitka_winsvc-2.5.6/nuitka/containers/OrderedSetsFallback.py +0 -139
- nuitka_winsvc-2.5.6/nuitka/containers/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/distutils/Build.py +0 -76
- nuitka_winsvc-2.5.6/nuitka/distutils/DistutilCommands.py +0 -443
- nuitka_winsvc-2.5.6/nuitka/distutils/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/finalizations/Finalization.py +0 -35
- nuitka_winsvc-2.5.6/nuitka/finalizations/FinalizeMarkups.py +0 -136
- nuitka_winsvc-2.5.6/nuitka/finalizations/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/freezer/DependsExe.py +0 -256
- nuitka_winsvc-2.5.6/nuitka/freezer/DllDependenciesCommon.py +0 -97
- nuitka_winsvc-2.5.6/nuitka/freezer/DllDependenciesMacOS.py +0 -439
- nuitka_winsvc-2.5.6/nuitka/freezer/DllDependenciesPosix.py +0 -223
- nuitka_winsvc-2.5.6/nuitka/freezer/DllDependenciesWin32.py +0 -228
- nuitka_winsvc-2.5.6/nuitka/freezer/ImportDetection.py +0 -359
- nuitka_winsvc-2.5.6/nuitka/freezer/IncludedDataFiles.py +0 -681
- nuitka_winsvc-2.5.6/nuitka/freezer/IncludedEntryPoints.py +0 -368
- nuitka_winsvc-2.5.6/nuitka/freezer/Onefile.py +0 -298
- nuitka_winsvc-2.5.6/nuitka/freezer/Standalone.py +0 -428
- nuitka_winsvc-2.5.6/nuitka/freezer/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/importing/IgnoreListing.py +0 -449
- nuitka_winsvc-2.5.6/nuitka/importing/ImportCache.py +0 -95
- nuitka_winsvc-2.5.6/nuitka/importing/ImportResolving.py +0 -189
- nuitka_winsvc-2.5.6/nuitka/importing/Importing.py +0 -1095
- nuitka_winsvc-2.5.6/nuitka/importing/PreloadedPackages.py +0 -164
- nuitka_winsvc-2.5.6/nuitka/importing/Recursion.py +0 -582
- nuitka_winsvc-2.5.6/nuitka/importing/StandardLibrary.py +0 -429
- nuitka_winsvc-2.5.6/nuitka/importing/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/nodes/AsyncgenNodes.py +0 -107
- nuitka_winsvc-2.5.6/nuitka/nodes/AttributeLookupNodes.py +0 -124
- nuitka_winsvc-2.5.6/nuitka/nodes/AttributeNodes.py +0 -386
- nuitka_winsvc-2.5.6/nuitka/nodes/AttributeNodesGenerated.py +0 -10734
- nuitka_winsvc-2.5.6/nuitka/nodes/BuiltinAllNodes.py +0 -115
- nuitka_winsvc-2.5.6/nuitka/nodes/BuiltinAnyNodes.py +0 -124
- nuitka_winsvc-2.5.6/nuitka/nodes/BuiltinComplexNodes.py +0 -83
- nuitka_winsvc-2.5.6/nuitka/nodes/BuiltinDecodingNodes.py +0 -52
- nuitka_winsvc-2.5.6/nuitka/nodes/BuiltinDecoratorNodes.py +0 -85
- nuitka_winsvc-2.5.6/nuitka/nodes/BuiltinDictNodes.py +0 -140
- nuitka_winsvc-2.5.6/nuitka/nodes/BuiltinFormatNodes.py +0 -159
- nuitka_winsvc-2.5.6/nuitka/nodes/BuiltinHashNodes.py +0 -63
- nuitka_winsvc-2.5.6/nuitka/nodes/BuiltinInputNodes.py +0 -39
- nuitka_winsvc-2.5.6/nuitka/nodes/BuiltinIntegerNodes.py +0 -170
- nuitka_winsvc-2.5.6/nuitka/nodes/BuiltinIteratorNodes.py +0 -391
- nuitka_winsvc-2.5.6/nuitka/nodes/BuiltinLenNodes.py +0 -61
- nuitka_winsvc-2.5.6/nuitka/nodes/BuiltinNextNodes.py +0 -111
- nuitka_winsvc-2.5.6/nuitka/nodes/BuiltinOpenNodes.py +0 -148
- nuitka_winsvc-2.5.6/nuitka/nodes/BuiltinOperationNodeBasesGenerated.py +0 -7367
- nuitka_winsvc-2.5.6/nuitka/nodes/BuiltinRangeNodes.py +0 -690
- nuitka_winsvc-2.5.6/nuitka/nodes/BuiltinRefNodes.py +0 -314
- nuitka_winsvc-2.5.6/nuitka/nodes/BuiltinSumNodes.py +0 -104
- nuitka_winsvc-2.5.6/nuitka/nodes/BuiltinTypeNodes.py +0 -452
- nuitka_winsvc-2.5.6/nuitka/nodes/BuiltinVarsNodes.py +0 -44
- nuitka_winsvc-2.5.6/nuitka/nodes/BytesNodes.py +0 -829
- nuitka_winsvc-2.5.6/nuitka/nodes/CallNodes.py +0 -217
- nuitka_winsvc-2.5.6/nuitka/nodes/Checkers.py +0 -55
- nuitka_winsvc-2.5.6/nuitka/nodes/ChildrenHavingMixins.py +0 -21352
- nuitka_winsvc-2.5.6/nuitka/nodes/ClassNodes.py +0 -286
- nuitka_winsvc-2.5.6/nuitka/nodes/CodeObjectSpecs.py +0 -230
- nuitka_winsvc-2.5.6/nuitka/nodes/ComparisonNodes.py +0 -687
- nuitka_winsvc-2.5.6/nuitka/nodes/ConditionalNodes.py +0 -884
- nuitka_winsvc-2.5.6/nuitka/nodes/ConstantRefNodes.py +0 -1717
- nuitka_winsvc-2.5.6/nuitka/nodes/ContainerMakingNodes.py +0 -408
- nuitka_winsvc-2.5.6/nuitka/nodes/ContainerOperationNodes.py +0 -87
- nuitka_winsvc-2.5.6/nuitka/nodes/CoroutineNodes.py +0 -144
- nuitka_winsvc-2.5.6/nuitka/nodes/CtypesNodes.py +0 -51
- nuitka_winsvc-2.5.6/nuitka/nodes/DictionaryNodes.py +0 -1513
- nuitka_winsvc-2.5.6/nuitka/nodes/ExceptionNodes.py +0 -363
- nuitka_winsvc-2.5.6/nuitka/nodes/ExecEvalNodes.py +0 -229
- nuitka_winsvc-2.5.6/nuitka/nodes/ExpressionBases.py +0 -1301
- nuitka_winsvc-2.5.6/nuitka/nodes/ExpressionBasesGenerated.py +0 -2103
- nuitka_winsvc-2.5.6/nuitka/nodes/ExpressionShapeMixins.py +0 -886
- nuitka_winsvc-2.5.6/nuitka/nodes/FrameNodes.py +0 -401
- nuitka_winsvc-2.5.6/nuitka/nodes/FunctionAttributeNodes.py +0 -102
- nuitka_winsvc-2.5.6/nuitka/nodes/FunctionNodes.py +0 -1296
- nuitka_winsvc-2.5.6/nuitka/nodes/FutureSpecs.py +0 -192
- nuitka_winsvc-2.5.6/nuitka/nodes/GeneratorNodes.py +0 -201
- nuitka_winsvc-2.5.6/nuitka/nodes/GlobalsLocalsNodes.py +0 -209
- nuitka_winsvc-2.5.6/nuitka/nodes/HardImportNodesGenerated.py +0 -3515
- nuitka_winsvc-2.5.6/nuitka/nodes/ImportHardNodes.py +0 -185
- nuitka_winsvc-2.5.6/nuitka/nodes/ImportNodes.py +0 -1359
- nuitka_winsvc-2.5.6/nuitka/nodes/IndicatorMixins.py +0 -79
- nuitka_winsvc-2.5.6/nuitka/nodes/InjectCNodes.py +0 -51
- nuitka_winsvc-2.5.6/nuitka/nodes/IterationHandles.py +0 -407
- nuitka_winsvc-2.5.6/nuitka/nodes/KeyValuePairNodes.py +0 -378
- nuitka_winsvc-2.5.6/nuitka/nodes/ListOperationNodes.py +0 -525
- nuitka_winsvc-2.5.6/nuitka/nodes/LocalsDictNodes.py +0 -717
- nuitka_winsvc-2.5.6/nuitka/nodes/LocalsScopes.py +0 -505
- nuitka_winsvc-2.5.6/nuitka/nodes/LoopNodes.py +0 -445
- nuitka_winsvc-2.5.6/nuitka/nodes/MatchNodes.py +0 -60
- nuitka_winsvc-2.5.6/nuitka/nodes/ModuleAttributeNodes.py +0 -180
- nuitka_winsvc-2.5.6/nuitka/nodes/ModuleNodes.py +0 -1118
- nuitka_winsvc-2.5.6/nuitka/nodes/NetworkxNodes.py +0 -45
- nuitka_winsvc-2.5.6/nuitka/nodes/NodeBases.py +0 -889
- nuitka_winsvc-2.5.6/nuitka/nodes/NodeMakingHelpers.py +0 -481
- nuitka_winsvc-2.5.6/nuitka/nodes/NodeMetaClasses.py +0 -170
- nuitka_winsvc-2.5.6/nuitka/nodes/OperatorNodes.py +0 -944
- nuitka_winsvc-2.5.6/nuitka/nodes/OperatorNodesUnary.py +0 -403
- nuitka_winsvc-2.5.6/nuitka/nodes/OsSysNodes.py +0 -215
- nuitka_winsvc-2.5.6/nuitka/nodes/OutlineNodes.py +0 -372
- nuitka_winsvc-2.5.6/nuitka/nodes/PackageMetadataNodes.py +0 -979
- nuitka_winsvc-2.5.6/nuitka/nodes/PackageResourceNodes.py +0 -389
- nuitka_winsvc-2.5.6/nuitka/nodes/PrintNodes.py +0 -105
- nuitka_winsvc-2.5.6/nuitka/nodes/ReturnNodes.py +0 -255
- nuitka_winsvc-2.5.6/nuitka/nodes/SideEffectNodes.py +0 -139
- nuitka_winsvc-2.5.6/nuitka/nodes/SliceNodes.py +0 -386
- nuitka_winsvc-2.5.6/nuitka/nodes/StatementBasesGenerated.py +0 -3419
- nuitka_winsvc-2.5.6/nuitka/nodes/StatementNodes.py +0 -316
- nuitka_winsvc-2.5.6/nuitka/nodes/StrNodes.py +0 -919
- nuitka_winsvc-2.5.6/nuitka/nodes/StringConcatenationNodes.py +0 -103
- nuitka_winsvc-2.5.6/nuitka/nodes/SubscriptNodes.py +0 -245
- nuitka_winsvc-2.5.6/nuitka/nodes/TensorflowNodes.py +0 -38
- nuitka_winsvc-2.5.6/nuitka/nodes/TryNodes.py +0 -519
- nuitka_winsvc-2.5.6/nuitka/nodes/TypeMatchNodes.py +0 -65
- nuitka_winsvc-2.5.6/nuitka/nodes/TypeNodes.py +0 -390
- nuitka_winsvc-2.5.6/nuitka/nodes/VariableAssignNodes.py +0 -1177
- nuitka_winsvc-2.5.6/nuitka/nodes/VariableDelNodes.py +0 -320
- nuitka_winsvc-2.5.6/nuitka/nodes/VariableNameNodes.py +0 -153
- nuitka_winsvc-2.5.6/nuitka/nodes/VariableRefNodes.py +0 -895
- nuitka_winsvc-2.5.6/nuitka/nodes/VariableReleaseNodes.py +0 -153
- nuitka_winsvc-2.5.6/nuitka/nodes/YieldNodes.py +0 -121
- nuitka_winsvc-2.5.6/nuitka/nodes/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/nodes/shapes/BuiltinTypeShapes.py +0 -4290
- nuitka_winsvc-2.5.6/nuitka/nodes/shapes/ControlFlowDescriptions.py +0 -199
- nuitka_winsvc-2.5.6/nuitka/nodes/shapes/IteratorShapes.py +0 -71
- nuitka_winsvc-2.5.6/nuitka/nodes/shapes/ShapeMixins.py +0 -255
- nuitka_winsvc-2.5.6/nuitka/nodes/shapes/StandardShapes.py +0 -1384
- nuitka_winsvc-2.5.6/nuitka/nodes/shapes/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/optimizations/BytecodeDemotion.py +0 -105
- nuitka_winsvc-2.5.6/nuitka/optimizations/FunctionInlining.py +0 -110
- nuitka_winsvc-2.5.6/nuitka/optimizations/Graphs.py +0 -70
- nuitka_winsvc-2.5.6/nuitka/optimizations/Optimization.py +0 -363
- nuitka_winsvc-2.5.6/nuitka/optimizations/OptimizeBuiltinCalls.py +0 -1582
- nuitka_winsvc-2.5.6/nuitka/optimizations/Tags.py +0 -76
- nuitka_winsvc-2.5.6/nuitka/optimizations/TraceCollections.py +0 -1257
- nuitka_winsvc-2.5.6/nuitka/optimizations/ValueTraces.py +0 -980
- nuitka_winsvc-2.5.6/nuitka/optimizations/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/pgo/PGO.py +0 -160
- nuitka_winsvc-2.5.6/nuitka/pgo/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/plugins/PluginBase.py +0 -1796
- nuitka_winsvc-2.5.6/nuitka/plugins/Plugins.py +0 -1933
- nuitka_winsvc-2.5.6/nuitka/plugins/YamlPluginBase.py +0 -121
- nuitka_winsvc-2.5.6/nuitka/plugins/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/AntiBloatPlugin.py +0 -916
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/ConsiderPyLintAnnotationsPlugin.py +0 -94
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/DataFilesPlugin.py +0 -311
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/DelvewheelPlugin.py +0 -149
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/DillPlugin/DillPlugin.c +0 -37
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/DillPlugin/dill-postLoad.py +0 -256
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/DillPlugin.py +0 -76
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/DllFilesPlugin.py +0 -537
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/EnumPlugin.py +0 -64
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/EventletPlugin.py +0 -56
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/GeventPlugin.py +0 -63
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/GiPlugin.py +0 -117
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/GlfwPlugin.py +0 -137
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/ImplicitImports.py +0 -795
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/KivyPlugin.py +0 -140
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/MatplotlibPlugin.py +0 -255
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/MultiprocessingPlugin.py +0 -198
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/NumpyPlugin.py +0 -34
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/OptionsNannyPlugin.py +0 -158
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/PbrPlugin.py +0 -62
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/PkgResourcesPlugin.py +0 -156
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/PlaywrightPlugin.py +0 -184
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/PmwPlugin.py +0 -247
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/PySidePyQtPlugin.py +0 -1486
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/PywebViewPlugin.py +0 -80
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/SpacyPlugin.py +0 -136
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/TensorflowPlugin.py +0 -34
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/TkinterPlugin.py +0 -358
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/TorchPlugin.py +0 -34
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/TransformersPlugin.py +0 -121
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/TrioPlugin.py +0 -32
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/UpxPlugin.py +0 -173
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/plugins/standard/standard.nuitka-package.config.yml +0 -8767
- nuitka_winsvc-2.5.6/nuitka/reports/CompilationReportReader.py +0 -79
- nuitka_winsvc-2.5.6/nuitka/reports/LicenseReport.rst.j2 +0 -41
- nuitka_winsvc-2.5.6/nuitka/reports/Reports.py +0 -914
- nuitka_winsvc-2.5.6/nuitka/reports/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/specs/BuiltinBytesOperationSpecs.py +0 -180
- nuitka_winsvc-2.5.6/nuitka/specs/BuiltinDictOperationSpecs.py +0 -82
- nuitka_winsvc-2.5.6/nuitka/specs/BuiltinListOperationSpecs.py +0 -80
- nuitka_winsvc-2.5.6/nuitka/specs/BuiltinParameterSpecs.py +0 -831
- nuitka_winsvc-2.5.6/nuitka/specs/BuiltinStrOperationSpecs.py +0 -181
- nuitka_winsvc-2.5.6/nuitka/specs/BuiltinTypeOperationSpecs.py +0 -34
- nuitka_winsvc-2.5.6/nuitka/specs/BuiltinUnicodeOperationSpecs.py +0 -123
- nuitka_winsvc-2.5.6/nuitka/specs/HardImportSpecs.py +0 -228
- nuitka_winsvc-2.5.6/nuitka/specs/ParameterSpecs.py +0 -615
- nuitka_winsvc-2.5.6/nuitka/specs/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/tools/Basics.py +0 -55
- nuitka_winsvc-2.5.6/nuitka/tools/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/tools/commercial/__init__.py +0 -21
- nuitka_winsvc-2.5.6/nuitka/tools/data_composer/DataComposer.py +0 -465
- nuitka_winsvc-2.5.6/nuitka/tools/data_composer/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/tools/data_composer/__main__.py +0 -41
- nuitka_winsvc-2.5.6/nuitka/tools/environments/CreateEnvironment.py +0 -69
- nuitka_winsvc-2.5.6/nuitka/tools/environments/Virtualenv.py +0 -158
- nuitka_winsvc-2.5.6/nuitka/tools/environments/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/tools/general/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/tools/general/dll_report/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/tools/general/dll_report/__main__.py +0 -83
- nuitka_winsvc-2.5.6/nuitka/tools/general/find_module/FindModuleCode.py +0 -124
- nuitka_winsvc-2.5.6/nuitka/tools/general/find_module/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/tools/onefile_compressor/OnefileCompressor.py +0 -390
- nuitka_winsvc-2.5.6/nuitka/tools/onefile_compressor/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/tools/onefile_compressor/__main__.py +0 -41
- nuitka_winsvc-2.5.6/nuitka/tools/podman/Podman.py +0 -55
- nuitka_winsvc-2.5.6/nuitka/tools/podman/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/tools/podman/__main__.py +0 -422
- nuitka_winsvc-2.5.6/nuitka/tools/profiler/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/tools/profiler/__main__.py +0 -93
- nuitka_winsvc-2.5.6/nuitka/tools/scanning/DisplayPackageDLLs.py +0 -129
- nuitka_winsvc-2.5.6/nuitka/tools/scanning/DisplayPackageData.py +0 -73
- nuitka_winsvc-2.5.6/nuitka/tools/scanning/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/tools/specialize/CTypeDescriptions.py +0 -1928
- nuitka_winsvc-2.5.6/nuitka/tools/specialize/Common.py +0 -380
- nuitka_winsvc-2.5.6/nuitka/tools/specialize/SpecializeC.py +0 -1483
- nuitka_winsvc-2.5.6/nuitka/tools/specialize/SpecializePython.py +0 -1147
- nuitka_winsvc-2.5.6/nuitka/tools/specialize/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/tools/testing/Common.py +0 -1998
- nuitka_winsvc-2.5.6/nuitka/tools/testing/Constructs.py +0 -53
- nuitka_winsvc-2.5.6/nuitka/tools/testing/OutputComparison.py +0 -301
- nuitka_winsvc-2.5.6/nuitka/tools/testing/Pythons.py +0 -34
- nuitka_winsvc-2.5.6/nuitka/tools/testing/RuntimeTracing.py +0 -260
- nuitka_winsvc-2.5.6/nuitka/tools/testing/SearchModes.py +0 -208
- nuitka_winsvc-2.5.6/nuitka/tools/testing/Valgrind.py +0 -103
- nuitka_winsvc-2.5.6/nuitka/tools/testing/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/tools/testing/check_reference_counts/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/tools/testing/check_reference_counts/__main__.py +0 -103
- nuitka_winsvc-2.5.6/nuitka/tools/testing/compare_with_cpython/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/tools/testing/compare_with_cpython/__main__.py +0 -905
- nuitka_winsvc-2.5.6/nuitka/tools/testing/find_sxs_modules/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/tools/testing/find_sxs_modules/__main__.py +0 -73
- nuitka_winsvc-2.5.6/nuitka/tools/testing/measure_construct_performance/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/tools/testing/measure_construct_performance/__main__.py +0 -288
- nuitka_winsvc-2.5.6/nuitka/tools/testing/run_nuitka_tests/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/tools/testing/run_nuitka_tests/__main__.py +0 -1091
- nuitka_winsvc-2.5.6/nuitka/tools/watch/AutoStage.py +0 -145
- nuitka_winsvc-2.5.6/nuitka/tools/watch/GitHub.py +0 -113
- nuitka_winsvc-2.5.6/nuitka/tools/watch/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/tools/watch/__main__.py +0 -726
- nuitka_winsvc-2.5.6/nuitka/tree/Building.py +0 -1463
- nuitka_winsvc-2.5.6/nuitka/tree/ComplexCallHelperFunctions.py +0 -2150
- nuitka_winsvc-2.5.6/nuitka/tree/Extractions.py +0 -48
- nuitka_winsvc-2.5.6/nuitka/tree/InternalModule.py +0 -96
- nuitka_winsvc-2.5.6/nuitka/tree/Operations.py +0 -45
- nuitka_winsvc-2.5.6/nuitka/tree/ReformulationAssertStatements.py +0 -97
- nuitka_winsvc-2.5.6/nuitka/tree/ReformulationAssignmentStatements.py +0 -1260
- nuitka_winsvc-2.5.6/nuitka/tree/ReformulationBooleanExpressions.py +0 -97
- nuitka_winsvc-2.5.6/nuitka/tree/ReformulationCallExpressions.py +0 -314
- nuitka_winsvc-2.5.6/nuitka/tree/ReformulationClasses.py +0 -407
- nuitka_winsvc-2.5.6/nuitka/tree/ReformulationClasses3.py +0 -1149
- nuitka_winsvc-2.5.6/nuitka/tree/ReformulationComparisonExpressions.py +0 -174
- nuitka_winsvc-2.5.6/nuitka/tree/ReformulationContractionExpressions.py +0 -674
- nuitka_winsvc-2.5.6/nuitka/tree/ReformulationDictionaryCreation.py +0 -304
- nuitka_winsvc-2.5.6/nuitka/tree/ReformulationExecStatements.py +0 -386
- nuitka_winsvc-2.5.6/nuitka/tree/ReformulationForLoopStatements.py +0 -215
- nuitka_winsvc-2.5.6/nuitka/tree/ReformulationFunctionStatements.py +0 -931
- nuitka_winsvc-2.5.6/nuitka/tree/ReformulationImportStatements.py +0 -380
- nuitka_winsvc-2.5.6/nuitka/tree/ReformulationLambdaExpressions.py +0 -184
- nuitka_winsvc-2.5.6/nuitka/tree/ReformulationMatchStatements.py +0 -797
- nuitka_winsvc-2.5.6/nuitka/tree/ReformulationMultidist.py +0 -80
- nuitka_winsvc-2.5.6/nuitka/tree/ReformulationNamespacePackages.py +0 -217
- nuitka_winsvc-2.5.6/nuitka/tree/ReformulationPrintStatements.py +0 -127
- nuitka_winsvc-2.5.6/nuitka/tree/ReformulationSequenceCreation.py +0 -438
- nuitka_winsvc-2.5.6/nuitka/tree/ReformulationSubscriptExpressions.py +0 -123
- nuitka_winsvc-2.5.6/nuitka/tree/ReformulationTryExceptStatements.py +0 -418
- nuitka_winsvc-2.5.6/nuitka/tree/ReformulationTryFinallyStatements.py +0 -239
- nuitka_winsvc-2.5.6/nuitka/tree/ReformulationWhileLoopStatements.py +0 -160
- nuitka_winsvc-2.5.6/nuitka/tree/ReformulationWithStatements.py +0 -382
- nuitka_winsvc-2.5.6/nuitka/tree/ReformulationYieldExpressions.py +0 -133
- nuitka_winsvc-2.5.6/nuitka/tree/SourceHandling.py +0 -437
- nuitka_winsvc-2.5.6/nuitka/tree/SyntaxErrors.py +0 -143
- nuitka_winsvc-2.5.6/nuitka/tree/TreeHelpers.py +0 -706
- nuitka_winsvc-2.5.6/nuitka/tree/VariableClosure.py +0 -483
- nuitka_winsvc-2.5.6/nuitka/tree/__init__.py +0 -19
- nuitka_winsvc-2.5.6/nuitka/utils/AppDirs.py +0 -101
- nuitka_winsvc-2.5.6/nuitka/utils/CStrings.py +0 -168
- nuitka_winsvc-2.5.6/nuitka/utils/CommandLineOptions.py +0 -207
- nuitka_winsvc-2.5.6/nuitka/utils/Distributions.py +0 -537
- nuitka_winsvc-2.5.6/nuitka/utils/Download.py +0 -209
- nuitka_winsvc-2.5.6/nuitka/utils/Execution.py +0 -488
- nuitka_winsvc-2.5.6/nuitka/utils/FileOperations.py +0 -1537
- nuitka_winsvc-2.5.6/nuitka/utils/Hashing.py +0 -137
- nuitka_winsvc-2.5.6/nuitka/utils/Images.py +0 -73
- nuitka_winsvc-2.5.6/nuitka/utils/Importing.py +0 -335
- nuitka_winsvc-2.5.6/nuitka/utils/InlineCopies.py +0 -52
- nuitka_winsvc-2.5.6/nuitka/utils/InstalledPythons.py +0 -254
- nuitka_winsvc-2.5.6/nuitka/utils/InstanceCounters.py +0 -86
- nuitka_winsvc-2.5.6/nuitka/utils/Jinja2.py +0 -158
- nuitka_winsvc-2.5.6/nuitka/utils/Json.py +0 -40
- nuitka_winsvc-2.5.6/nuitka/utils/MacOSApp.py +0 -132
- nuitka_winsvc-2.5.6/nuitka/utils/MemoryUsage.py +0 -165
- nuitka_winsvc-2.5.6/nuitka/utils/ModuleNames.py +0 -317
- nuitka_winsvc-2.5.6/nuitka/utils/PackageResources.py +0 -44
- nuitka_winsvc-2.5.6/nuitka/utils/ReExecute.py +0 -152
- nuitka_winsvc-2.5.6/nuitka/utils/Rest.py +0 -60
- nuitka_winsvc-2.5.6/nuitka/utils/SharedLibraries.py +0 -907
- nuitka_winsvc-2.5.6/nuitka/utils/Shebang.py +0 -113
- nuitka_winsvc-2.5.6/nuitka/utils/Signing.py +0 -146
- nuitka_winsvc-2.5.6/nuitka/utils/SlotMetaClasses.py +0 -57
- nuitka_winsvc-2.5.6/nuitka/utils/StaticLibraries.py +0 -228
- nuitka_winsvc-2.5.6/nuitka/utils/ThreadedExecutor.py +0 -87
- nuitka_winsvc-2.5.6/nuitka/utils/Timing.py +0 -102
- nuitka_winsvc-2.5.6/nuitka/utils/Utils.py +0 -498
- nuitka_winsvc-2.5.6/nuitka/utils/WindowsFileUsage.py +0 -337
- nuitka_winsvc-2.5.6/nuitka/utils/WindowsResources.py +0 -643
- nuitka_winsvc-2.5.6/nuitka/utils/Yaml.py +0 -247
- nuitka_winsvc-2.5.6/nuitka/utils/__init__.py +0 -19
- nuitka_winsvc-2.5.6/pyproject.toml +0 -19
- nuitka_winsvc-2.5.6/setup.py +0 -496
- nuitka_winsvc-2.5.6/tests/basics/AssertsTest.py +0 -75
- nuitka_winsvc-2.5.6/tests/basics/AssignmentsTest.py +0 -285
- nuitka_winsvc-2.5.6/tests/basics/AssignmentsTest32.py +0 -218
- nuitka_winsvc-2.5.6/tests/basics/BranchingTest.py +0 -193
- nuitka_winsvc-2.5.6/tests/basics/BuiltinOverload.py +0 -35
- nuitka_winsvc-2.5.6/tests/basics/BuiltinSuperTest.py +0 -158
- nuitka_winsvc-2.5.6/tests/basics/BuiltinsTest.py +0 -755
- nuitka_winsvc-2.5.6/tests/basics/ClassMinimalTest.py +0 -28
- nuitka_winsvc-2.5.6/tests/basics/ClassesTest.py +0 -244
- nuitka_winsvc-2.5.6/tests/basics/ClassesTest32.py +0 -161
- nuitka_winsvc-2.5.6/tests/basics/ClassesTest34.py +0 -53
- nuitka_winsvc-2.5.6/tests/basics/ComparisonChainsTest.py +0 -228
- nuitka_winsvc-2.5.6/tests/basics/ConstantsTest.py +0 -189
- nuitka_winsvc-2.5.6/tests/basics/ConstantsTest27.py +0 -28
- nuitka_winsvc-2.5.6/tests/basics/DecoratorsTest.py +0 -76
- nuitka_winsvc-2.5.6/tests/basics/DefaultParametersTest.py +0 -83
- nuitka_winsvc-2.5.6/tests/basics/DoubleDeletionsTest.py +0 -44
- nuitka_winsvc-2.5.6/tests/basics/EmptyModuleTest.py +0 -19
- nuitka_winsvc-2.5.6/tests/basics/ExceptionRaisingTest32.py +0 -633
- nuitka_winsvc-2.5.6/tests/basics/ExceptionRaisingTest33.py +0 -41
- nuitka_winsvc-2.5.6/tests/basics/ExceptionRaisingTest_2.py +0 -653
- nuitka_winsvc-2.5.6/tests/basics/ExecEvalTest_2.py +0 -361
- nuitka_winsvc-2.5.6/tests/basics/ExtremeClosureTest.py +0 -60
- nuitka_winsvc-2.5.6/tests/basics/FunctionObjectsTest.py +0 -59
- nuitka_winsvc-2.5.6/tests/basics/FunctionsTest.py +0 -611
- nuitka_winsvc-2.5.6/tests/basics/FunctionsTest32.py +0 -196
- nuitka_winsvc-2.5.6/tests/basics/FunctionsTest_2.py +0 -117
- nuitka_winsvc-2.5.6/tests/basics/FutureTest32.py +0 -23
- nuitka_winsvc-2.5.6/tests/basics/GeneratorExpressionsTest.py +0 -251
- nuitka_winsvc-2.5.6/tests/basics/GeneratorExpressionsTest_37.py +0 -31
- nuitka_winsvc-2.5.6/tests/basics/GlobalStatementTest.py +0 -207
- nuitka_winsvc-2.5.6/tests/basics/HelloWorldTest_2.py +0 -48
- nuitka_winsvc-2.5.6/tests/basics/ImportingTest.py +0 -103
- nuitka_winsvc-2.5.6/tests/basics/InplaceOperationsTest.py +0 -60
- nuitka_winsvc-2.5.6/tests/basics/InspectionTest.py +0 -160
- nuitka_winsvc-2.5.6/tests/basics/InspectionTest_35.py +0 -41
- nuitka_winsvc-2.5.6/tests/basics/InspectionTest_36.py +0 -42
- nuitka_winsvc-2.5.6/tests/basics/LambdasTest.py +0 -73
- nuitka_winsvc-2.5.6/tests/basics/LateClosureAssignmentTest.py +0 -127
- nuitka_winsvc-2.5.6/tests/basics/ListContractionsTest.py +0 -124
- nuitka_winsvc-2.5.6/tests/basics/LoopingTest.py +0 -159
- nuitka_winsvc-2.5.6/tests/basics/MainProgramsTest.py +0 -49
- nuitka_winsvc-2.5.6/tests/basics/ModuleAttributesTest.py +0 -69
- nuitka_winsvc-2.5.6/tests/basics/OperatorsTest.py +0 -93
- nuitka_winsvc-2.5.6/tests/basics/OrderChecksTest.py +0 -699
- nuitka_winsvc-2.5.6/tests/basics/OrderChecksTest27.py +0 -62
- nuitka_winsvc-2.5.6/tests/basics/OverflowFunctionsTest_2.py +0 -52
- nuitka_winsvc-2.5.6/tests/basics/ParameterErrorsTest.py +0 -294
- nuitka_winsvc-2.5.6/tests/basics/ParameterErrorsTest32.py +0 -83
- nuitka_winsvc-2.5.6/tests/basics/PrintFutureTest.py +0 -22
- nuitka_winsvc-2.5.6/tests/basics/PrintingTest_2.py +0 -49
- nuitka_winsvc-2.5.6/tests/basics/RecursionTest.py +0 -30
- nuitka_winsvc-2.5.6/tests/basics/ReferencingTest.py +0 -1383
- nuitka_winsvc-2.5.6/tests/basics/ReferencingTest27.py +0 -84
- nuitka_winsvc-2.5.6/tests/basics/ReferencingTest33.py +0 -434
- nuitka_winsvc-2.5.6/tests/basics/ReferencingTest35.py +0 -249
- nuitka_winsvc-2.5.6/tests/basics/ReferencingTest36.py +0 -253
- nuitka_winsvc-2.5.6/tests/basics/ReferencingTest_2.py +0 -133
- nuitka_winsvc-2.5.6/tests/basics/SlotsTest.py +0 -86
- nuitka_winsvc-2.5.6/tests/basics/ThreadedGeneratorsTest.py +0 -43
- nuitka_winsvc-2.5.6/tests/basics/TrickAssignmentsTest32.py +0 -1312
- nuitka_winsvc-2.5.6/tests/basics/TrickAssignmentsTest35.py +0 -58
- nuitka_winsvc-2.5.6/tests/basics/TrickAssignmentsTest_2.py +0 -76
- nuitka_winsvc-2.5.6/tests/basics/TryContinueFinallyTest.py +0 -94
- nuitka_winsvc-2.5.6/tests/basics/TryExceptContinueTest.py +0 -100
- nuitka_winsvc-2.5.6/tests/basics/TryExceptFinallyTest.py +0 -111
- nuitka_winsvc-2.5.6/tests/basics/TryExceptFramesTest.py +0 -95
- nuitka_winsvc-2.5.6/tests/basics/TryReturnFinallyTest.py +0 -115
- nuitka_winsvc-2.5.6/tests/basics/TryYieldFinallyTest.py +0 -95
- nuitka_winsvc-2.5.6/tests/basics/UnicodeTest.py +0 -40
- nuitka_winsvc-2.5.6/tests/basics/UnpackingTest35.py +0 -80
- nuitka_winsvc-2.5.6/tests/basics/VarargsTest.py +0 -71
- nuitka_winsvc-2.5.6/tests/basics/WithStatementsTest.py +0 -192
- nuitka_winsvc-2.5.6/tests/basics/YieldFromTest33.py +0 -137
- nuitka_winsvc-2.5.6/tests/basics/run_all.py +0 -120
- nuitka_winsvc-2.5.6/tests/basics/run_xml.py +0 -82
- nuitka_winsvc-2.5.6/tests/onefile/HelloWorldTest.py +0 -34
- nuitka_winsvc-2.5.6/tests/onefile/KeyboardInterruptTest.py +0 -40
- nuitka_winsvc-2.5.6/tests/onefile/run_all.py +0 -186
- nuitka_winsvc-2.5.6/tests/optimizations/ArgumentTypes.py +0 -23
- nuitka_winsvc-2.5.6/tests/optimizations/AttributesTest.py +0 -28
- nuitka_winsvc-2.5.6/tests/optimizations/CallsTest.py +0 -27
- nuitka_winsvc-2.5.6/tests/optimizations/ConditionsTest.py +0 -21
- nuitka_winsvc-2.5.6/tests/optimizations/DecodingOperationsTest.py +0 -21
- nuitka_winsvc-2.5.6/tests/optimizations/FormatStringsTest36.py +0 -45
- nuitka_winsvc-2.5.6/tests/optimizations/HardImportsTest.py +0 -38
- nuitka_winsvc-2.5.6/tests/optimizations/HardImportsTest_2.py +0 -26
- nuitka_winsvc-2.5.6/tests/optimizations/Iterations.py +0 -21
- nuitka_winsvc-2.5.6/tests/optimizations/LenTest.py +0 -33
- nuitka_winsvc-2.5.6/tests/optimizations/MatchingTest310.py +0 -32
- nuitka_winsvc-2.5.6/tests/optimizations/OperationsTest.py +0 -109
- nuitka_winsvc-2.5.6/tests/optimizations/SubscriptsTest.py +0 -35
- nuitka_winsvc-2.5.6/tests/optimizations/run_all.py +0 -273
- nuitka_winsvc-2.5.6/tests/packages/package_data_files_embedding/PackageDataFilesEmbedding.py +0 -40
- nuitka_winsvc-2.5.6/tests/packages/package_data_files_embedding/__init__.py +0 -21
- nuitka_winsvc-2.5.6/tests/packages/package_import_success_after_failure/PackageImportSuccessAfterFailure.py +0 -81
- nuitka_winsvc-2.5.6/tests/packages/package_import_success_after_failure/variable_package/SomeModule.py +0 -23
- nuitka_winsvc-2.5.6/tests/packages/package_import_success_after_failure/variable_package/__init__.py +0 -42
- nuitka_winsvc-2.5.6/tests/packages/run_all.py +0 -135
- nuitka_winsvc-2.5.6/tests/packages/sub_package/kitty/__init__.py +0 -34
- nuitka_winsvc-2.5.6/tests/packages/sub_package/kitty/bigkitty.py +0 -21
- nuitka_winsvc-2.5.6/tests/packages/sub_package/kitty/smallkitty.py +0 -21
- nuitka_winsvc-2.5.6/tests/packages/sub_package/kitty/speak/__init__.py +0 -21
- nuitka_winsvc-2.5.6/tests/packages/sub_package/kitty/speak/hello.py +0 -29
- nuitka_winsvc-2.5.6/tests/packages/sub_package/kitty/speak/miau.py +0 -26
- nuitka_winsvc-2.5.6/tests/packages/sub_package/kitty/speak/purr.py +0 -26
- nuitka_winsvc-2.5.6/tests/packages/top_level_attributes_3/some_package/__init__.py +0 -66
- nuitka_winsvc-2.5.6/tests/packages/top_level_attributes_3/some_package/some_module.py +0 -21
- nuitka_winsvc-2.5.6/tests/plugins/code_signing/CodeSigningMain.py +0 -28
- nuitka_winsvc-2.5.6/tests/plugins/data_files/DataFilesMain.py +0 -39
- nuitka_winsvc-2.5.6/tests/plugins/data_files/data_files_package/__init__.py +0 -21
- nuitka_winsvc-2.5.6/tests/plugins/dill_compat/DillCompatMain.py +0 -292
- nuitka_winsvc-2.5.6/tests/plugins/parameters/ParametersMain.py +0 -33
- nuitka_winsvc-2.5.6/tests/plugins/parameters/parameter-using-plugin.py +0 -64
- nuitka_winsvc-2.5.6/tests/plugins/run_all.py +0 -119
- nuitka_winsvc-2.5.6/tests/programs/absolute_import/AbsoluteImportMain.py +0 -24
- nuitka_winsvc-2.5.6/tests/programs/absolute_import/foobar/__init__.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/absolute_import/foobar/foobar.py +0 -33
- nuitka_winsvc-2.5.6/tests/programs/absolute_import/foobar/local.py +0 -25
- nuitka_winsvc-2.5.6/tests/programs/absolute_import/foobar/util.py +0 -26
- nuitka_winsvc-2.5.6/tests/programs/case_imports1/CasedImportingMain.py +0 -20
- nuitka_winsvc-2.5.6/tests/programs/case_imports1/path1/Some_Module.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/case_imports1/path1/Some_Package/__init__.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/case_imports1/path2/some_module.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/case_imports1/path2/some_package/__init__.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/case_imports2/CasedImportingMain.py +0 -20
- nuitka_winsvc-2.5.6/tests/programs/case_imports2/path1/some_module.py +0 -16
- nuitka_winsvc-2.5.6/tests/programs/case_imports2/path1/some_package/__init__.py +0 -16
- nuitka_winsvc-2.5.6/tests/programs/case_imports2/path2/Some_Module.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/case_imports2/path2/Some_Package/__init__.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/case_imports3/CasedImportingMain.py +0 -31
- nuitka_winsvc-2.5.6/tests/programs/case_imports3/path1/Some_Module.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/case_imports3/path1/Some_Package/__init__.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/case_imports3/path2/Some_Module.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/case_imports3/path2/Some_Package/__init__.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/cyclic_imports/CyclicImportsMain.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/cyclic_imports/cyclic_importing_package/Child1.py +0 -23
- nuitka_winsvc-2.5.6/tests/programs/cyclic_imports/cyclic_importing_package/Child2.py +0 -23
- nuitka_winsvc-2.5.6/tests/programs/cyclic_imports/cyclic_importing_package/__init__.py +0 -21
- nuitka_winsvc-2.5.6/tests/programs/dash_import/DashImportMain.py +0 -27
- nuitka_winsvc-2.5.6/tests/programs/dash_import/dash-module.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/dash_import/plus+module.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/dash_main/Dash-Main.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/deep/DeepProgramMain.py +0 -24
- nuitka_winsvc-2.5.6/tests/programs/deep/some_package/DeepBrother.py +0 -28
- nuitka_winsvc-2.5.6/tests/programs/deep/some_package/DeepChild.py +0 -52
- nuitka_winsvc-2.5.6/tests/programs/deep/some_package/__init__.py +0 -16
- nuitka_winsvc-2.5.6/tests/programs/deep/some_package/deep_package/DeepDeepChild.py +0 -23
- nuitka_winsvc-2.5.6/tests/programs/deep/some_package/deep_package/__init__.py +0 -24
- nuitka_winsvc-2.5.6/tests/programs/dunderinit_imports/DunderInitImportsMain.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/dunderinit_imports/package/SubModule.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/dunderinit_imports/package/__init__.py +0 -22
- nuitka_winsvc-2.5.6/tests/programs/import_variants/ImportVariationsMain.py +0 -29
- nuitka_winsvc-2.5.6/tests/programs/import_variants/some_package/Child1.py +0 -28
- nuitka_winsvc-2.5.6/tests/programs/import_variants/some_package/Child2.py +0 -31
- nuitka_winsvc-2.5.6/tests/programs/import_variants/some_package/Child3.py +0 -21
- nuitka_winsvc-2.5.6/tests/programs/import_variants/some_package/__init__.py +0 -23
- nuitka_winsvc-2.5.6/tests/programs/main_raises/ErrorMain.py +0 -22
- nuitka_winsvc-2.5.6/tests/programs/main_raises/ErrorRaising.py +0 -21
- nuitka_winsvc-2.5.6/tests/programs/main_raises2/ErrorInFunctionMain.py +0 -36
- nuitka_winsvc-2.5.6/tests/programs/main_raises2/ErrorRaising.py +0 -21
- nuitka_winsvc-2.5.6/tests/programs/module_attributes/ModuleAttributesMain.py +0 -55
- nuitka_winsvc-2.5.6/tests/programs/module_attributes/package_level1/Nearby1.py +0 -67
- nuitka_winsvc-2.5.6/tests/programs/module_attributes/package_level1/__init__.py +0 -57
- nuitka_winsvc-2.5.6/tests/programs/module_attributes/package_level1/package_level2/Nearby2.py +0 -67
- nuitka_winsvc-2.5.6/tests/programs/module_attributes/package_level1/package_level2/__init__.py +0 -57
- nuitka_winsvc-2.5.6/tests/programs/module_attributes/package_level1/package_level2/package_level3/Nearby3.py +0 -67
- nuitka_winsvc-2.5.6/tests/programs/module_attributes/package_level1/package_level2/package_level3/__init__.py +0 -57
- nuitka_winsvc-2.5.6/tests/programs/module_exits/ErrorExitingModule.py +0 -23
- nuitka_winsvc-2.5.6/tests/programs/module_exits/Main.py +0 -23
- nuitka_winsvc-2.5.6/tests/programs/module_object_replacing/ModuleObjectReplacingMain.py +0 -31
- nuitka_winsvc-2.5.6/tests/programs/module_object_replacing/SelfReplacingModule.py +0 -44
- nuitka_winsvc-2.5.6/tests/programs/multiprocessing_using/MultiprocessingUsingMain.py +0 -28
- nuitka_winsvc-2.5.6/tests/programs/multiprocessing_using/foo/__init__.py +0 -16
- nuitka_winsvc-2.5.6/tests/programs/multiprocessing_using/foo/__main__.py +0 -22
- nuitka_winsvc-2.5.6/tests/programs/multiprocessing_using/foo/entry.py +0 -54
- nuitka_winsvc-2.5.6/tests/programs/named_imports/NamedImportsMain.py +0 -21
- nuitka_winsvc-2.5.6/tests/programs/named_imports/some_package/SomeModule.py +0 -16
- nuitka_winsvc-2.5.6/tests/programs/named_imports/some_package/__init__.py +0 -21
- nuitka_winsvc-2.5.6/tests/programs/named_imports/some_package/sub_package/SomeModule.py +0 -16
- nuitka_winsvc-2.5.6/tests/programs/package_code/PackageInitCodeMain.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/package_code/some_package/SomeModule.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/package_code/some_package/__init__.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/package_contains_main/PackageContainsMain.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/package_contains_main/__init__.py +0 -16
- nuitka_winsvc-2.5.6/tests/programs/package_contains_main/local.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/package_init_import/PackageInitImportMain.py +0 -21
- nuitka_winsvc-2.5.6/tests/programs/package_init_import/some_package/PackageLocal.py +0 -32
- nuitka_winsvc-2.5.6/tests/programs/package_init_import/some_package/__init__.py +0 -39
- nuitka_winsvc-2.5.6/tests/programs/package_init_issue/PackageInitIssueMain.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/package_init_issue/some_package/__init__.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/package_init_issue/some_package/child_package/SomeModule.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/package_init_issue/some_package/child_package/__init__.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/package_missing_init/PackageMissingInitMain.py +0 -23
- nuitka_winsvc-2.5.6/tests/programs/package_missing_init/some_package/some_module.py +0 -31
- nuitka_winsvc-2.5.6/tests/programs/package_missing_init/some_package/sub_package/some_sub_module.py +0 -31
- nuitka_winsvc-2.5.6/tests/programs/package_module_collision/PackageAndModuleNamedSameMain.py +0 -24
- nuitka_winsvc-2.5.6/tests/programs/package_module_collision/Something/__init__.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/package_module_collision/something.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/package_overload/Main.py +0 -23
- nuitka_winsvc-2.5.6/tests/programs/package_overload/foo/__init__.py +0 -21
- nuitka_winsvc-2.5.6/tests/programs/package_overload/foo/bar.py +0 -16
- nuitka_winsvc-2.5.6/tests/programs/package_overload/foo/bar2.py +0 -16
- nuitka_winsvc-2.5.6/tests/programs/package_prevents_submodule/PackagePreventsSubmoduleMain.py +0 -112
- nuitka_winsvc-2.5.6/tests/programs/package_prevents_submodule/some_package/__init__.py +0 -43
- nuitka_winsvc-2.5.6/tests/programs/package_prevents_submodule/some_package/some_module.py +0 -21
- nuitka_winsvc-2.5.6/tests/programs/package_program/PackageAsMain/__init__.py +0 -23
- nuitka_winsvc-2.5.6/tests/programs/package_program/PackageAsMain/__main__.py +0 -47
- nuitka_winsvc-2.5.6/tests/programs/pkgutil_itermodules/PkgUtilIterModulesMain.py +0 -54
- nuitka_winsvc-2.5.6/tests/programs/pkgutil_itermodules/some_package/__init__.py +0 -16
- nuitka_winsvc-2.5.6/tests/programs/pkgutil_itermodules/some_package/sub_package1/SomeModuleC.py +0 -16
- nuitka_winsvc-2.5.6/tests/programs/pkgutil_itermodules/some_package/sub_package1/SomeModuleD.py +0 -16
- nuitka_winsvc-2.5.6/tests/programs/pkgutil_itermodules/some_package/sub_package1/__init__.py +0 -16
- nuitka_winsvc-2.5.6/tests/programs/pkgutil_itermodules/some_package/sub_package2/SomeModuleA.py +0 -16
- nuitka_winsvc-2.5.6/tests/programs/pkgutil_itermodules/some_package/sub_package2/SomeModuleB.py +0 -16
- nuitka_winsvc-2.5.6/tests/programs/pkgutil_itermodules/some_package/sub_package2/__init__.py +0 -16
- nuitka_winsvc-2.5.6/tests/programs/pkgutil_usage/PkgUtilUsageMain.py +0 -34
- nuitka_winsvc-2.5.6/tests/programs/pkgutil_usage/package/__init__.py +0 -45
- nuitka_winsvc-2.5.6/tests/programs/plugin_import/PluginImportMain.py +0 -21
- nuitka_winsvc-2.5.6/tests/programs/plugin_import/some_package/__init__.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/plugin_import/some_package/some_module.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/reimport_main_dynamic/ImportItselfDynamicMain.py +0 -25
- nuitka_winsvc-2.5.6/tests/programs/reimport_main_static/ImportItselfStaticMain.py +0 -25
- nuitka_winsvc-2.5.6/tests/programs/relative_import/RelativeImportMain.py +0 -23
- nuitka_winsvc-2.5.6/tests/programs/relative_import/dircache.py +0 -16
- nuitka_winsvc-2.5.6/tests/programs/resource_reader37/ResourceReaderMain.py +0 -32
- nuitka_winsvc-2.5.6/tests/programs/resource_reader37/some_package/__init__.py +0 -16
- nuitka_winsvc-2.5.6/tests/programs/run_all.py +0 -199
- nuitka_winsvc-2.5.6/tests/programs/stdlib_overload/StdlibOverloadMain.py +0 -31
- nuitka_winsvc-2.5.6/tests/programs/stdlib_overload/pyexpat.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/stdlib_overload/some_package/__init__.py +0 -16
- nuitka_winsvc-2.5.6/tests/programs/stdlib_overload/some_package/normal_importing.py +0 -23
- nuitka_winsvc-2.5.6/tests/programs/stdlib_overload/some_package/pyexpat.py +0 -19
- nuitka_winsvc-2.5.6/tests/programs/stdlib_overload/some_package/star_importing.py +0 -35
- nuitka_winsvc-2.5.6/tests/programs/syntax_errors/IndentationErroring.py +0 -22
- nuitka_winsvc-2.5.6/tests/programs/syntax_errors/SyntaxErroring.py +0 -21
- nuitka_winsvc-2.5.6/tests/programs/syntax_errors/SyntaxErrorsMain.py +0 -33
- nuitka_winsvc-2.5.6/tests/programs/unicode_bom/UnicodeBomMain.py +0 -29
- nuitka_winsvc-2.5.6/tests/programs/unicode_bom/unicode_bom.py +0 -22
- nuitka_winsvc-2.5.6/tests/programs/with space/Space Main.py +0 -19
- nuitka_winsvc-2.5.6/tests/reflected/compile_itself.py +0 -518
- nuitka_winsvc-2.5.6/tests/run-tests +0 -44
- nuitka_winsvc-2.5.6/tests/standalone/BrotliUsing.py +0 -28
- nuitka_winsvc-2.5.6/tests/standalone/CtypesUsing.py +0 -83
- nuitka_winsvc-2.5.6/tests/standalone/DateutilsUsing.py +0 -71
- nuitka_winsvc-2.5.6/tests/standalone/FlaskUsing.py +0 -36
- nuitka_winsvc-2.5.6/tests/standalone/GiUsing.py +0 -39
- nuitka_winsvc-2.5.6/tests/standalone/GlfwUsing.py +0 -27
- nuitka_winsvc-2.5.6/tests/standalone/GtkUsing.py +0 -42
- nuitka_winsvc-2.5.6/tests/standalone/HexEncodingTest_2.py +0 -23
- nuitka_winsvc-2.5.6/tests/standalone/IdnaUsing.py +0 -31
- nuitka_winsvc-2.5.6/tests/standalone/LxmlUsing.py +0 -37
- nuitka_winsvc-2.5.6/tests/standalone/MatplotlibUsing.py +0 -46
- nuitka_winsvc-2.5.6/tests/standalone/MetadataPackagesUsing.py +0 -75
- nuitka_winsvc-2.5.6/tests/standalone/NumpyUsing.py +0 -55
- nuitka_winsvc-2.5.6/tests/standalone/OpenGLUsing.py +0 -23
- nuitka_winsvc-2.5.6/tests/standalone/PandasUsing.py +0 -44
- nuitka_winsvc-2.5.6/tests/standalone/PasslibUsing.py +0 -27
- nuitka_winsvc-2.5.6/tests/standalone/PendulumUsing.py +0 -40
- nuitka_winsvc-2.5.6/tests/standalone/PkgResourcesRequiresUsing.py +0 -62
- nuitka_winsvc-2.5.6/tests/standalone/PmwUsing.py +0 -28
- nuitka_winsvc-2.5.6/tests/standalone/PyQt5Plugins.py +0 -38
- nuitka_winsvc-2.5.6/tests/standalone/PyQt5SSLSupport.py +0 -32
- nuitka_winsvc-2.5.6/tests/standalone/PyQt5Using.py +0 -75
- nuitka_winsvc-2.5.6/tests/standalone/PyQt6Plugins.py +0 -31
- nuitka_winsvc-2.5.6/tests/standalone/PyQt6Using.py +0 -74
- nuitka_winsvc-2.5.6/tests/standalone/PySide2Using.py +0 -57
- nuitka_winsvc-2.5.6/tests/standalone/PySide6Plugins.py +0 -28
- nuitka_winsvc-2.5.6/tests/standalone/PySide6Using.py +0 -57
- nuitka_winsvc-2.5.6/tests/standalone/RsaUsing.py +0 -39
- nuitka_winsvc-2.5.6/tests/standalone/SetuptoolsUsing_311.py +0 -34
- nuitka_winsvc-2.5.6/tests/standalone/ShlibUsing.py +0 -25
- nuitka_winsvc-2.5.6/tests/standalone/SocketUsing.py +0 -49
- nuitka_winsvc-2.5.6/tests/standalone/TkInterUsing.py +0 -68
- nuitka_winsvc-2.5.6/tests/standalone/Urllib3Using.py +0 -122
- nuitka_winsvc-2.5.6/tests/standalone/Win32ComUsing.py +0 -34
- nuitka_winsvc-2.5.6/tests/standalone/run_all.py +0 -305
- nuitka_winsvc-2.5.6/tests/standalone/zip_importer/ZipImporterMain.py +0 -35
- nuitka_winsvc-2.5.6/tests/syntax/AsyncgenReturn36.py +0 -22
- nuitka_winsvc-2.5.6/tests/syntax/AwaitInModule36.py +0 -19
- nuitka_winsvc-2.5.6/tests/syntax/BreakWithoutLoop.py +0 -26
- nuitka_winsvc-2.5.6/tests/syntax/ClassReturn.py +0 -21
- nuitka_winsvc-2.5.6/tests/syntax/ClosureDel_2.py +0 -32
- nuitka_winsvc-2.5.6/tests/syntax/ContinueWithoutLoop.py +0 -22
- nuitka_winsvc-2.5.6/tests/syntax/DuplicateArgument.py +0 -21
- nuitka_winsvc-2.5.6/tests/syntax/ExecWithNesting_2.py +0 -29
- nuitka_winsvc-2.5.6/tests/syntax/FutureBraces.py +0 -21
- nuitka_winsvc-2.5.6/tests/syntax/FutureUnknown.py +0 -19
- nuitka_winsvc-2.5.6/tests/syntax/GeneratorExpressions38.py +0 -31
- nuitka_winsvc-2.5.6/tests/syntax/GeneratorReturn_2.py +0 -26
- nuitka_winsvc-2.5.6/tests/syntax/GlobalForParameter.py +0 -21
- nuitka_winsvc-2.5.6/tests/syntax/Importing32.py +0 -29
- nuitka_winsvc-2.5.6/tests/syntax/IndentationError.py +0 -21
- nuitka_winsvc-2.5.6/tests/syntax/LateFutureImport.py +0 -24
- nuitka_winsvc-2.5.6/tests/syntax/MisplacedFutureImport.py +0 -23
- nuitka_winsvc-2.5.6/tests/syntax/ModuleReturn.py +0 -23
- nuitka_winsvc-2.5.6/tests/syntax/NonAsciiWithoutEncoding_2.py +0 -21
- nuitka_winsvc-2.5.6/tests/syntax/NonlocalForParameter32.py +0 -21
- nuitka_winsvc-2.5.6/tests/syntax/NonlocalNotFound32.py +0 -29
- nuitka_winsvc-2.5.6/tests/syntax/StarImportExtra.py +0 -22
- nuitka_winsvc-2.5.6/tests/syntax/SyntaxError.py +0 -24
- nuitka_winsvc-2.5.6/tests/syntax/TryExceptAllNotLast.py +0 -26
- nuitka_winsvc-2.5.6/tests/syntax/TryFinallyContinue_37.py +0 -25
- nuitka_winsvc-2.5.6/tests/syntax/UnpackNoTuple.py +0 -19
- nuitka_winsvc-2.5.6/tests/syntax/UnpackTwoStars32.py +0 -19
- nuitka_winsvc-2.5.6/tests/syntax/YieldFromInModule.py +0 -19
- nuitka_winsvc-2.5.6/tests/syntax/YieldInAsync35.py +0 -21
- nuitka_winsvc-2.5.6/tests/syntax/YieldInGenexp38.py +0 -24
- nuitka_winsvc-2.5.6/tests/syntax/YieldInModule.py +0 -19
- nuitka_winsvc-2.5.6/tests/syntax/run_all.py +0 -83
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/Changelog.rst +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/LICENSE.txt +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/Nuitka_winsvc.egg-info/dependency_links.txt +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/Nuitka_winsvc.egg-info/entry_points.txt +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/Nuitka_winsvc.egg-info/not-zip-safe +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/Nuitka_winsvc.egg-info/requires.txt +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/Nuitka_winsvc.egg-info/top_level.txt +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/doc/Logo/Nuitka-Logo-Horizontal.svg +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/doc/Logo/Nuitka-Logo-Symbol.svg +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/doc/Logo/Nuitka-Logo-Vertical.svg +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/doc/images/Nuitka-Logo-Horizontal.png +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/doc/images/Nuitka-Logo-Symbol.png +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/doc/images/Nuitka-Logo-Vertical.png +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/include/nuitka/hedley.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/include/nuitka/incbin.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/appdirs/LICENSE.txt +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/appdirs/appdirs.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/atomicwrites/LICENSE +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/atomicwrites/atomicwrites.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/bin/scons.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/clcache/clcache/LICENSE +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/clcache/clcache/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/clcache/clcache/caching.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/colorama/LICENSE.txt +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/colorama/colorama/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/colorama/colorama/ansi.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/colorama/colorama/ansitowin32.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/colorama/colorama/initialise.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/colorama/colorama/win32.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/colorama/colorama/winterm.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/glob2/LICENSE +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/glob2/glob2/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/glob2/glob2/compat.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/glob2/glob2/fnmatch.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/glob2/glob2/impl.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/LICENSE.rst +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/README.rst +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/jinja2/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/jinja2/_compat.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/jinja2/_identifier.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/jinja2/bccache.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/jinja2/compiler.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/jinja2/constants.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/jinja2/debug.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/jinja2/defaults.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/jinja2/environment.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/jinja2/exceptions.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/jinja2/ext.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/jinja2/filters.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/jinja2/idtracking.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/jinja2/lexer.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/jinja2/loaders.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/jinja2/meta.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/jinja2/nativetypes.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/jinja2/nodes.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/jinja2/optimizer.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/jinja2/parser.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/jinja2/runtime.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/jinja2/sandbox.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/jinja2/tests.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/jinja2/utils.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2/jinja2/visitor.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/LICENSE.rst +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/README.rst +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/jinja2/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/jinja2/_compat.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/jinja2/_identifier.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/jinja2/bccache.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/jinja2/compiler.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/jinja2/constants.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/jinja2/debug.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/jinja2/defaults.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/jinja2/environment.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/jinja2/exceptions.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/jinja2/ext.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/jinja2/filters.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/jinja2/idtracking.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/jinja2/lexer.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/jinja2/loaders.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/jinja2/meta.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/jinja2/nativetypes.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/jinja2/nodes.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/jinja2/optimizer.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/jinja2/parser.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/jinja2/runtime.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/jinja2/sandbox.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/jinja2/tests.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/jinja2/utils.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/jinja2_35/jinja2/visitor.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Action.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Builder.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/CacheDir.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Conftest.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Debug.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Defaults.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Environment.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Errors.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Executor.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Job.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Memoize.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Node/Alias.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Node/FS.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Node/Python.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Node/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Options/BoolOption.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Options/EnumOption.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Options/ListOption.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Options/PackageOption.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Options/PathOption.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Options/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/PathList.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Platform/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Platform/aix.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Platform/cygwin.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Platform/darwin.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Platform/hpux.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Platform/irix.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Platform/os2.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Platform/posix.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Platform/sunos.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Platform/win32.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/SConf.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/SConsign.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Scanner/C.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Scanner/Dir.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Scanner/Prog.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Scanner/RC.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Scanner/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Script/Interactive.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Script/Main.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Script/SConsOptions.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Script/SConscript.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Script/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Sig.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Subst.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Taskmaster.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/386asm.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/BitKeeper.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/CVS.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/GettextCommon.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/MSCommon/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/MSCommon/arch.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/MSCommon/common.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/MSCommon/netframework.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/MSCommon/sdk.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/MSCommon/vc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/MSCommon/vs.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/Perforce.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/PharLapCommon.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/RCS.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/SCCS.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/Subversion.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/aixc++.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/aixcc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/aixf77.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/aixlink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/applelink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/ar.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/as.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/bcc32.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/c++.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/cc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/cyglink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/default.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/dmd.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/docbook/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/filesystem.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/g++.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/g77.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/gas.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/gcc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/gdc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/gettext.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/gfortran.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/gnulink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/hpc++.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/hpcc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/hplink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/icc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/icl.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/ilink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/ilink32.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/install.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/intelc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/lex.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/link.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/linkloc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/m4.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/masm.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/mingw.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/msgfmt.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/msginit.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/msgmerge.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/mslib.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/mslink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/mssdk.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/msvc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/msvs.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/mwcc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/mwld.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/nasm.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/rmic.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/rpcgen.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/sgiar.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/sgic++.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/sgicc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/sgilink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/sunar.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/sunc++.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/suncc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/sunlink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/tar.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/textfile.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/tlib.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/wix.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/xgettext.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/zip.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Util.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Variables/BoolVariable.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Variables/EnumVariable.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Variables/ListVariable.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Variables/PackageVariable.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Variables/PathVariable.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Variables/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Warnings.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/compat/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/compat/_scons_builtins.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/compat/_scons_collections.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/compat/_scons_dbm.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/compat/_scons_hashlib.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/compat/_scons_io.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/compat/_scons_sets.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/compat/_scons_subprocess.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/cpp.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/dblite.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/exitfuncs.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Action.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Builder.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/CacheDir.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Conftest.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Debug.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Defaults.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Environment.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Errors.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Executor.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Job.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Memoize.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Node/Alias.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Node/FS.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Node/Python.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Node/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/PathList.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Platform/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Platform/aix.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Platform/cygwin.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Platform/darwin.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Platform/hpux.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Platform/irix.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Platform/mingw.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Platform/os2.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Platform/posix.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Platform/sunos.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Platform/virtualenv.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Platform/win32.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/SConf.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/SConsign.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Scanner/C.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Scanner/Dir.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Scanner/Prog.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Scanner/RC.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Scanner/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Script/Interactive.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Script/Main.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Script/SConsOptions.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Script/SConscript.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Script/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Subst.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Taskmaster.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/386asm.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/GettextCommon.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/MSCommon/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/MSCommon/arch.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/MSCommon/common.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/MSCommon/netframework.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/MSCommon/sdk.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/MSCommon/vc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/MSCommon/vs.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/PharLapCommon.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/aixc++.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/aixcc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/aixcxx.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/aixlink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/applelink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/ar.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/as.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/bcc32.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/c++.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/cc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/clang.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/clangCommon/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/clangxx.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/cxx.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/cyglink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/default.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/docbook/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/filesystem.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/g++.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/gas.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/gcc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/gettext_tool.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/gnulink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/gxx.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/hpc++.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/hpcc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/hpcxx.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/hplink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/icc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/icl.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/ilink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/ilink32.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/install.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/intelc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/link.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/linkloc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/m4.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/masm.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/mingw.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/msgfmt.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/msginit.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/msgmerge.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/mslib.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/mslink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/mssdk.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/msvc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/msvs.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/mwcc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/mwld.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/nasm.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/rmic.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/rpcgen.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/sgiar.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/sgic++.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/sgicc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/sgicxx.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/sgilink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/sunar.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/sunc++.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/suncc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/suncxx.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/sunlink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/tar.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/textfile.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/tlib.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/wix.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/xgettext.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/zip.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Util.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Variables/BoolVariable.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Variables/EnumVariable.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Variables/ListVariable.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Variables/PackageVariable.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Variables/PathVariable.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Variables/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Warnings.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/compat/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/compat/_scons_dbm.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/cpp.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/dblite.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/exitfuncs.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Action.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Builder.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/CacheDir.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Conftest.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Debug.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Defaults.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Environment.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/EnvironmentValues.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Errors.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Executor.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Job.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Memoize.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Node/Alias.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Node/FS.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Node/Python.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Node/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/PathList.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Platform/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Platform/aix.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Platform/cygwin.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Platform/darwin.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Platform/hpux.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Platform/irix.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Platform/mingw.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Platform/os2.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Platform/posix.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Platform/sunos.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Platform/virtualenv.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Platform/win32.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/SConf.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/SConsign.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Scanner/C.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Scanner/Dir.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Scanner/Prog.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Scanner/RC.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Scanner/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Script/Interactive.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Script/Main.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Script/SConsOptions.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Script/SConscript.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Script/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Subst.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Taskmaster.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/386asm.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/GettextCommon.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/MSCommon/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/MSCommon/arch.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/MSCommon/common.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/MSCommon/netframework.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/MSCommon/sdk.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/MSCommon/vc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/MSCommon/vs.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/PharLapCommon.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/aixc++.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/aixcc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/aixcxx.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/aixlink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/applelink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/ar.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/as.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/asm.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/bcc32.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/c++.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/cc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/clang.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/clangCommon/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/clangxx.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/cxx.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/cyglink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/default.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/filesystem.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/g++.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/gas.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/gcc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/gettext_tool.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/gnulink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/gxx.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/hpc++.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/hpcc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/hpcxx.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/hplink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/icc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/icl.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/ilink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/ilink32.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/install.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/intelc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/link.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/linkCommon/LoadableModule.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/linkCommon/SharedLibrary.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/linkCommon/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/linkloc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/m4.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/masm.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/mingw.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/msgfmt.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/msginit.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/msgmerge.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/mslib.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/mslink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/mssdk.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/msvc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/msvs.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/mwcc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/mwld.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/nasm.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/rmic.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/rpcgen.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/sgiar.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/sgic++.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/sgicc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/sgicxx.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/sgilink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/sunar.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/sunc++.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/suncc.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/suncxx.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/sunlink.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/tar.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/textfile.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/tlib.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/wix.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/xgettext.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/zip.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Util.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Utilities/ConfigureCache.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Utilities/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Utilities/sconsign.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Variables/BoolVariable.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Variables/EnumVariable.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Variables/ListVariable.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Variables/PackageVariable.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Variables/PathVariable.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Variables/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Warnings.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/compat/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/compat/_scons_dbm.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/compat/win32.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/cpp.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/dblite.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/exitfuncs.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/markupsafe/LICENSE.rst +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/markupsafe/markupsafe/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/markupsafe/markupsafe/_compat.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/markupsafe/markupsafe/_constants.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/markupsafe/markupsafe/_native.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/pkg_resources/pkg_resources/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/pkg_resources/pkg_resources/py31compat.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/python_hacl/LICENSE.txt +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Hash_MD5.c +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Hash_MD5.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Hash_SHA1.c +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Hash_SHA1.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Hash_SHA2.c +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Hash_SHA2.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Hash_SHA3.c +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Hash_SHA3.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/python_hacl/hacl_312/Hacl_Streaming_Types.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/python_hacl/hacl_312/include/krml/FStar_UInt128_Verified.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/python_hacl/hacl_312/include/krml/FStar_UInt_8_16_32_64.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/python_hacl/hacl_312/include/krml/fstar_uint128_struct_endianness.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/python_hacl/hacl_312/include/krml/internal/target.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/python_hacl/hacl_312/include/krml/lowstar_endianness.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/python_hacl/hacl_312/include/krml/types.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/python_hacl/hacl_312/internal/Hacl_Hash_MD5.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/python_hacl/hacl_312/internal/Hacl_Hash_SHA1.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/python_hacl/hacl_312/internal/Hacl_Hash_SHA2.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/python_hacl/hacl_312/internal/Hacl_Hash_SHA3.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/python_hacl/hacl_312/python_hacl_namespaces.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/stubgen/astunparse.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/stubgen/six.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/stubgen/stubgen.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/tqdm/tqdm/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/tqdm/tqdm/_main.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/tqdm/tqdm/_monitor.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/tqdm/tqdm/_tqdm.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/tqdm/tqdm/_tqdm_notebook.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/tqdm/tqdm/_tqdm_pandas.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/tqdm/tqdm/_utils.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/tqdm/tqdm/auto.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/tqdm/tqdm/autonotebook.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/tqdm/tqdm/dask.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/tqdm/tqdm/notebook.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/tqdm/tqdm/std.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/tqdm/tqdm/tk.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/tqdm/tqdm/utils.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/tqdm/tqdm/version.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml/LICENSE +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml/yaml/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml/yaml/composer.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml/yaml/constructor.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml/yaml/cyaml.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml/yaml/dumper.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml/yaml/emitter.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml/yaml/error.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml/yaml/events.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml/yaml/loader.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml/yaml/nodes.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml/yaml/parser.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml/yaml/reader.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml/yaml/representer.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml/yaml/resolver.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml/yaml/scanner.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml/yaml/serializer.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml/yaml/tokens.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_27/LICENSE +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_27/yaml/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_27/yaml/composer.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_27/yaml/constructor.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_27/yaml/cyaml.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_27/yaml/dumper.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_27/yaml/emitter.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_27/yaml/error.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_27/yaml/events.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_27/yaml/loader.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_27/yaml/nodes.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_27/yaml/parser.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_27/yaml/reader.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_27/yaml/representer.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_27/yaml/resolver.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_27/yaml/scanner.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_27/yaml/serializer.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_27/yaml/tokens.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_35/LICENSE +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_35/yaml/__init__.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_35/yaml/composer.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_35/yaml/constructor.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_35/yaml/cyaml.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_35/yaml/dumper.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_35/yaml/emitter.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_35/yaml/error.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_35/yaml/events.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_35/yaml/loader.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_35/yaml/nodes.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_35/yaml/parser.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_35/yaml/reader.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_35/yaml/representer.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_35/yaml/resolver.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_35/yaml/scanner.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_35/yaml/serializer.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/yaml_35/yaml/tokens.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zlib/LICENSE +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zlib/crc32.c +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zlib/crc32.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zlib/zconf.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zlib/zlib.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zlib/zutil.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/LICENSE.txt +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/common/bitstream.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/common/compiler.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/common/cpu.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/common/debug.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/common/entropy_common.c +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/common/error_private.c +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/common/error_private.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/common/fse.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/common/fse_decompress.c +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/common/huf.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/common/mem.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/common/xxhash.c +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/common/xxhash.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/common/zstd_common.c +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/common/zstd_deps.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/common/zstd_errors.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/common/zstd_internal.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/decompress/huf_decompress.c +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/decompress/zstd_ddict.c +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/decompress/zstd_ddict.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/decompress/zstd_decompress.c +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/decompress/zstd_decompress_block.c +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/decompress/zstd_decompress_block.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/decompress/zstd_decompress_internal.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/build/inline_copy/zstd/zstd.h +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/containers/OrderedDicts.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/containers/OrderedSets.py +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/plugins/standard/stdlib2.nuitka-package.config.yml +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/nuitka/plugins/standard/stdlib3.nuitka-package.config.yml +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/setup.cfg +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/tests/plugins/data_files/data_files_package/lala.txt +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/tests/plugins/data_files/data_files_package/sub_dir/lulu.txt +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/tests/plugins/data_files/test_case.nuitka-package.config.yml +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/tests/programs/pkgutil_usage/package/DATA_FILE.txt +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/tests/programs/pkgutil_usage/package/DATA_FILE2.txt +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/tests/programs/pkgutil_usage/package/DATA_FILE3.txt +0 -0
- {nuitka_winsvc-2.5.6 → nuitka_winsvc-2.6.5}/tests/programs/resource_reader37/some_package/DATA_FILE.txt +0 -0
|
@@ -0,0 +1,4683 @@
|
|
|
1
|
+
#########################
|
|
2
|
+
Nuitka Developer Manual
|
|
3
|
+
#########################
|
|
4
|
+
|
|
5
|
+
The purpose of this Developer Manual is to present the current design of
|
|
6
|
+
Nuitka, the project rules, and the motivations for choices made. It is
|
|
7
|
+
intended to be a guide to the source code, and to give explanations that
|
|
8
|
+
don't fit into the source code in comments form.
|
|
9
|
+
|
|
10
|
+
It should be used as a reference for the process of planning and
|
|
11
|
+
documenting decisions we made. Therefore we are e.g. presenting here the
|
|
12
|
+
type inference plans before implementing them. And we update them as we
|
|
13
|
+
proceed.
|
|
14
|
+
|
|
15
|
+
It grows out of discussions and presentations made at conferences as
|
|
16
|
+
well as private conversations or issue tracker.
|
|
17
|
+
|
|
18
|
+
************
|
|
19
|
+
Milestones
|
|
20
|
+
************
|
|
21
|
+
|
|
22
|
+
#. Feature parity with CPython, understand all the language construct
|
|
23
|
+
and behave absolutely compatible.
|
|
24
|
+
|
|
25
|
+
Feature parity has been reached for CPython 2.6 and 2.7. We do not
|
|
26
|
+
target any older CPython release. For CPython 3 up to 3.13 it also
|
|
27
|
+
has been reached. We do not target the older and practically unused
|
|
28
|
+
CPython 3.0 to 3.3 releases.
|
|
29
|
+
|
|
30
|
+
This milestone was reached. Dropping support for Python 2.6 is an
|
|
31
|
+
option, should this prove to be any benefit. Currently it is not, as
|
|
32
|
+
it extends the test coverage only.
|
|
33
|
+
|
|
34
|
+
#. Create the most efficient native code from this. This means to be
|
|
35
|
+
fast with the basic Python object handling.
|
|
36
|
+
|
|
37
|
+
This milestone was reached, although of course, micro optimizations
|
|
38
|
+
to this are happening all the time.
|
|
39
|
+
|
|
40
|
+
#. Then do constant propagation, determine as many values and useful
|
|
41
|
+
constraints as possible at compile time and create more efficient
|
|
42
|
+
code.
|
|
43
|
+
|
|
44
|
+
This milestone is considered almost reached. We continue to discover
|
|
45
|
+
new things, but the infrastructure is there, and these are easy to
|
|
46
|
+
add.
|
|
47
|
+
|
|
48
|
+
#. Type inference, detect and special case the handling of strings,
|
|
49
|
+
integers, lists in the program.
|
|
50
|
+
|
|
51
|
+
This milestone is considered in progress.
|
|
52
|
+
|
|
53
|
+
#. Add interfacing to C code, so Nuitka can turn a ``ctypes`` binding
|
|
54
|
+
into an efficient binding as written with C.
|
|
55
|
+
|
|
56
|
+
This milestone is planned only.
|
|
57
|
+
|
|
58
|
+
#. Add hints module with a useful Python implementation that the
|
|
59
|
+
compiler can use to learn about types from the programmer.
|
|
60
|
+
|
|
61
|
+
This milestone is planned only.
|
|
62
|
+
|
|
63
|
+
*****************
|
|
64
|
+
Version Numbers
|
|
65
|
+
*****************
|
|
66
|
+
|
|
67
|
+
For Nuitka we use semantic versioning, initially with a leading zero
|
|
68
|
+
still, once we pass release ``1.9``, the scheme will indicate the ``10``
|
|
69
|
+
through using ``2.0``.
|
|
70
|
+
|
|
71
|
+
***************
|
|
72
|
+
Current State
|
|
73
|
+
***************
|
|
74
|
+
|
|
75
|
+
Nuitka top level works like this:
|
|
76
|
+
|
|
77
|
+
- ``nuitka.tree.Building`` outputs node tree
|
|
78
|
+
|
|
79
|
+
- ``nuitka.optimization`` enhances it as best as it can
|
|
80
|
+
|
|
81
|
+
- ``nuitka.finalization`` prepares the tree for code generation
|
|
82
|
+
|
|
83
|
+
- ``nuitka.code_generation.CodeGeneration`` orchestrates the creation
|
|
84
|
+
of code snippets
|
|
85
|
+
|
|
86
|
+
- ``nuitka.code_generation.*Codes`` knows how specific code kinds are
|
|
87
|
+
created
|
|
88
|
+
|
|
89
|
+
- ``nuitka.MainControl`` keeps it all together
|
|
90
|
+
|
|
91
|
+
This design is intended to last.
|
|
92
|
+
|
|
93
|
+
Regarding types, the state is:
|
|
94
|
+
|
|
95
|
+
- Types are always ``PyObject *``, and only a few C types, e.g.
|
|
96
|
+
``nuitka_bool`` and ``nuitka_void`` and more are coming. Even for
|
|
97
|
+
objects, often it's know that things are e.g. really a
|
|
98
|
+
``PyTupleObject **``, but no C type is available for that yet.
|
|
99
|
+
|
|
100
|
+
- There are a some specific use of types beyond "compile time
|
|
101
|
+
constant", that are encoded in type and value shapes, which can be
|
|
102
|
+
used to predict some operations, conditions, etc. if they raise, and
|
|
103
|
+
result types they give.
|
|
104
|
+
|
|
105
|
+
- In code generation, the supported C types are used, and sometimes we
|
|
106
|
+
have specialized code generation, e.g. a binary operation that takes
|
|
107
|
+
an ``int`` and a ``float`` and produces a ``float`` value. There will
|
|
108
|
+
be fallbacks to less specific types.
|
|
109
|
+
|
|
110
|
+
The expansion with more C types is currently in progress, and there will
|
|
111
|
+
also be alternative C types, where e.g. ``PyObject *`` and ``C long``
|
|
112
|
+
are in an enum that indicates which value is valid, and where special
|
|
113
|
+
code will be available that can avoid creating the ``PyObject **``
|
|
114
|
+
unless the later overflows.
|
|
115
|
+
|
|
116
|
+
***************************************************
|
|
117
|
+
Setting up the Development Environment for Nuitka
|
|
118
|
+
***************************************************
|
|
119
|
+
|
|
120
|
+
Currently there are very different kinds of files that we need support
|
|
121
|
+
for. This is best addressed with an IDE. We cover here how to setup the
|
|
122
|
+
most common one.
|
|
123
|
+
|
|
124
|
+
Visual Studio Code
|
|
125
|
+
==================
|
|
126
|
+
|
|
127
|
+
Download Visual Studio Code from here:
|
|
128
|
+
https://code.visualstudio.com/download
|
|
129
|
+
|
|
130
|
+
At this time, this is the recommended IDE for Linux and Windows. This is
|
|
131
|
+
going to cover the plugins to install. Configuration is part of the
|
|
132
|
+
``.vscode`` in your Nuitka checkout. If you are not familiar with
|
|
133
|
+
Eclipse, this is Free Software IDE,designed to be universally extended,
|
|
134
|
+
and it truly is. There are plugins available for nearly everything.
|
|
135
|
+
|
|
136
|
+
The extensions to be installed are part of the Visual Code
|
|
137
|
+
recommendations in ``.vscode/extensions.json`` and you will be prompted
|
|
138
|
+
about that and ought to install these.
|
|
139
|
+
|
|
140
|
+
Eclipse / PyCharm
|
|
141
|
+
=================
|
|
142
|
+
|
|
143
|
+
Don't use these anymore, we consider Visual Studio Code to be far
|
|
144
|
+
superior for delivering a nice out of the box environment.
|
|
145
|
+
|
|
146
|
+
*************************
|
|
147
|
+
Commit and Code Hygiene
|
|
148
|
+
*************************
|
|
149
|
+
|
|
150
|
+
In Nuitka we have tools to auto format code, you can execute them
|
|
151
|
+
manually, but it's probably best to execute them at commit time, to make
|
|
152
|
+
sure when we share code, it's already well format, and to avoid noise
|
|
153
|
+
doing cleanups.
|
|
154
|
+
|
|
155
|
+
The kinds of changes also often cause unnecessary merge conflicts, while
|
|
156
|
+
the auto format is designed to format code also in a way that it avoids
|
|
157
|
+
merge conflicts in the normal case, e.g. by doing imports one item per
|
|
158
|
+
line.
|
|
159
|
+
|
|
160
|
+
In order to set up hooks, you need to execute these commands:
|
|
161
|
+
|
|
162
|
+
.. code:: bash
|
|
163
|
+
|
|
164
|
+
# Where python is the one you use with Nuitka, this then gets all
|
|
165
|
+
# development requirements, can be full PATH.
|
|
166
|
+
python -m pip install -r requirements-devel.txt
|
|
167
|
+
python ./misc/install-git-hooks.py
|
|
168
|
+
|
|
169
|
+
These commands will make sure that the ``autoformat-nuitka-source`` is
|
|
170
|
+
run on every staged file content at the time you do the commit. For C
|
|
171
|
+
files, it may complain unavailability of ``clang-format``, follow it's
|
|
172
|
+
advice. You may call the above tool at all times, without arguments to
|
|
173
|
+
format call Nuitka source code.
|
|
174
|
+
|
|
175
|
+
Should you encounter problems with applying the changes to the checked
|
|
176
|
+
out file, you can always execute it with ``COMMIT_UNCHECKED=1``
|
|
177
|
+
environment set.
|
|
178
|
+
|
|
179
|
+
*********************
|
|
180
|
+
Coding Rules Python
|
|
181
|
+
*********************
|
|
182
|
+
|
|
183
|
+
These rules should generally be adhered when working on Nuitka code.
|
|
184
|
+
It's not library code and it's optimized for readability, and avoids all
|
|
185
|
+
performance optimization for itself.
|
|
186
|
+
|
|
187
|
+
Tool to format
|
|
188
|
+
==============
|
|
189
|
+
|
|
190
|
+
There is a tool ``bin/autoformat-nuitka-source`` which is to apply
|
|
191
|
+
automatic formatting to code as much as possible. It uses ``black``
|
|
192
|
+
(internally) for consistent code formatting. The imports are sorted with
|
|
193
|
+
``isort`` for proper order.
|
|
194
|
+
|
|
195
|
+
The tool (mostly ``black`` and ``isort``) encodes all formatting rules,
|
|
196
|
+
and makes the decisions for us. The idea being that we can focus on
|
|
197
|
+
actual code and do not have to care as much about other things. It also
|
|
198
|
+
deals with Windows new lines, trailing space, etc. and even sorts PyLint
|
|
199
|
+
disable statements.
|
|
200
|
+
|
|
201
|
+
Identifiers
|
|
202
|
+
===========
|
|
203
|
+
|
|
204
|
+
Classes
|
|
205
|
+
-------
|
|
206
|
+
|
|
207
|
+
Classes are camel case with leading upper case. Functions and methods
|
|
208
|
+
are with leading verb in lower case, but also camel case. Variables and
|
|
209
|
+
arguments are lower case with ``_`` as a separator.
|
|
210
|
+
|
|
211
|
+
.. code:: python
|
|
212
|
+
|
|
213
|
+
class SomeClass:
|
|
214
|
+
def doSomething(some_parameter):
|
|
215
|
+
some_var = ("foo", "bar")
|
|
216
|
+
|
|
217
|
+
Base classes that are abstract have their name end with ``Base``, so
|
|
218
|
+
that a meta class can use that convention, and readers immediately know,
|
|
219
|
+
that it will not be instantiated like that.
|
|
220
|
+
|
|
221
|
+
Functions
|
|
222
|
+
---------
|
|
223
|
+
|
|
224
|
+
Function calls use keyword argument preferably. These are slower in
|
|
225
|
+
CPython, but more readable:
|
|
226
|
+
|
|
227
|
+
.. code:: python
|
|
228
|
+
|
|
229
|
+
getSequenceCreationCode(
|
|
230
|
+
sequence_kind=sequence_kind, element_identifiers=identifiers, context=context
|
|
231
|
+
)
|
|
232
|
+
|
|
233
|
+
When the names don't add much value, sequential calls can be done:
|
|
234
|
+
|
|
235
|
+
.. code:: python
|
|
236
|
+
|
|
237
|
+
context.setLoopContinueTarget(handler_start_target)
|
|
238
|
+
|
|
239
|
+
Here, ``setLoopContinueTarget`` will be so well known that the reader is
|
|
240
|
+
expected to know the argument names and their meaning, but it would be
|
|
241
|
+
still better to add them. But in this instance, the variable name
|
|
242
|
+
already indicates that it is.
|
|
243
|
+
|
|
244
|
+
Module/Package Names
|
|
245
|
+
--------------------
|
|
246
|
+
|
|
247
|
+
Normal modules are named in camel case with leading upper case, because
|
|
248
|
+
of their role as singleton classes. The difference between a module and
|
|
249
|
+
a class is small enough and in the source code they are also used
|
|
250
|
+
similarly.
|
|
251
|
+
|
|
252
|
+
For the packages, no real code is allowed in their ``__init__.py`` and
|
|
253
|
+
they must be lower case, like e.g. ``nuitka`` or ``codegen``. This is to
|
|
254
|
+
distinguish them from the modules.
|
|
255
|
+
|
|
256
|
+
Packages shall only be used to group things. In
|
|
257
|
+
``nuitka.code_generation`` the code generation packages are located,
|
|
258
|
+
while the main interface is ``nuitka.code_generation.CodeGeneration``
|
|
259
|
+
and may then use most of the entries as local imports.
|
|
260
|
+
|
|
261
|
+
There is no code in packages themselves. For programs, we use
|
|
262
|
+
``__main__`` package to carry the actual code.
|
|
263
|
+
|
|
264
|
+
Names of modules should be plurals if they contain classes. Example is
|
|
265
|
+
that a ``Nodes`` module that contains a ``Node`` class.
|
|
266
|
+
|
|
267
|
+
Context Managers
|
|
268
|
+
----------------
|
|
269
|
+
|
|
270
|
+
Names for context manages start with ``with``
|
|
271
|
+
|
|
272
|
+
In order to easily recognize that something is to be used as a context
|
|
273
|
+
manager, we follow a pattern of naming them ``withSomething``, to make
|
|
274
|
+
that easily recognized.
|
|
275
|
+
|
|
276
|
+
.. code:: python
|
|
277
|
+
|
|
278
|
+
with withEnvironmentPathAdded(os.path.join(sys.prefix, "bin")):
|
|
279
|
+
with withDirectoryChange(self.qt_datadir):
|
|
280
|
+
...
|
|
281
|
+
|
|
282
|
+
This makes these easy to recognize even in their definition.
|
|
283
|
+
|
|
284
|
+
Prefer list contractions over built-ins
|
|
285
|
+
=======================================
|
|
286
|
+
|
|
287
|
+
This concerns ``map``, ``filter``, and ``apply``. Usage of these
|
|
288
|
+
built-ins is highly discouraged within Nuitka source code. Using them is
|
|
289
|
+
considered worth a warning by "PyLint" e.g. "Used built-in function
|
|
290
|
+
'map'". We should use list contractions instead, because they are more
|
|
291
|
+
readable.
|
|
292
|
+
|
|
293
|
+
List contractions are a generalization for all of them. We love
|
|
294
|
+
readability and with Nuitka as a compiler, there won't be any
|
|
295
|
+
performance difference at all.
|
|
296
|
+
|
|
297
|
+
There are cases where a list contraction is faster because you can avoid
|
|
298
|
+
to make a function call. And there may be cases, where map is faster, if
|
|
299
|
+
a function must be called. These calls can be very expensive in CPython,
|
|
300
|
+
and if you introduce a function, just for ``map``, then it might be
|
|
301
|
+
slower.
|
|
302
|
+
|
|
303
|
+
But of course, Nuitka is the project to free us from what is faster and
|
|
304
|
+
to allow us to use what is more readable, so whatever is faster, we
|
|
305
|
+
don't care. We make all options equally fast and let people choose.
|
|
306
|
+
|
|
307
|
+
For Nuitka the choice is list contractions as these are more easily
|
|
308
|
+
changed and readable.
|
|
309
|
+
|
|
310
|
+
Look at this code examples from Python:
|
|
311
|
+
|
|
312
|
+
.. code:: python
|
|
313
|
+
|
|
314
|
+
class A:
|
|
315
|
+
def getX(self):
|
|
316
|
+
return 1
|
|
317
|
+
|
|
318
|
+
x = property(getX)
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
class B(A):
|
|
322
|
+
def getX(self):
|
|
323
|
+
return 2
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
A().x == 1 # True
|
|
327
|
+
B().x == 1 # True (!)
|
|
328
|
+
|
|
329
|
+
This pretty much is what makes properties bad. One would hope ``B().x``
|
|
330
|
+
to be ``2``, but instead it's not changed. Because of the way properties
|
|
331
|
+
take the functions and not members, and because they then are not part
|
|
332
|
+
of the class, they cannot be overloaded without redeclaring them.
|
|
333
|
+
|
|
334
|
+
Overloading is then not at all obvious anymore. Now imagine having a
|
|
335
|
+
setter and only overloading the getter. How to update the property
|
|
336
|
+
easily?
|
|
337
|
+
|
|
338
|
+
So, that's not likable about them. And then we are also for clarity in
|
|
339
|
+
these internal APIs too. Properties try and hide the fact that code
|
|
340
|
+
needs to run and may do things. So let's not use them.
|
|
341
|
+
|
|
342
|
+
For an external API you may exactly want to hide things, but internally
|
|
343
|
+
that has no use, and in Nuitka, every API is internal API. One exception
|
|
344
|
+
may be the ``hints`` module, which will gladly use such tricks for an
|
|
345
|
+
easier write syntax.
|
|
346
|
+
|
|
347
|
+
****************
|
|
348
|
+
Coding Rules C
|
|
349
|
+
****************
|
|
350
|
+
|
|
351
|
+
For the static C parts, e.g. compiled types, helper codes, the
|
|
352
|
+
``clang-format`` from LLVM project is used, the tool
|
|
353
|
+
``autoformat-nuitka-source`` does this for us.
|
|
354
|
+
|
|
355
|
+
We always have blocks for conditional statements to avoid typical
|
|
356
|
+
mistakes made by adding a statement to a branch, forgetting to make it a
|
|
357
|
+
block.
|
|
358
|
+
|
|
359
|
+
**********************
|
|
360
|
+
The "git flow" model
|
|
361
|
+
**********************
|
|
362
|
+
|
|
363
|
+
- The flow is used for releases and occasionally subsequent hot fixes.
|
|
364
|
+
|
|
365
|
+
A few feature branches were used so far. It allows for quick delivery
|
|
366
|
+
of fixes to both the stable and the development version, supported by
|
|
367
|
+
a git plug-in, that can be installed via "apt-get install git-flow".
|
|
368
|
+
|
|
369
|
+
- Stable (``main`` branch)
|
|
370
|
+
|
|
371
|
+
The stable version, is expected to pass all the tests at all times
|
|
372
|
+
and is fully supported. As soon as bugs are discovered, they are
|
|
373
|
+
fixed as hot fixes, and then merged to develop by the "git flow"
|
|
374
|
+
automatically.
|
|
375
|
+
|
|
376
|
+
- Development (``develop`` branch)
|
|
377
|
+
|
|
378
|
+
The future release, supposedly in almost ready for release state at
|
|
379
|
+
nearly all times, but this is less strict. It is not officially
|
|
380
|
+
supported, and may have problems and at times inconsistencies.
|
|
381
|
+
Normally this branch is supposed to not be rebased. For severe
|
|
382
|
+
problems it may be done though.
|
|
383
|
+
|
|
384
|
+
- Factory (default feature branch)
|
|
385
|
+
|
|
386
|
+
Code under construction. We publish commits there, that may not hold
|
|
387
|
+
up in testing, and before it enters develop branch. Factory may have
|
|
388
|
+
severe regressions frequently, and commits become **rebased all the
|
|
389
|
+
time**, so do not base your patches on it, please prefer the
|
|
390
|
+
``develop`` branch for that, unless of course, it's about factory
|
|
391
|
+
code itself.
|
|
392
|
+
|
|
393
|
+
- Personal branches (jorj, orsiris, others as well)
|
|
394
|
+
|
|
395
|
+
We are currently not using this, but it's an option.
|
|
396
|
+
|
|
397
|
+
- Feature Branches
|
|
398
|
+
|
|
399
|
+
We are not currently using these. They could be used for long lived
|
|
400
|
+
changes that extend for multiple release cycles and are not ready
|
|
401
|
+
yet. Currently we perform all changes in steps that can be included
|
|
402
|
+
in releases or delay making those changes.
|
|
403
|
+
|
|
404
|
+
******************************
|
|
405
|
+
Nuitka "git/github" Workflow
|
|
406
|
+
******************************
|
|
407
|
+
|
|
408
|
+
- Forking and cloning
|
|
409
|
+
|
|
410
|
+
You need to have git installed and GitHub account. Goto Nuitka
|
|
411
|
+
repository <https://github.com/Nuitka/Nuitka> and fork the
|
|
412
|
+
repository.
|
|
413
|
+
|
|
414
|
+
To clone it to your local machine execute the following your git
|
|
415
|
+
bash:
|
|
416
|
+
|
|
417
|
+
.. code:: bash
|
|
418
|
+
|
|
419
|
+
git clone https://github.com/your-user-name/Nuitka.git
|
|
420
|
+
cd Nuitka
|
|
421
|
+
git remote add upstream https://github.com/Nuitka/Nuitka.git
|
|
422
|
+
|
|
423
|
+
- Create a Branch
|
|
424
|
+
|
|
425
|
+
.. code:: bash
|
|
426
|
+
|
|
427
|
+
git checkout develop
|
|
428
|
+
git pull --rebase upstream
|
|
429
|
+
git checkout -b feature_branch
|
|
430
|
+
|
|
431
|
+
If you are having merge conflicts while doing the previous step, then
|
|
432
|
+
check out (DON'T FORGET TO SAVE YOUR CHANGES FIRST IF ANY):
|
|
433
|
+
<https://stackoverflow.com/questions/1125968/how-do-i-force-git-pull-to-overwrite-local-files>
|
|
434
|
+
|
|
435
|
+
- In case you have an existing branch rebase it to develop
|
|
436
|
+
|
|
437
|
+
.. code:: bash
|
|
438
|
+
|
|
439
|
+
git fetch upstream
|
|
440
|
+
git rebase upstream/develop
|
|
441
|
+
|
|
442
|
+
Fix the merge conflicts if any and continue or skip commit if it is
|
|
443
|
+
not your. Sometimes for important bug fixes, develop history gets
|
|
444
|
+
rewritten. In that case, old and new commits will conflict during
|
|
445
|
+
your rebase, and skipping is the best way to go.
|
|
446
|
+
|
|
447
|
+
.. code:: bash
|
|
448
|
+
|
|
449
|
+
git rebase --continue
|
|
450
|
+
# not your commit:
|
|
451
|
+
git rebase --skip
|
|
452
|
+
|
|
453
|
+
If anything goes wrong while rebasing:
|
|
454
|
+
|
|
455
|
+
.. code:: bash
|
|
456
|
+
|
|
457
|
+
git rebase --abort
|
|
458
|
+
|
|
459
|
+
- Making changes
|
|
460
|
+
|
|
461
|
+
.. code:: bash
|
|
462
|
+
|
|
463
|
+
git commit -a -m "Commit Message"
|
|
464
|
+
git push -u origin # once, later always:
|
|
465
|
+
git push
|
|
466
|
+
|
|
467
|
+
**********************************
|
|
468
|
+
API Documentation and Guidelines
|
|
469
|
+
**********************************
|
|
470
|
+
|
|
471
|
+
There is API documentation generated with ``doxygen``, available at
|
|
472
|
+
`this location <https://nuitka.net/apidoc>`__ .
|
|
473
|
+
|
|
474
|
+
To ensure meaningful ``doxygen`` output, the following guidelines must
|
|
475
|
+
be observed when creating or updating Python source:
|
|
476
|
+
|
|
477
|
+
Use of Standard Python ``__doc__`` Strings
|
|
478
|
+
==========================================
|
|
479
|
+
|
|
480
|
+
Every class and every method should be documented via the standard
|
|
481
|
+
Python delimiters (``""" ... """``) in the usual way.
|
|
482
|
+
|
|
483
|
+
Special ``doxygen`` Anatomy of ``__doc__``
|
|
484
|
+
==========================================
|
|
485
|
+
|
|
486
|
+
.. note::
|
|
487
|
+
|
|
488
|
+
We are replacing Doxygen with sphinx, this is all obsolete
|
|
489
|
+
|
|
490
|
+
- Immediately after the leading ``"""``, and after 1 space on the same
|
|
491
|
+
line, enter a brief description or title of the class or method. This
|
|
492
|
+
must be 1 line and be followed by at least 1 empty line.
|
|
493
|
+
|
|
494
|
+
- Depending on the item, choose from the following "sections" to
|
|
495
|
+
describe what the item is and does.
|
|
496
|
+
|
|
497
|
+
Each section name is coded on its own line, aligned with the leading
|
|
498
|
+
``"""`` and followed by a colon ":". Anything following the section,
|
|
499
|
+
must start on a new line and be indented by 4 spaces relative to the
|
|
500
|
+
section. Except for the first section (``Notes:``) after the title,
|
|
501
|
+
sections need not be preceded by empty lines -- but it is good
|
|
502
|
+
practice to still do that.
|
|
503
|
+
|
|
504
|
+
- ``Notes:`` detailed description of the item, any length.
|
|
505
|
+
|
|
506
|
+
May contain line breaks with each new line starting aligned with
|
|
507
|
+
previous one. The text will automatically be joined across line
|
|
508
|
+
breaks and be reformatted in the browser.
|
|
509
|
+
|
|
510
|
+
If you describe details for a class, you can do so **without**
|
|
511
|
+
using this section header and all formatting will still work fine.
|
|
512
|
+
If you however omit the ``Notes:`` for methods, then the text will
|
|
513
|
+
be interpreted **as code**, be shown in an ugly monospaced font,
|
|
514
|
+
and no automatic line breaks will occur in the browser.
|
|
515
|
+
|
|
516
|
+
- ``Args:`` positional arguments.
|
|
517
|
+
|
|
518
|
+
Each argument then follows, starting on a new line and indented by
|
|
519
|
+
4 spaces. The argument name must be followed by a colon ``:`` or
|
|
520
|
+
double hash ``--``, followed by a description of arbitrary length.
|
|
521
|
+
|
|
522
|
+
The description can be separated by line breaks.
|
|
523
|
+
|
|
524
|
+
- ``Kwargs:`` keyword arguments. Same rules as for args.
|
|
525
|
+
|
|
526
|
+
- ``Returns:`` description of what will be returned if applicable
|
|
527
|
+
(any length).
|
|
528
|
+
|
|
529
|
+
- ``Yields:`` synonymous for ``Returns:``.
|
|
530
|
+
|
|
531
|
+
- ``Raises:`` name any exceptions that may be raised.
|
|
532
|
+
|
|
533
|
+
- ``Examples:`` specify any example code.
|
|
534
|
+
|
|
535
|
+
.. code:: python
|
|
536
|
+
|
|
537
|
+
def foo(p1, p2, kw1=None, kw2=None):
|
|
538
|
+
"""This is an example method.
|
|
539
|
+
|
|
540
|
+
Notes:
|
|
541
|
+
It does one or the other indispensable things based on some parameters
|
|
542
|
+
and proudly returns a dictionary.
|
|
543
|
+
|
|
544
|
+
Args:
|
|
545
|
+
p1: parameter one
|
|
546
|
+
p2: parameter two
|
|
547
|
+
|
|
548
|
+
Kwargs:
|
|
549
|
+
kw1: keyword one
|
|
550
|
+
kw2: keyword two
|
|
551
|
+
|
|
552
|
+
Returns:
|
|
553
|
+
A dictionary calculated from the input.
|
|
554
|
+
|
|
555
|
+
Raises:
|
|
556
|
+
ValueError, IndexError
|
|
557
|
+
|
|
558
|
+
Examples:
|
|
559
|
+
>>> foo(1, 2, kw1=3, kw2=4)
|
|
560
|
+
{'a': 4, 'b': 6}
|
|
561
|
+
"""
|
|
562
|
+
|
|
563
|
+
*********************
|
|
564
|
+
Checking the Source
|
|
565
|
+
*********************
|
|
566
|
+
|
|
567
|
+
The static checking for errors is currently done with ``PyLint``. In the
|
|
568
|
+
future, Nuitka itself will gain the ability to present its findings in a
|
|
569
|
+
similar way, but this is not a priority, and we are not there yet.
|
|
570
|
+
|
|
571
|
+
So, we currently use ``PyLint`` with options defined in a script.
|
|
572
|
+
|
|
573
|
+
.. code:: bash
|
|
574
|
+
|
|
575
|
+
./bin/check-nuitka-with-pylint
|
|
576
|
+
|
|
577
|
+
The above command is expected to give no warnings. It is also run on our
|
|
578
|
+
CI and we will not merge branches that do not pass.
|
|
579
|
+
|
|
580
|
+
*******************
|
|
581
|
+
Running the Tests
|
|
582
|
+
*******************
|
|
583
|
+
|
|
584
|
+
This section describes how to run Nuitka tests.
|
|
585
|
+
|
|
586
|
+
Running all Tests
|
|
587
|
+
=================
|
|
588
|
+
|
|
589
|
+
The top level access to the tests is as simple as this:
|
|
590
|
+
|
|
591
|
+
.. code:: bash
|
|
592
|
+
|
|
593
|
+
./tests/run-tests
|
|
594
|
+
|
|
595
|
+
For fine grained control, it has the following options:
|
|
596
|
+
|
|
597
|
+
.. code::
|
|
598
|
+
|
|
599
|
+
--skip-basic-tests The basic tests, execute these to check if Nuitka is
|
|
600
|
+
healthy. Default is True.
|
|
601
|
+
--skip-syntax-tests The syntax tests, execute these to check if Nuitka
|
|
602
|
+
handles Syntax errors fine. Default is True.
|
|
603
|
+
--skip-program-tests The programs tests, execute these to check if Nuitka
|
|
604
|
+
handles programs, e.g. import recursions, etc. fine.
|
|
605
|
+
Default is True.
|
|
606
|
+
--skip-package-tests The packages tests, execute these to check if Nuitka
|
|
607
|
+
handles packages, e.g. import recursions, etc. fine.
|
|
608
|
+
Default is True.
|
|
609
|
+
--skip-optimizations-tests
|
|
610
|
+
The optimization tests, execute these to check if
|
|
611
|
+
Nuitka does optimize certain constructs fully away.
|
|
612
|
+
Default is True.
|
|
613
|
+
--skip-standalone-tests
|
|
614
|
+
The standalone tests, execute these to check if Nuitka
|
|
615
|
+
standalone mode, e.g. not referring to outside,
|
|
616
|
+
important 3rd library packages like PyQt fine. Default
|
|
617
|
+
is True.
|
|
618
|
+
--skip-reflection-test
|
|
619
|
+
The reflection test compiles Nuitka with Nuitka, and
|
|
620
|
+
then Nuitka with the compile Nuitka and compares the
|
|
621
|
+
outputs. Default is True.
|
|
622
|
+
--skip-cpython26-tests
|
|
623
|
+
The standard CPython2.6 test suite. Execute this for
|
|
624
|
+
all corner cases to be covered. With Python 2.7 this
|
|
625
|
+
covers exception behavior quite well. Default is True.
|
|
626
|
+
--skip-cpython27-tests
|
|
627
|
+
The standard CPython2.7 test suite. Execute this for
|
|
628
|
+
all corner cases to be covered. With Python 2.6 these
|
|
629
|
+
are not run. Default is True.
|
|
630
|
+
--skip-cpython32-tests
|
|
631
|
+
The standard CPython3.2 test suite. Execute this for
|
|
632
|
+
all corner cases to be covered. With Python 2.6 these
|
|
633
|
+
are not run. Default is True.
|
|
634
|
+
--skip-cpython33-tests
|
|
635
|
+
The standard CPython3.3 test suite. Execute this for
|
|
636
|
+
all corner cases to be covered. With Python 2.x these
|
|
637
|
+
are not run. Default is True.
|
|
638
|
+
--skip-cpython34-tests
|
|
639
|
+
The standard CPython3.4 test suite. Execute this for
|
|
640
|
+
all corner cases to be covered. With Python 2.x these
|
|
641
|
+
are not run. Default is True.
|
|
642
|
+
--skip-cpython35-tests
|
|
643
|
+
The standard CPython3.5 test suite. Execute this for
|
|
644
|
+
all corner cases to be covered. With Python 2.x these
|
|
645
|
+
are not run. Default is True.
|
|
646
|
+
--skip-cpython36-tests
|
|
647
|
+
The standard CPython3.6 test suite. Execute this for
|
|
648
|
+
all corner cases to be covered. With Python 2.x these
|
|
649
|
+
are not run. Default is True.
|
|
650
|
+
--skip-cpython37-tests
|
|
651
|
+
The standard CPython3.7 test suite. Execute this for
|
|
652
|
+
all corner cases to be covered. With Python 2.x these
|
|
653
|
+
are not run. Default is True.
|
|
654
|
+
--skip-cpython38-tests
|
|
655
|
+
The standard CPython3.8 test suite. Execute this for
|
|
656
|
+
all corner cases to be covered. With Python 2.x these
|
|
657
|
+
are not run. Default is True.
|
|
658
|
+
--skip-cpython39-tests
|
|
659
|
+
The standard CPython3.9 test suite. Execute this for
|
|
660
|
+
all corner cases to be covered. With Python 2.x these
|
|
661
|
+
are not run. Default is True.
|
|
662
|
+
--skip-cpython310-tests
|
|
663
|
+
The standard CPython3.10 test suite. Execute this for
|
|
664
|
+
all corner cases to be covered. With Python 2.x these
|
|
665
|
+
are not run. Default is True.
|
|
666
|
+
--skip-cpython311-tests
|
|
667
|
+
The standard CPython3.11 test suite. Execute this for
|
|
668
|
+
all corner cases to be covered. With Python 2.x these
|
|
669
|
+
are not run. Default is True.
|
|
670
|
+
--skip-cpython312-tests
|
|
671
|
+
The standard CPython3.12 test suite. Execute this for
|
|
672
|
+
all corner cases to be covered. With Python 2.x these
|
|
673
|
+
are not run. Default is True.
|
|
674
|
+
--skip-cpython313-tests
|
|
675
|
+
The standard CPython3.13 test suite. Execute this for
|
|
676
|
+
all corner cases to be covered. With Python 2.x these
|
|
677
|
+
are not run. Default is True.
|
|
678
|
+
--no-python2.6 Do not use Python 2.6 even if available on the system.
|
|
679
|
+
Default is False.
|
|
680
|
+
--no-python2.7 Do not use Python 2.7 even if available on the system.
|
|
681
|
+
Default is False.
|
|
682
|
+
--no-python3.4 Do not use Python 3.4 even if available on the system.
|
|
683
|
+
Default is False.
|
|
684
|
+
--no-python3.5 Do not use Python 3.5 even if available on the system.
|
|
685
|
+
Default is False.
|
|
686
|
+
--no-python3.6 Do not use Python 3.6 even if available on the system.
|
|
687
|
+
Default is False.
|
|
688
|
+
--no-python3.7 Do not use Python 3.7 even if available on the system.
|
|
689
|
+
Default is False.
|
|
690
|
+
--no-python3.8 Do not use Python 3.8 even if available on the system.
|
|
691
|
+
Default is False.
|
|
692
|
+
--no-python3.9 Do not use Python 3.9 even if available on the system.
|
|
693
|
+
Default is False.
|
|
694
|
+
--no-python3.10 Do not use Python 3.10 even if available on the system.
|
|
695
|
+
Default is False.
|
|
696
|
+
--no-python3.11 Do not use Python 3.11 even if available on the system.
|
|
697
|
+
Default is False.
|
|
698
|
+
--no-python3.12 Do not use Python 3.12 even if available on the system.
|
|
699
|
+
Default is False.
|
|
700
|
+
--no-python3.13 Do not use Python 3.13 even if available on the system.
|
|
701
|
+
Default is False.
|
|
702
|
+
--coverage Make a coverage analysis, that does not really check.
|
|
703
|
+
Default is False.
|
|
704
|
+
|
|
705
|
+
You will only run the CPython test suites, if you have the submodules of
|
|
706
|
+
the Nuitka git repository checked out. Otherwise, these will be skipped
|
|
707
|
+
with a warning that they are not available.
|
|
708
|
+
|
|
709
|
+
The policy is generally, that ``./test/run-tests`` running and passing
|
|
710
|
+
all the tests on Linux and Windows shall be considered sufficient for a
|
|
711
|
+
release, but of course, depending on changes going on, that might have
|
|
712
|
+
to be expanded.
|
|
713
|
+
|
|
714
|
+
Basic Tests
|
|
715
|
+
===========
|
|
716
|
+
|
|
717
|
+
You can run the "basic" tests like this:
|
|
718
|
+
|
|
719
|
+
.. code:: bash
|
|
720
|
+
|
|
721
|
+
./tests/basics/run_all.py search
|
|
722
|
+
|
|
723
|
+
These tests normally give sufficient coverage to assume that a change is
|
|
724
|
+
correct, if these "basic" tests pass. The most important constructs and
|
|
725
|
+
built-ins are exercised.
|
|
726
|
+
|
|
727
|
+
To control the Python version used for testing, you can set the
|
|
728
|
+
``PYTHON`` environment variable to e.g. ``python3.5`` (can also be full
|
|
729
|
+
path), or simply execute the ``run_all.py`` script directly with the
|
|
730
|
+
intended version, as it is portable across all supported Python
|
|
731
|
+
versions, and defaults testing with the Python version is run with.
|
|
732
|
+
|
|
733
|
+
Syntax Tests
|
|
734
|
+
============
|
|
735
|
+
|
|
736
|
+
Then there are "syntax" tests, i.e. language constructs that need to
|
|
737
|
+
give a syntax error.
|
|
738
|
+
|
|
739
|
+
It sometimes so happens that Nuitka must do this itself, because the
|
|
740
|
+
``ast.parse`` doesn't see the problem and raises no ``SyntaxError`` of
|
|
741
|
+
its own. These cases are then covered by tests to make sure they work as
|
|
742
|
+
expected.
|
|
743
|
+
|
|
744
|
+
Using the ``global`` statement on a function argument is an example of
|
|
745
|
+
this. These tests make sure that the errors of Nuitka and CPython are
|
|
746
|
+
totally the same for this:
|
|
747
|
+
|
|
748
|
+
.. code:: bash
|
|
749
|
+
|
|
750
|
+
./tests/syntax/run_all.py search
|
|
751
|
+
|
|
752
|
+
Program Tests
|
|
753
|
+
=============
|
|
754
|
+
|
|
755
|
+
Then there are small "programs" tests, that e.g. exercise many kinds of
|
|
756
|
+
import tricks and are designed to reveal problems with inter-module
|
|
757
|
+
behavior. These can be run like this:
|
|
758
|
+
|
|
759
|
+
.. code:: bash
|
|
760
|
+
|
|
761
|
+
./tests/programs/run_all.py search
|
|
762
|
+
|
|
763
|
+
Generated Tests
|
|
764
|
+
===============
|
|
765
|
+
|
|
766
|
+
There are tests, which are generated from Jinja2 templates. They aim at
|
|
767
|
+
e.g. combining at types with operations, in-place or not, or large
|
|
768
|
+
constants. These can be run like this:
|
|
769
|
+
|
|
770
|
+
.. code:: bash
|
|
771
|
+
|
|
772
|
+
./tests/generated/run_all.py search
|
|
773
|
+
|
|
774
|
+
Compile Nuitka with Nuitka
|
|
775
|
+
==========================
|
|
776
|
+
|
|
777
|
+
And there is the "compile itself" or "reflected" test. This test makes
|
|
778
|
+
Nuitka compile itself and compare the resulting C++ when running
|
|
779
|
+
compiled to non-compiled, which helps to find in-determinism.
|
|
780
|
+
|
|
781
|
+
The test compiles every module of Nuitka into an extension module and
|
|
782
|
+
all of Nuitka into a single binary.
|
|
783
|
+
|
|
784
|
+
That test case also gives good coverage of the ``import`` mechanisms,
|
|
785
|
+
because Nuitka uses a lot of packages and imports between them.
|
|
786
|
+
|
|
787
|
+
.. code:: bash
|
|
788
|
+
|
|
789
|
+
./tests/reflected/compile_itself.py
|
|
790
|
+
|
|
791
|
+
*********************
|
|
792
|
+
Internal/Plugin API
|
|
793
|
+
*********************
|
|
794
|
+
|
|
795
|
+
The documentation from the source code for both the Python and the C
|
|
796
|
+
parts are published as `Nuitka API <https://nuitka.net/apidoc>`__ and
|
|
797
|
+
arguably in a relatively bad shape as we started generating those with
|
|
798
|
+
Doxygen only relatively late.
|
|
799
|
+
|
|
800
|
+
.. code:: bash
|
|
801
|
+
|
|
802
|
+
doxygen ./doc/Doxyfile
|
|
803
|
+
xdg-open html
|
|
804
|
+
|
|
805
|
+
Improvements have already been implemented for plugins: The plugin base
|
|
806
|
+
class defined in ``PluginBase.py`` (which is used as a template for all
|
|
807
|
+
plugins) is fully documented in Doxygen now. The same is true for the
|
|
808
|
+
recently added standard plugins ``NumpyPlugin.py`` and
|
|
809
|
+
``TkinterPlugin.py``. These will be uploaded very soon.
|
|
810
|
+
|
|
811
|
+
Going forward, this will also happen for the remaining standard plugins.
|
|
812
|
+
|
|
813
|
+
Please find `here
|
|
814
|
+
<https://github.com/Nuitka/Nuitka/blob/develop/UserPlugin-Creation.rst>`__
|
|
815
|
+
a detailed description of how to write your own plugin.
|
|
816
|
+
|
|
817
|
+
To learn about plugin option specification consult `this document
|
|
818
|
+
<https://github.com/Nuitka/Nuitka/blob/develop/Using-Plugin-Options.rst>`__.
|
|
819
|
+
|
|
820
|
+
*********************************
|
|
821
|
+
Working with the CPython suites
|
|
822
|
+
*********************************
|
|
823
|
+
|
|
824
|
+
Resetting CPython suites
|
|
825
|
+
========================
|
|
826
|
+
|
|
827
|
+
The CPython test suites are different branches of the same submodule.
|
|
828
|
+
When you update your git checkout, they will frequently become detached.
|
|
829
|
+
In this case, simply execute this command:
|
|
830
|
+
|
|
831
|
+
.. code:: bash
|
|
832
|
+
|
|
833
|
+
git submodule foreach 'git fetch && git checkout $(basename $(pwd)) && \
|
|
834
|
+
git reset --hard origin/$(basename $(pwd))'
|
|
835
|
+
|
|
836
|
+
Added new CPython suites
|
|
837
|
+
========================
|
|
838
|
+
|
|
839
|
+
When adding a test suite, for a new version, proceed like this, of
|
|
840
|
+
course while adapting of course the names. These are the commands used
|
|
841
|
+
for adding CPython313 based on the CPython312 branch.
|
|
842
|
+
|
|
843
|
+
.. code:: bash
|
|
844
|
+
|
|
845
|
+
# Switch to a new branch.
|
|
846
|
+
git checkout CPython312
|
|
847
|
+
git branch CPython313
|
|
848
|
+
git checkout CPython313
|
|
849
|
+
|
|
850
|
+
# Delete all but root commit
|
|
851
|
+
git reset --hard `git log --root --oneline --reverse | head -1 | cut -d' ' -f1`
|
|
852
|
+
|
|
853
|
+
# Switch test data to upstream ones.
|
|
854
|
+
rm -rf test
|
|
855
|
+
cp -r ~/repos/Nuitka-references/final/Python-3.13.0/Lib/test test
|
|
856
|
+
git add test
|
|
857
|
+
|
|
858
|
+
# Update commit message to mention proper Python version.
|
|
859
|
+
git commit --amend -m "Initial commit of Python tests as in 3.13.0"
|
|
860
|
+
|
|
861
|
+
# Push to github, setting upstream for branch.
|
|
862
|
+
git push -u
|
|
863
|
+
|
|
864
|
+
# Cherry pick the removal commits from previous branches.
|
|
865
|
+
git log origin/CPython312 --reverse --oneline | grep ' Removed' | cut -d' ' -f1 | xargs git cherry-pick
|
|
866
|
+
# When being prompted for merge conflicts with the deleted files:
|
|
867
|
+
git status | sed -n 's/deleted by them://p' | xargs git rm --ignore-unmatch x ; git cherry-pick --continue
|
|
868
|
+
|
|
869
|
+
# Push to github, this is useful.
|
|
870
|
+
git push
|
|
871
|
+
|
|
872
|
+
# Cherry pick the first commit of 'run_all.py', the copy it from the last state, and amend the commits.
|
|
873
|
+
git log --reverse origin/CPython312 --oneline -- run_all.py | head -1 | cut -d' ' -f1 | xargs git cherry-pick
|
|
874
|
+
git checkout origin/CPython312 -- run_all.py
|
|
875
|
+
chmod +x run_all.py
|
|
876
|
+
sed -i -e 's#python3.12#python3.13#' run_all.py
|
|
877
|
+
git commit --amend --no-edit run_all.py
|
|
878
|
+
|
|
879
|
+
# Same for 'update_doctest_generated.py'
|
|
880
|
+
git log --reverse origin/CPython312 --oneline -- update_doctest_generated.py | head -1 | cut -d' ' -f1 | xargs git cherry-pick
|
|
881
|
+
git checkout origin/CPython312 -- update_doctest_generated.py
|
|
882
|
+
chmod +x update_doctest_generated.py
|
|
883
|
+
sed -i -e 's#python3.12#python3.13#' update_doctest_generated.py
|
|
884
|
+
git commit --amend --no-edit update_doctest_generated.py
|
|
885
|
+
|
|
886
|
+
# Same for .gitignore
|
|
887
|
+
git log --reverse origin/CPython312 --oneline -- .gitignore | head -1 | cut -d' ' -f1 | xargs git cherry-pick
|
|
888
|
+
git checkout origin/CPython312 -- .gitignore
|
|
889
|
+
git commit --amend --no-edit .gitignore
|
|
890
|
+
|
|
891
|
+
# Now cherry-pick all commits of test support, these disable network, audio, GUI, random filenames and more
|
|
892
|
+
# and are crucial for deterministic outputs and non-reliance on outside stuff.
|
|
893
|
+
git log --reverse origin/CPython312 --oneline -- test/support/__init__.py | tail -n +2 | cut -d' ' -f1 | xargs git cherry-pick
|
|
894
|
+
|
|
895
|
+
git push
|
|
896
|
+
|
|
897
|
+
*********************
|
|
898
|
+
Design Descriptions
|
|
899
|
+
*********************
|
|
900
|
+
|
|
901
|
+
These should be a lot more and contain graphics from presentations
|
|
902
|
+
given. It will be filled in, but not now.
|
|
903
|
+
|
|
904
|
+
Nuitka Logo
|
|
905
|
+
===========
|
|
906
|
+
|
|
907
|
+
The logo was submitted by "dr. Equivalent". It's source is contained in
|
|
908
|
+
``doc/Logo`` where 3 variants of the logo in SVG are placed.
|
|
909
|
+
|
|
910
|
+
- Symbol only (symbol)
|
|
911
|
+
|
|
912
|
+
.. code:: rest
|
|
913
|
+
|
|
914
|
+
.. image:: doc/images/Nuitka-Logo-Symbol.png
|
|
915
|
+
:alt: Nuitka Logo
|
|
916
|
+
|
|
917
|
+
- Text next to symbol (horizontal)
|
|
918
|
+
|
|
919
|
+
.. code:: rest
|
|
920
|
+
|
|
921
|
+
.. image:: doc/images/Nuitka-Logo-Horizontal.png
|
|
922
|
+
:alt: Nuitka Logo
|
|
923
|
+
|
|
924
|
+
- Text beneath symbol (vertical)
|
|
925
|
+
|
|
926
|
+
.. code:: rest
|
|
927
|
+
|
|
928
|
+
.. image:: doc/images/Nuitka-Logo-Vertical.png
|
|
929
|
+
:alt: Nuitka Logo
|
|
930
|
+
|
|
931
|
+
From these logos, PNG images, and "favicons", and are derived.
|
|
932
|
+
|
|
933
|
+
The exact ImageMagick commands are in
|
|
934
|
+
``nuitka/tools/release/Documentation``, but are not executed each time,
|
|
935
|
+
the commands are also replicated here:
|
|
936
|
+
|
|
937
|
+
.. code:: bash
|
|
938
|
+
|
|
939
|
+
convert -background none doc/Logo/Nuitka-Logo-Symbol.svg doc/images/Nuitka-Logo-Symbol.png
|
|
940
|
+
convert -background none doc/Logo/Nuitka-Logo-Vertical.svg doc/images/Nuitka-Logo-Vertical.png
|
|
941
|
+
convert -background none doc/Logo/Nuitka-Logo-Horizontal.svg doc/images/Nuitka-Logo-Horizontal.png
|
|
942
|
+
|
|
943
|
+
Choice of the Target Language
|
|
944
|
+
=============================
|
|
945
|
+
|
|
946
|
+
- Choosing the target language was important decision. factors were:
|
|
947
|
+
|
|
948
|
+
- The portability of Nuitka is decided here
|
|
949
|
+
- How difficult is it to generate the code?
|
|
950
|
+
- Does the Python C-API have bindings?
|
|
951
|
+
- Is that language known?
|
|
952
|
+
- Does the language aid to find bugs?
|
|
953
|
+
|
|
954
|
+
The *decision for C11* is ultimately one for portability, general
|
|
955
|
+
knowledge of the language and for control over created code, e.g. being
|
|
956
|
+
able to edit and try that quickly.
|
|
957
|
+
|
|
958
|
+
The current status is to use pure C11. All code compiles as C11, and
|
|
959
|
+
also in terms of workaround to missing compiler support as C++03. This
|
|
960
|
+
is mostly needed, because MSVC does not support C. Naturally we are not
|
|
961
|
+
using any C++ features, just the allowances of C++ features that made it
|
|
962
|
+
into C11, which is e.g. allowing late definitions of variables.
|
|
963
|
+
|
|
964
|
+
Use of Scons internally
|
|
965
|
+
=======================
|
|
966
|
+
|
|
967
|
+
Nuitka does not involve Scons in its user interface at all; Scons is
|
|
968
|
+
purely used internally. Nuitka itself, being pure Python, will run
|
|
969
|
+
without any build process just fine.
|
|
970
|
+
|
|
971
|
+
Nuitka simply prepares ``<program>.build`` folders with lots of files
|
|
972
|
+
and tasks scons to execute the final build, after which Nuitka again
|
|
973
|
+
will take control and do more work as necessary.
|
|
974
|
+
|
|
975
|
+
.. note::
|
|
976
|
+
|
|
977
|
+
When we speak of "standalone" mode, this is handled outside of Scons,
|
|
978
|
+
and after it, creating the ".dist" folder. This is done in
|
|
979
|
+
``nuitka.MainControl`` module.
|
|
980
|
+
|
|
981
|
+
For interfacing to Scons, there is the module
|
|
982
|
+
``nuitka.build.SconsInterface`` that will support calling ``scons`` -
|
|
983
|
+
potentially from one of two inline copies (one for before / one for
|
|
984
|
+
Python 3.5 or later). These are mainly used on Windows or when using
|
|
985
|
+
source releases - and passing arguments to it. These arguments are
|
|
986
|
+
passed as ``key=value``, and decoded in the scons file of Nuitka.
|
|
987
|
+
|
|
988
|
+
The scons file is named ``SingleExe.scons`` for lack of better name.
|
|
989
|
+
It's really wrong now, but we have yet to find a better name. It once
|
|
990
|
+
expressed the intention to be used to create executables, but the same
|
|
991
|
+
works for modules too, as in terms of building, and to Scons, things
|
|
992
|
+
really are the same.
|
|
993
|
+
|
|
994
|
+
The scons file supports operation in multiple modes for many things, and
|
|
995
|
+
modules is just one of them. It runs outside of Nuitka process scope,
|
|
996
|
+
even with a different Python version potentially, so all the information
|
|
997
|
+
must be passed on the command line.
|
|
998
|
+
|
|
999
|
+
What follows is the (lengthy) list of arguments that the scons file
|
|
1000
|
+
processes:
|
|
1001
|
+
|
|
1002
|
+
- ``source_dir``
|
|
1003
|
+
|
|
1004
|
+
Where is the generated C source code. Scons will just compile
|
|
1005
|
+
everything it finds there. No list of files is passed, but instead
|
|
1006
|
+
this directory is being scanned.
|
|
1007
|
+
|
|
1008
|
+
- ``nuitka_src``
|
|
1009
|
+
|
|
1010
|
+
Where do the include files and static C parts of Nuitka live. These
|
|
1011
|
+
provide e.g. the implementation of compiled function, generators, and
|
|
1012
|
+
other helper codes, this will point to where ``nuitka.build`` package
|
|
1013
|
+
lives normally.
|
|
1014
|
+
|
|
1015
|
+
- ``module_mode``
|
|
1016
|
+
|
|
1017
|
+
Build a module instead of a program.
|
|
1018
|
+
|
|
1019
|
+
- ``result_base``
|
|
1020
|
+
|
|
1021
|
+
This is not a full name, merely the basename for the result to be
|
|
1022
|
+
produced, but with path included, and the suffix comes from module or
|
|
1023
|
+
executable mode.
|
|
1024
|
+
|
|
1025
|
+
- ``debug_mode``
|
|
1026
|
+
|
|
1027
|
+
Enable debug mode, which is a mode, where Nuitka tries to help
|
|
1028
|
+
identify errors in itself, and will generate less optimal code. This
|
|
1029
|
+
also asks for warnings, and makes the build fail if there are any.
|
|
1030
|
+
Scons will pass different compiler options in this case.
|
|
1031
|
+
|
|
1032
|
+
- ``python_debug``
|
|
1033
|
+
|
|
1034
|
+
Compile and link against Python debug mode, which does assertions and
|
|
1035
|
+
extra checks, to identify errors, mostly related to reference
|
|
1036
|
+
counting. May make the build fail, if no debug build library of
|
|
1037
|
+
CPython is available. On Windows it is possible to install it for
|
|
1038
|
+
CPython3.5 or higher.
|
|
1039
|
+
|
|
1040
|
+
- ``full_compat_mode``
|
|
1041
|
+
|
|
1042
|
+
Full compatibility, even where it's stupid, i.e. do not provide
|
|
1043
|
+
information, even if available, in order to assert maximum
|
|
1044
|
+
compatibility. Intended to control the level of compatibility to
|
|
1045
|
+
absurd.
|
|
1046
|
+
|
|
1047
|
+
- ``experimental_mode``
|
|
1048
|
+
|
|
1049
|
+
Do things that are not yet accepted to be safe.
|
|
1050
|
+
|
|
1051
|
+
- ``lto_mode``
|
|
1052
|
+
|
|
1053
|
+
Make use of link time optimization of gcc compiler if available and
|
|
1054
|
+
known good with the compiler in question. So far, this was not found
|
|
1055
|
+
to make major differences.
|
|
1056
|
+
|
|
1057
|
+
- ``disable_console``
|
|
1058
|
+
|
|
1059
|
+
Windows subsystem mode: Disable console for windows builds.
|
|
1060
|
+
|
|
1061
|
+
- ``unstripped_mode``
|
|
1062
|
+
|
|
1063
|
+
Unstripped mode: Do not remove debug symbols.
|
|
1064
|
+
|
|
1065
|
+
- ``clang_mode``
|
|
1066
|
+
|
|
1067
|
+
Clang compiler mode, default on macOS X and FreeBSD, optional on
|
|
1068
|
+
Linux.
|
|
1069
|
+
|
|
1070
|
+
- ``mingw_mode``
|
|
1071
|
+
|
|
1072
|
+
MinGW compiler mode, optional and useful on Windows only.
|
|
1073
|
+
|
|
1074
|
+
- ``standalone_mode``
|
|
1075
|
+
|
|
1076
|
+
Building a standalone distribution for the binary.
|
|
1077
|
+
|
|
1078
|
+
- ``show_scons``
|
|
1079
|
+
|
|
1080
|
+
Show scons mode, output information about Scons operation. This will
|
|
1081
|
+
e.g. also output the actual compiler used, output from compilation
|
|
1082
|
+
process, and generally debug information relating to be build
|
|
1083
|
+
process.
|
|
1084
|
+
|
|
1085
|
+
- ``python_prefix``
|
|
1086
|
+
|
|
1087
|
+
Home of Python to be compiled against, used to locate headers and
|
|
1088
|
+
libraries.
|
|
1089
|
+
|
|
1090
|
+
- ``target_arch``
|
|
1091
|
+
|
|
1092
|
+
Target architecture to build. Only meaningful on Windows.
|
|
1093
|
+
|
|
1094
|
+
- ``python_version``
|
|
1095
|
+
|
|
1096
|
+
The major version of Python built against.
|
|
1097
|
+
|
|
1098
|
+
- ``abiflags``
|
|
1099
|
+
|
|
1100
|
+
The flags needed for the Python ABI chosen. Might be necessary to
|
|
1101
|
+
find the folders for Python installations on some systems.
|
|
1102
|
+
|
|
1103
|
+
- ``icon_path``
|
|
1104
|
+
|
|
1105
|
+
The icon to use for Windows programs if given.
|
|
1106
|
+
|
|
1107
|
+
Locating Modules and Packages
|
|
1108
|
+
=============================
|
|
1109
|
+
|
|
1110
|
+
The search for modules used is driven by ``nuitka.importing.Importing``
|
|
1111
|
+
module.
|
|
1112
|
+
|
|
1113
|
+
- Quoting the ``nuitka.importing.Importing`` documentation:
|
|
1114
|
+
|
|
1115
|
+
Locating modules and package source on disk.
|
|
1116
|
+
|
|
1117
|
+
The actual import of a module would already execute code that changes
|
|
1118
|
+
things. Imagine a module that does ``os.system()``, it would be done
|
|
1119
|
+
during compilation. People often connect to databases, and these kind
|
|
1120
|
+
of things, at import time.
|
|
1121
|
+
|
|
1122
|
+
Therefore CPython exhibits the interfaces in an ``imp`` module in
|
|
1123
|
+
standard library, which one can use those to know ahead of time, what
|
|
1124
|
+
file import would load. For us unfortunately there is nothing in
|
|
1125
|
+
CPython that is easily accessible and gives us this functionality for
|
|
1126
|
+
packages and search paths exactly like CPython does, so we implement
|
|
1127
|
+
here a multi step search process that is compatible.
|
|
1128
|
+
|
|
1129
|
+
This approach is much safer of course and there is no loss. To
|
|
1130
|
+
determine if it's from the standard library, one can abuse the
|
|
1131
|
+
attribute ``__file__`` of the ``os`` module like it's done in
|
|
1132
|
+
``isStandardLibraryPath`` of this module.
|
|
1133
|
+
|
|
1134
|
+
End quoting the ``nuitka.importing.Importing`` documentation.
|
|
1135
|
+
|
|
1136
|
+
- Role
|
|
1137
|
+
|
|
1138
|
+
This module serves the recursion into modules and analysis if a
|
|
1139
|
+
module is a known one. It will give warnings for modules attempted to
|
|
1140
|
+
be located, but not found. These warnings are controlled by a while
|
|
1141
|
+
list inside the module.
|
|
1142
|
+
|
|
1143
|
+
The decision making and caching are located in the ``nuitka.tree``
|
|
1144
|
+
package, in modules ``nuitka.tree.Recursion`` and
|
|
1145
|
+
``nuitka.tree.ImportCache``. Each module is only considered once (then
|
|
1146
|
+
cached), and we need to obey lots of user choices, e.g. to compile a
|
|
1147
|
+
standard library or not.
|
|
1148
|
+
|
|
1149
|
+
Hooking for module ``import`` process
|
|
1150
|
+
=====================================
|
|
1151
|
+
|
|
1152
|
+
Currently, in generated code, for every ``import`` a normal
|
|
1153
|
+
``__import__()`` built-in call is executed. The
|
|
1154
|
+
``nuitka/build/static_src/MetaPathBasedLoader.c`` file provides the
|
|
1155
|
+
implementation of a ``sys.meta_path`` hook.
|
|
1156
|
+
|
|
1157
|
+
This meta path based importer allows us to have the Nuitka provided
|
|
1158
|
+
module imported even when imported by non-compiled code.
|
|
1159
|
+
|
|
1160
|
+
.. note::
|
|
1161
|
+
|
|
1162
|
+
Of course, it would make sense to compile time detect which module it
|
|
1163
|
+
is that is being imported and then to make it directly. At this time,
|
|
1164
|
+
we don't have this inter-module optimization yet, mid-term it should
|
|
1165
|
+
become easy to add.
|
|
1166
|
+
|
|
1167
|
+
Supporting ``__class__`` of Python3
|
|
1168
|
+
===================================
|
|
1169
|
+
|
|
1170
|
+
In Python3 the handling of ``__class__`` and ``super`` is different from
|
|
1171
|
+
Python2. It used to be a normal variable, and now the following things
|
|
1172
|
+
have changed.
|
|
1173
|
+
|
|
1174
|
+
- The use of the ``super`` variable name triggers the addition of a
|
|
1175
|
+
closure variable ``__class__``, as can be witnessed by the following
|
|
1176
|
+
code:
|
|
1177
|
+
|
|
1178
|
+
.. code:: python
|
|
1179
|
+
|
|
1180
|
+
class X:
|
|
1181
|
+
def f1(self):
|
|
1182
|
+
print(locals())
|
|
1183
|
+
|
|
1184
|
+
def f2(self):
|
|
1185
|
+
print(locals())
|
|
1186
|
+
super # Just using the name, not even calling it.
|
|
1187
|
+
|
|
1188
|
+
|
|
1189
|
+
x = X()
|
|
1190
|
+
x.f1()
|
|
1191
|
+
x.f2()
|
|
1192
|
+
|
|
1193
|
+
Output is:
|
|
1194
|
+
|
|
1195
|
+
.. code::
|
|
1196
|
+
|
|
1197
|
+
{'self': <__main__.X object at 0x7f1773762390>''} {'self':
|
|
1198
|
+
<__main__.X object at 0x7f1773762390>, '__class__': <class
|
|
1199
|
+
'__main__.X'>}
|
|
1200
|
+
|
|
1201
|
+
- This value of ``__class__`` is also available in the child functions.
|
|
1202
|
+
|
|
1203
|
+
- The parser marks up code objects usage of "super". It doesn't have to
|
|
1204
|
+
be a call, it can also be a local variable. If the ``super`` built-in
|
|
1205
|
+
is assigned to another name and that is used without arguments, it
|
|
1206
|
+
won't work unless ``__class__`` is taken as a closure variable.
|
|
1207
|
+
|
|
1208
|
+
- As can be seen in the CPython3 code, the closure value is added after
|
|
1209
|
+
the class creation is performed.
|
|
1210
|
+
|
|
1211
|
+
- It appears, that only functions locally defined to the class are
|
|
1212
|
+
affected and take the closure.
|
|
1213
|
+
|
|
1214
|
+
This left Nuitka with the strange problem, of how to emulate that.
|
|
1215
|
+
|
|
1216
|
+
The solution is this:
|
|
1217
|
+
|
|
1218
|
+
- Under Python3, usage of ``__class__`` as a reference in a child
|
|
1219
|
+
function body is mandatory. It remains that way until all variable
|
|
1220
|
+
names have been resolved.
|
|
1221
|
+
|
|
1222
|
+
- When recognizing calls to ``super`` without arguments, make the arguments
|
|
1223
|
+
into variable reference to ``__class__`` and potentially ``self``
|
|
1224
|
+
(actually first argument name).
|
|
1225
|
+
|
|
1226
|
+
- After all variables have been known, and no suspicious unresolved
|
|
1227
|
+
calls to anything named ``super`` are down, then unused references
|
|
1228
|
+
are optimized away by the normal unused closure variable.
|
|
1229
|
+
|
|
1230
|
+
- Class dictionary definitions are added.
|
|
1231
|
+
|
|
1232
|
+
These are special direct function calls, ready to propagate also
|
|
1233
|
+
"bases" and "metaclass" values, which need to be calculated outside.
|
|
1234
|
+
|
|
1235
|
+
The function bodies used for classes will automatically store
|
|
1236
|
+
``__class__`` as a shared local variable, if anything uses it. And if
|
|
1237
|
+
it's not assigned by user code, it doesn't show up in the "locals()"
|
|
1238
|
+
used for dictionary creation.
|
|
1239
|
+
|
|
1240
|
+
Existing ``__class__`` local variable values are in fact provided as
|
|
1241
|
+
closure, and overridden with the built class , but they should be
|
|
1242
|
+
used for the closure giving, before the class is finished.
|
|
1243
|
+
|
|
1244
|
+
So ``__class__`` will be local variable of the class body, until the
|
|
1245
|
+
class is built, then it will be the ``__class__`` itself.
|
|
1246
|
+
|
|
1247
|
+
Frame Stack
|
|
1248
|
+
===========
|
|
1249
|
+
|
|
1250
|
+
In Python, every function, class, and module has a frame. It is created
|
|
1251
|
+
when the scope is entered, and there is a stack of these at run time,
|
|
1252
|
+
which becomes visible in tracebacks in case of exceptions.
|
|
1253
|
+
|
|
1254
|
+
The choice of Nuitka is to make this an explicit element of the node
|
|
1255
|
+
tree, that are as such subject to optimization. In cases, where they are
|
|
1256
|
+
not needed, they may be removed.
|
|
1257
|
+
|
|
1258
|
+
Consider the following code.
|
|
1259
|
+
|
|
1260
|
+
.. code:: python
|
|
1261
|
+
|
|
1262
|
+
def f():
|
|
1263
|
+
if someNotRaisingCall():
|
|
1264
|
+
return somePotentiallyRaisingCall()
|
|
1265
|
+
else:
|
|
1266
|
+
return None
|
|
1267
|
+
|
|
1268
|
+
In this example, the frame is not needed for all the code, because the
|
|
1269
|
+
condition checked wouldn't possibly raise at all. The idea is the make
|
|
1270
|
+
the frame guard explicit and then to reduce its scope whenever possible.
|
|
1271
|
+
|
|
1272
|
+
So we start out with code like this one:
|
|
1273
|
+
|
|
1274
|
+
.. code:: python
|
|
1275
|
+
|
|
1276
|
+
def f():
|
|
1277
|
+
with frame_guard("f"):
|
|
1278
|
+
if someNotRaisingCall():
|
|
1279
|
+
return somePotentiallyRaisingCall()
|
|
1280
|
+
else:
|
|
1281
|
+
return None
|
|
1282
|
+
|
|
1283
|
+
This is to be optimized into:
|
|
1284
|
+
|
|
1285
|
+
.. code:: python
|
|
1286
|
+
|
|
1287
|
+
def f():
|
|
1288
|
+
if someNotRaisingCall():
|
|
1289
|
+
with frame_guard("f"):
|
|
1290
|
+
return somePotentiallyRaisingCall()
|
|
1291
|
+
else:
|
|
1292
|
+
return None
|
|
1293
|
+
|
|
1294
|
+
Notice how the frame guard taking is limited and may be avoided, or in
|
|
1295
|
+
best cases, it might be removed completely. Also this will play a role
|
|
1296
|
+
when in-lining function. The frame stack entry will then be
|
|
1297
|
+
automatically preserved without extra care.
|
|
1298
|
+
|
|
1299
|
+
.. note::
|
|
1300
|
+
|
|
1301
|
+
In the actual code, ``nuitka.nodes.FrameNodes.StatementsFrame`` is
|
|
1302
|
+
represents this as a set of statements to be guarded by a frame
|
|
1303
|
+
presence.
|
|
1304
|
+
|
|
1305
|
+
Parameter Parsing
|
|
1306
|
+
=================
|
|
1307
|
+
|
|
1308
|
+
The parsing of parameters is very convoluted in Python, and doing it in
|
|
1309
|
+
a compatible way is not that easy. This is a description of the required
|
|
1310
|
+
process, for an easier overview.
|
|
1311
|
+
|
|
1312
|
+
Input
|
|
1313
|
+
-----
|
|
1314
|
+
|
|
1315
|
+
The input is an argument ``tuple`` (the type is fixed), which contains
|
|
1316
|
+
the positional arguments, and potentially an argument ``dict`` (type is
|
|
1317
|
+
fixed as well, but could also be ``NULL``, indicating that there are no
|
|
1318
|
+
keyword arguments.
|
|
1319
|
+
|
|
1320
|
+
Keyword dictionary
|
|
1321
|
+
------------------
|
|
1322
|
+
|
|
1323
|
+
The keyword argument dictionary is checked first. Anything in there,
|
|
1324
|
+
that cannot be associated, either raise an error, or is added to a
|
|
1325
|
+
potentially given star dict argument. So there are two major cases.
|
|
1326
|
+
|
|
1327
|
+
- No star dict argument: Iterate over dictionary, and assign or raise
|
|
1328
|
+
errors.
|
|
1329
|
+
|
|
1330
|
+
This check covers extra arguments given.
|
|
1331
|
+
|
|
1332
|
+
- With star dict argument: Iterate over dictionary, and assign or raise
|
|
1333
|
+
errors.
|
|
1334
|
+
|
|
1335
|
+
Interesting case for optimization are no positional arguments, then
|
|
1336
|
+
no check is needed, and the keyword argument dictionary could be used
|
|
1337
|
+
as the star argument. Should it change, a copy is needed though.
|
|
1338
|
+
|
|
1339
|
+
What's noteworthy here, is that in comparison to the keywords, we can
|
|
1340
|
+
hope that they are the same value as we use. The interning of strings
|
|
1341
|
+
increases chances for non-compiled code to do that, esp. for short
|
|
1342
|
+
names.
|
|
1343
|
+
|
|
1344
|
+
We then can do a simple ``is`` comparison and only fall back to real
|
|
1345
|
+
string ``==`` comparisons, after all of these failed. That means more
|
|
1346
|
+
code, but also a lot faster code in the positive case.
|
|
1347
|
+
|
|
1348
|
+
Argument tuple
|
|
1349
|
+
--------------
|
|
1350
|
+
|
|
1351
|
+
After this completed, the argument tuple is up for processing. The first
|
|
1352
|
+
thing it needs to do is to check if it's too many of them, and then to
|
|
1353
|
+
complain.
|
|
1354
|
+
|
|
1355
|
+
For arguments in Python2, there is the possibility of them being nested,
|
|
1356
|
+
in which case they cannot be provided in the keyword dictionary, and
|
|
1357
|
+
merely should get picked from the argument tuple.
|
|
1358
|
+
|
|
1359
|
+
Otherwise, the length of the argument tuple should be checked against
|
|
1360
|
+
its position and if possible, values should be taken from there. If it's
|
|
1361
|
+
already set (from the keyword dictionary), raise an error instead.
|
|
1362
|
+
|
|
1363
|
+
SSA form for Nuitka
|
|
1364
|
+
===================
|
|
1365
|
+
|
|
1366
|
+
The SSA form is critical to how optimization works. The so called trace
|
|
1367
|
+
collections builds up traces. These are facts about how this works:
|
|
1368
|
+
|
|
1369
|
+
- Assignments draw from a counter unique for the variable, which
|
|
1370
|
+
becomes the variable version. This happens during tree building
|
|
1371
|
+
phase.
|
|
1372
|
+
|
|
1373
|
+
- References are associated with the version of the variable active.
|
|
1374
|
+
|
|
1375
|
+
This can be a merge of branches. Trace collection does do that and
|
|
1376
|
+
provides nodes with the currently active trace for a variable.
|
|
1377
|
+
|
|
1378
|
+
The data structures used for trace collection need to be relatively
|
|
1379
|
+
compact as the trace information can become easily much more data than
|
|
1380
|
+
the program itself.
|
|
1381
|
+
|
|
1382
|
+
Every trace collection has these:
|
|
1383
|
+
|
|
1384
|
+
- variable_actives
|
|
1385
|
+
|
|
1386
|
+
Dictionary, where per "variable" the currently used version is. Used
|
|
1387
|
+
to track situations changes in branches. This is the main input for
|
|
1388
|
+
merge process.
|
|
1389
|
+
|
|
1390
|
+
- variable_traces
|
|
1391
|
+
|
|
1392
|
+
Dictionary, where "variable" and "version" form the key. The values
|
|
1393
|
+
are objects with or without an assignment, and a list of usages,
|
|
1394
|
+
which starts out empty.
|
|
1395
|
+
|
|
1396
|
+
These objects have usages appended to them. In "onVariableSet", a new
|
|
1397
|
+
version is allocated, which gives a new object for the dictionary,
|
|
1398
|
+
with an empty usages list, because each write starts a new version.
|
|
1399
|
+
In "onVariableUsage" the version is detected from the current
|
|
1400
|
+
version. It may be not set yet, which means, it's a read of an
|
|
1401
|
+
undefined value (local variable, not a parameter name), or unknown in
|
|
1402
|
+
case of global variable.
|
|
1403
|
+
|
|
1404
|
+
These objects may be told that their value has escaped. This should
|
|
1405
|
+
influence the value friend they attached to the initial assignment.
|
|
1406
|
+
Each usage may have a current value friend state that is different.
|
|
1407
|
+
|
|
1408
|
+
When merging branches of conditional statements, the merge shall apply
|
|
1409
|
+
as follows:
|
|
1410
|
+
|
|
1411
|
+
- Branches have their own collection
|
|
1412
|
+
|
|
1413
|
+
Thee have potentially deviating sets of ``variable_actives``. These
|
|
1414
|
+
are children of an outer collections.
|
|
1415
|
+
|
|
1416
|
+
- Case a) One branch only.
|
|
1417
|
+
|
|
1418
|
+
For that branch a collection is performed. As usual new assignments
|
|
1419
|
+
generate a new version making it "active", references then related to
|
|
1420
|
+
these "active" versions.
|
|
1421
|
+
|
|
1422
|
+
Then, when the branch is merged, for all "active" variables, it is
|
|
1423
|
+
considered, if that is a change related to before the branch. If it's
|
|
1424
|
+
not the same, a merge trace with the branch condition is created with
|
|
1425
|
+
the one active in the collection before that statement.
|
|
1426
|
+
|
|
1427
|
+
- Case b) Two branches.
|
|
1428
|
+
|
|
1429
|
+
When there are two branches, they both as are treated as above,
|
|
1430
|
+
except for the merge.
|
|
1431
|
+
|
|
1432
|
+
When merging, a difference in active variables between the two
|
|
1433
|
+
branches creates the merge trace.
|
|
1434
|
+
|
|
1435
|
+
.. note::
|
|
1436
|
+
|
|
1437
|
+
For conditional expressions, there are always only two branches. Even
|
|
1438
|
+
if you think you have more than one branch, you do not. It's always
|
|
1439
|
+
nested branches, already when it comes out of the ``ast`` parser.
|
|
1440
|
+
|
|
1441
|
+
Trace structure, there are different kinds of traces.
|
|
1442
|
+
|
|
1443
|
+
- Initial write of the version
|
|
1444
|
+
|
|
1445
|
+
There may be an initial write for each version. It can only occur at
|
|
1446
|
+
the start of the scope, but not later, and there is only one. This
|
|
1447
|
+
might be known to be "initialized" (parameter variables of functions
|
|
1448
|
+
are like that) or "uninitialized", or "unknown".
|
|
1449
|
+
|
|
1450
|
+
- Merge of other one or two other versions
|
|
1451
|
+
|
|
1452
|
+
This combines two or more previous versions. In cases of loop exits
|
|
1453
|
+
or entries, there are multiple branches to combine potentially. These
|
|
1454
|
+
branches can have vastly different properties.
|
|
1455
|
+
|
|
1456
|
+
- Becoming unknown.
|
|
1457
|
+
|
|
1458
|
+
When control flow escapes, e.g. for a module variable, any write can
|
|
1459
|
+
occur to it, and it's value cannot be trusted to be unchanged. These
|
|
1460
|
+
are then traced as unknown.
|
|
1461
|
+
|
|
1462
|
+
All traces have a base class ``ValueTraceBase`` which provides the
|
|
1463
|
+
interface to query facts about the state of a variable in that trace.
|
|
1464
|
+
It's e.g. of some interest, if a variable must have a value or must not.
|
|
1465
|
+
This allows to e.g. omit checks, know what exceptions might raise.
|
|
1466
|
+
|
|
1467
|
+
Loop SSA
|
|
1468
|
+
========
|
|
1469
|
+
|
|
1470
|
+
For loops we have the addition difficulty that we need would need to
|
|
1471
|
+
look ahead what types a variable has at loop exit, but that is a cyclic
|
|
1472
|
+
dependency.
|
|
1473
|
+
|
|
1474
|
+
Our solution is to consider the variable types at loop entry. When these
|
|
1475
|
+
change, we drop all gained information from inside the loop. We may e.g.
|
|
1476
|
+
think that a variable is a ``int`` or ``float``, but later recognize
|
|
1477
|
+
that it can only be a float. Derivations from ``int`` must be discarded,
|
|
1478
|
+
and the loop analysis restarted.
|
|
1479
|
+
|
|
1480
|
+
Then during the loop, we assign an incomplete loop trace shape to the
|
|
1481
|
+
variable, which e.g. says it was an ``int`` initially and additional
|
|
1482
|
+
type shapes, e.g. ``int or long`` are then derived. If at the end of the
|
|
1483
|
+
loop, a type produced no new types, we know we are finished and mark the
|
|
1484
|
+
trace as a complete loop trace.
|
|
1485
|
+
|
|
1486
|
+
If it is not, and next time, we have the same initial types, we add the
|
|
1487
|
+
ones derived from this to the starting values, and see if this gives
|
|
1488
|
+
more types.
|
|
1489
|
+
|
|
1490
|
+
Python Slots in Optimization
|
|
1491
|
+
============================
|
|
1492
|
+
|
|
1493
|
+
Basic Slot Idea
|
|
1494
|
+
---------------
|
|
1495
|
+
|
|
1496
|
+
For almost all the operations in Python, a form of overloading is
|
|
1497
|
+
available. That is what makes it so powerful.
|
|
1498
|
+
|
|
1499
|
+
So when you write an expression like this one:
|
|
1500
|
+
|
|
1501
|
+
.. code:: python
|
|
1502
|
+
|
|
1503
|
+
1.0 + something
|
|
1504
|
+
|
|
1505
|
+
This something will not just blindly work when it's a float, but go
|
|
1506
|
+
through a slot mechanism, which then can be overloaded.
|
|
1507
|
+
|
|
1508
|
+
.. code:: python
|
|
1509
|
+
|
|
1510
|
+
class SomeStrangeFloat:
|
|
1511
|
+
def __float__(self):
|
|
1512
|
+
return 3.14
|
|
1513
|
+
|
|
1514
|
+
|
|
1515
|
+
something = SomeStrangeFloat()
|
|
1516
|
+
# ...
|
|
1517
|
+
1.0 + float(something) // 4.140000000000001
|
|
1518
|
+
|
|
1519
|
+
Here it is the case, that this is used by user code, but more often this
|
|
1520
|
+
is used internally. Not all types have all slots, e.g. ``list`` does not
|
|
1521
|
+
have ``__float__`` and therefore will refuse an addition to a ``float``
|
|
1522
|
+
value, based on that.
|
|
1523
|
+
|
|
1524
|
+
Another slot is working here, that we didn't mention yet, and that is
|
|
1525
|
+
``__add__`` which for some times will be these kinds of conversions or
|
|
1526
|
+
it will not do that kind of thing, e.g. something do hard checks, which
|
|
1527
|
+
is why this fails to work:
|
|
1528
|
+
|
|
1529
|
+
.. code:: python
|
|
1530
|
+
|
|
1531
|
+
[] + ()
|
|
1532
|
+
|
|
1533
|
+
As a deliberate choice, there is no ``__list__`` slot used. The Python
|
|
1534
|
+
designers are aiming at solving many things with slots, but they also
|
|
1535
|
+
accept limitations.
|
|
1536
|
+
|
|
1537
|
+
There are many slots that are frequently used, most often behind your
|
|
1538
|
+
back (``__iter__``, ``__next__``, ``__lt__``, etc.). The list is large,
|
|
1539
|
+
and tends to grow with Python releases, but it is not endless.
|
|
1540
|
+
|
|
1541
|
+
Representation in Nuitka
|
|
1542
|
+
------------------------
|
|
1543
|
+
|
|
1544
|
+
So a slot in Nuitka typically has an owning node. We use ``__len__`` as
|
|
1545
|
+
an example here. In the ``computeExpression`` the ``len`` node named
|
|
1546
|
+
``ExpressionBuiltinLen`` has to defer the decision what it computes to
|
|
1547
|
+
its argument.
|
|
1548
|
+
|
|
1549
|
+
.. code:: python
|
|
1550
|
+
|
|
1551
|
+
def computeExpression(self, trace_collection):
|
|
1552
|
+
return self.subnode_value.computeExpressionLen(
|
|
1553
|
+
len_node=self, trace_collection=trace_collection
|
|
1554
|
+
)
|
|
1555
|
+
|
|
1556
|
+
That decision then, in the absence of any type knowledge, must be done
|
|
1557
|
+
absolutely carefully and conservative, as could see anything executing
|
|
1558
|
+
here.
|
|
1559
|
+
|
|
1560
|
+
That examples this code in ``ExpressionBase`` which every expression by
|
|
1561
|
+
default uses:
|
|
1562
|
+
|
|
1563
|
+
.. code:: python
|
|
1564
|
+
|
|
1565
|
+
def computeExpressionLen(self, len_node, trace_collection):
|
|
1566
|
+
shape = self.getValueShape()
|
|
1567
|
+
|
|
1568
|
+
has_len = shape.hasShapeSlotLen()
|
|
1569
|
+
|
|
1570
|
+
if has_len is False:
|
|
1571
|
+
return makeRaiseTypeErrorExceptionReplacementFromTemplateAndValue(
|
|
1572
|
+
template="object of type '%s' has no len()",
|
|
1573
|
+
operation="len",
|
|
1574
|
+
original_node=len_node,
|
|
1575
|
+
value_node=self,
|
|
1576
|
+
)
|
|
1577
|
+
elif has_len is True:
|
|
1578
|
+
iter_length = self.getIterationLength()
|
|
1579
|
+
|
|
1580
|
+
if iter_length is not None:
|
|
1581
|
+
from .ConstantRefNodes import makeConstantRefNode
|
|
1582
|
+
|
|
1583
|
+
result = makeConstantRefNode(
|
|
1584
|
+
constant=int(iter_length), # make sure to downcast long
|
|
1585
|
+
source_ref=len_node.getSourceReference(),
|
|
1586
|
+
)
|
|
1587
|
+
|
|
1588
|
+
result = wrapExpressionWithNodeSideEffects(new_node=result, old_node=self)
|
|
1589
|
+
|
|
1590
|
+
return (
|
|
1591
|
+
result,
|
|
1592
|
+
"new_constant",
|
|
1593
|
+
"Predicted 'len' result from value shape.",
|
|
1594
|
+
)
|
|
1595
|
+
|
|
1596
|
+
self.onContentEscapes(trace_collection)
|
|
1597
|
+
|
|
1598
|
+
# Any code could be run, note that.
|
|
1599
|
+
trace_collection.onControlFlowEscape(self)
|
|
1600
|
+
|
|
1601
|
+
# Any exception may be raised.
|
|
1602
|
+
trace_collection.onExceptionRaiseExit(BaseException)
|
|
1603
|
+
|
|
1604
|
+
return len_node, None, None
|
|
1605
|
+
|
|
1606
|
+
Notice how by default, known ``__len__`` but unpredictable or even
|
|
1607
|
+
unknown if a ``__len__`` slot is there, the code indicates that its
|
|
1608
|
+
contents and the control flow escapes (could change things behind out
|
|
1609
|
+
back) and any exception could happen.
|
|
1610
|
+
|
|
1611
|
+
Other expressions can know better, e.g. for compile time constants we
|
|
1612
|
+
can be a whole lot more certain:
|
|
1613
|
+
|
|
1614
|
+
.. code:: python
|
|
1615
|
+
|
|
1616
|
+
def computeExpressionLen(self, len_node, trace_collection):
|
|
1617
|
+
return trace_collection.getCompileTimeComputationResult(
|
|
1618
|
+
node=len_node,
|
|
1619
|
+
computation=lambda: len(self.getCompileTimeConstant()),
|
|
1620
|
+
description="""Compile time constant len value pre-computed.""",
|
|
1621
|
+
)
|
|
1622
|
+
|
|
1623
|
+
In this case, we are using a function that will produce a concrete value
|
|
1624
|
+
or the exception that the ``computation`` function raised. In this case,
|
|
1625
|
+
we can let the Python interpreter that runs Nuitka do all the hard work.
|
|
1626
|
+
This lives in ``CompileTimeConstantExpressionBase`` and is the base for
|
|
1627
|
+
all kinds of constant values, or even built-in references like the name
|
|
1628
|
+
``len`` itself and would be used in case of doing ``len(len)`` which
|
|
1629
|
+
obviously gives an exception.
|
|
1630
|
+
|
|
1631
|
+
Other overloads do not currently exist in Nuitka, but through the
|
|
1632
|
+
iteration length, most cases could be addressed, e.g. ``list`` nodes
|
|
1633
|
+
typical know their element counts.
|
|
1634
|
+
|
|
1635
|
+
The C side
|
|
1636
|
+
==========
|
|
1637
|
+
|
|
1638
|
+
When a slot is not optimized away at compile time however, we need to
|
|
1639
|
+
generate actual code for it. We figure out what this could be by looking
|
|
1640
|
+
at the original CPython implementation.
|
|
1641
|
+
|
|
1642
|
+
.. code:: C
|
|
1643
|
+
|
|
1644
|
+
PyObject *builtin_len(PyObject *self, PyObject *v) {
|
|
1645
|
+
Py_ssize_t res;
|
|
1646
|
+
|
|
1647
|
+
res = PyObject_Size(v);
|
|
1648
|
+
if (res < 0 && PyErr_Occurred())
|
|
1649
|
+
return NULL;
|
|
1650
|
+
return PyInt_FromSsize_t(res);
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
We find a pointer to ``PyObject_Size`` which is a generic Python C/API
|
|
1654
|
+
function used in the ``builtin_len`` implementation:
|
|
1655
|
+
|
|
1656
|
+
.. code:: C
|
|
1657
|
+
|
|
1658
|
+
Py_ssize_t PyObject_Size(PyObject *o) {
|
|
1659
|
+
PySequenceMethods *m;
|
|
1660
|
+
|
|
1661
|
+
if (o == NULL) {
|
|
1662
|
+
null_error();
|
|
1663
|
+
return -1;
|
|
1664
|
+
}
|
|
1665
|
+
|
|
1666
|
+
m = o->ob_type->tp_as_sequence;
|
|
1667
|
+
if (m && m->sq_length)
|
|
1668
|
+
return m->sq_length(o);
|
|
1669
|
+
|
|
1670
|
+
return PyMapping_Size(o);
|
|
1671
|
+
}
|
|
1672
|
+
|
|
1673
|
+
On the C level, every Python object (the ``PyObject *``) as a type named
|
|
1674
|
+
``ob_type`` and most of its elements are slots. Sometimes they form a
|
|
1675
|
+
group, here ``tp_as_sequence`` and then it may or may not contain a
|
|
1676
|
+
function. This one is tried in preference. Then, if that fails, next up
|
|
1677
|
+
the mapping size is tried.
|
|
1678
|
+
|
|
1679
|
+
.. code:: C
|
|
1680
|
+
|
|
1681
|
+
Py_ssize_t PyMapping_Size(PyObject *o) {
|
|
1682
|
+
PyMappingMethods *m;
|
|
1683
|
+
|
|
1684
|
+
if (o == NULL) {
|
|
1685
|
+
null_error();
|
|
1686
|
+
return -1;
|
|
1687
|
+
}
|
|
1688
|
+
|
|
1689
|
+
m = o->ob_type->tp_as_mapping;
|
|
1690
|
+
if (m && m->mp_length)
|
|
1691
|
+
return m->mp_length(o);
|
|
1692
|
+
|
|
1693
|
+
type_error("object of type '%.200s' has no len()", o);
|
|
1694
|
+
return -1;
|
|
1695
|
+
}
|
|
1696
|
+
|
|
1697
|
+
This is the same principle, except with ``tp_as_mapping`` and
|
|
1698
|
+
``mp_length`` used.
|
|
1699
|
+
|
|
1700
|
+
So from this, we can tell how ``len`` gets at what could be a Python
|
|
1701
|
+
class ``__len__`` or other built-in types.
|
|
1702
|
+
|
|
1703
|
+
In principle, every slot needs to be dealt with in Nuitka, and it is
|
|
1704
|
+
assumed that currently all slots are supported on at least a very
|
|
1705
|
+
defensive level, to avoid unnoticed escapes of control flow.
|
|
1706
|
+
|
|
1707
|
+
Built-in call optimization
|
|
1708
|
+
==========================
|
|
1709
|
+
|
|
1710
|
+
For calls to built-in names, there is typically a function in Python
|
|
1711
|
+
that delegates to the type constructor (e.g. when we talk about ``int``
|
|
1712
|
+
that just creates an object passing the arguments of the call) or its
|
|
1713
|
+
own special implementation as we saw with the ``len``.
|
|
1714
|
+
|
|
1715
|
+
For each built-in called, we have a specialized node, that presents to
|
|
1716
|
+
optimization the actions of the built-in. What are the impact, what are
|
|
1717
|
+
the results. We have seen the resulting example for ``len`` above, but
|
|
1718
|
+
how do we get there.
|
|
1719
|
+
|
|
1720
|
+
In Python, built-in names are used only if there is no module level
|
|
1721
|
+
variable of the name, and of course no local variable of that name.
|
|
1722
|
+
|
|
1723
|
+
Therefore, optimization of a built-in name is only done if it turns out
|
|
1724
|
+
the actually assigned in other code, and then when the call comes,
|
|
1725
|
+
arguments are checked and a relatively static node is created.
|
|
1726
|
+
|
|
1727
|
+
Code Generation towards C
|
|
1728
|
+
=========================
|
|
1729
|
+
|
|
1730
|
+
Currently, Nuitka uses Pure C and no C++ patterns at all. The use of C11
|
|
1731
|
+
requires on some platforms to compile the C11 using a C++ compiler,
|
|
1732
|
+
which works relatively well, but also limits the amount of C11 that can
|
|
1733
|
+
be used.
|
|
1734
|
+
|
|
1735
|
+
Exceptions
|
|
1736
|
+
----------
|
|
1737
|
+
|
|
1738
|
+
To handle and work with exceptions, every construct that can raise has
|
|
1739
|
+
either a ``bool`` or ``int`` return code or ``PyObject *`` with ``NULL``
|
|
1740
|
+
return value. This is very much in line with that the Python C-API does.
|
|
1741
|
+
|
|
1742
|
+
Every helper function that contains code that might raise needs these
|
|
1743
|
+
variables. After a failed call, our variant of ``PyErr_Fetch`` called
|
|
1744
|
+
``FETCH_ERROR_OCCURRED_STATE`` must be used to catch the defined error,
|
|
1745
|
+
unless some quick exception cases apply. The quick exception means,
|
|
1746
|
+
``NULL`` return from C-API without a set exception means e.g.
|
|
1747
|
+
``StopIteration``.
|
|
1748
|
+
|
|
1749
|
+
As an optimization, functions that raise exceptions, but are known not
|
|
1750
|
+
to do so, for whatever reason, could only be asserted to not do so.
|
|
1751
|
+
|
|
1752
|
+
Statement Temporary Variables
|
|
1753
|
+
-----------------------------
|
|
1754
|
+
|
|
1755
|
+
For statements and larger constructs the context object track temporary
|
|
1756
|
+
values, that represent references. For some, these should be released at
|
|
1757
|
+
the end of the statement, or they represent a leak.
|
|
1758
|
+
|
|
1759
|
+
The larger scope temporary variables, are tracked in the function or
|
|
1760
|
+
module context, where they are supposed to have explicit ``del`` to
|
|
1761
|
+
release their references.
|
|
1762
|
+
|
|
1763
|
+
Local Variables Storage
|
|
1764
|
+
-----------------------
|
|
1765
|
+
|
|
1766
|
+
Closure variables taken are to be released when the function object is
|
|
1767
|
+
later destroyed. For in-lined calls, variables are just passed, and it
|
|
1768
|
+
does not become an issue to release anything.
|
|
1769
|
+
|
|
1770
|
+
For function exit, owned variables, local or shared to other functions,
|
|
1771
|
+
must be released. This cannot be a ``del`` operation, as it also
|
|
1772
|
+
involves setting a value, which would be wrong for shared variables (and
|
|
1773
|
+
wasteful to local variables, as that would be its last usage). Therefore
|
|
1774
|
+
we need a special operation that simply releases the reference to the
|
|
1775
|
+
cell or object variable.
|
|
1776
|
+
|
|
1777
|
+
Exit Targets
|
|
1778
|
+
------------
|
|
1779
|
+
|
|
1780
|
+
Each error or other exit releases statement temporary values and then
|
|
1781
|
+
executes a ``goto`` to the exit target. These targets need to be setup.
|
|
1782
|
+
The ``try``/``except`` will e.g. catch error exits.
|
|
1783
|
+
|
|
1784
|
+
Other exits are ``continue``, ``break``, and ``return`` exits. They all
|
|
1785
|
+
work alike.
|
|
1786
|
+
|
|
1787
|
+
Generally, the exits stack of with constructs that need to register
|
|
1788
|
+
themselves for some exit types. A loop e.g. registers the ``continue``
|
|
1789
|
+
exit, and a contained ``try``/``finally`` too, so it can execute the
|
|
1790
|
+
final code should it be needed.
|
|
1791
|
+
|
|
1792
|
+
Frames
|
|
1793
|
+
------
|
|
1794
|
+
|
|
1795
|
+
Frames are containers for variable declarations and cleanups. As such,
|
|
1796
|
+
frames provide error exits and success exits, which remove the frame
|
|
1797
|
+
from the frame stack, and then proceed to the parent exit.
|
|
1798
|
+
|
|
1799
|
+
With the use of non ``PyObject **`` C types, but frame exception exits,
|
|
1800
|
+
the need to convert those types becomes apparent. Exceptions should
|
|
1801
|
+
still resolve the C version. When using different C types at frame
|
|
1802
|
+
exception exits, there is a need to trace the active type, so it can be
|
|
1803
|
+
used in the correct form.
|
|
1804
|
+
|
|
1805
|
+
Abortive Statements
|
|
1806
|
+
-------------------
|
|
1807
|
+
|
|
1808
|
+
The way ``try``/``finally`` is handled, copies of the ``finally`` block
|
|
1809
|
+
are made, and optimized independently for each abort method. The ones
|
|
1810
|
+
there are of course, ``return``, ``continue``, and ``break``, but also
|
|
1811
|
+
implicit and explicit ``raise`` of an exception.
|
|
1812
|
+
|
|
1813
|
+
Code trailing an abortive statement can be discarded, and the control
|
|
1814
|
+
flow will follow these "exits".
|
|
1815
|
+
|
|
1816
|
+
Constant Preparation
|
|
1817
|
+
====================
|
|
1818
|
+
|
|
1819
|
+
Early versions of Nuitka, created all constants for the whole program
|
|
1820
|
+
for ready access to generated code, before the program launches. It did
|
|
1821
|
+
so in a single file, but that approach didn't scale well.
|
|
1822
|
+
|
|
1823
|
+
Problems were
|
|
1824
|
+
|
|
1825
|
+
- Even unused code contributed to start-up time, this can become a lot
|
|
1826
|
+
for large programs, especially in standalone mode.
|
|
1827
|
+
|
|
1828
|
+
- The massive amount of constant creation codes gave backend C
|
|
1829
|
+
compilers a much harder time than necessary to analyse it all at
|
|
1830
|
+
once.
|
|
1831
|
+
|
|
1832
|
+
The current approach is as follows. Code generation detects constants
|
|
1833
|
+
used in only one module, and declared ``static`` there, if the module is
|
|
1834
|
+
the only user, or ``extern`` if it is not. Some values are forced to be
|
|
1835
|
+
global, as they are used pre-main or in helpers.
|
|
1836
|
+
|
|
1837
|
+
These ``extern`` values are globally created before anything is used.
|
|
1838
|
+
The ``static`` values are created when the module is loaded, i.e.
|
|
1839
|
+
something did import it.
|
|
1840
|
+
|
|
1841
|
+
We trace used constants per module, and for nested ones, we also
|
|
1842
|
+
associate them. The global constants code is special in that it can only
|
|
1843
|
+
use ``static`` for nested values it exclusively uses, and has to export
|
|
1844
|
+
values that others use.
|
|
1845
|
+
|
|
1846
|
+
Language Conversions to make things simpler
|
|
1847
|
+
===========================================
|
|
1848
|
+
|
|
1849
|
+
There are some cases, where the Python language has things that can in
|
|
1850
|
+
fact be expressed in a simpler or more general way, and where we choose
|
|
1851
|
+
to do that at either tree building or optimization time.
|
|
1852
|
+
|
|
1853
|
+
The ``assert`` statement
|
|
1854
|
+
------------------------
|
|
1855
|
+
|
|
1856
|
+
The ``assert`` statement is a special statement in Python, allowed by
|
|
1857
|
+
the syntax. It has two forms, with and without a second argument. The
|
|
1858
|
+
later is probably less known, as is the fact that raise statements can
|
|
1859
|
+
have multiple arguments too.
|
|
1860
|
+
|
|
1861
|
+
The handling in Nuitka is:
|
|
1862
|
+
|
|
1863
|
+
.. code:: python
|
|
1864
|
+
|
|
1865
|
+
assert value
|
|
1866
|
+
# Absolutely the same as:
|
|
1867
|
+
if not value:
|
|
1868
|
+
raise AssertionError
|
|
1869
|
+
|
|
1870
|
+
.. code:: python
|
|
1871
|
+
|
|
1872
|
+
assert value, raise_arg
|
|
1873
|
+
# Absolutely the same as:
|
|
1874
|
+
if not value:
|
|
1875
|
+
raise AssertionError(raise_arg)
|
|
1876
|
+
|
|
1877
|
+
This makes assertions absolutely the same as a raise exception in a
|
|
1878
|
+
conditional statement.
|
|
1879
|
+
|
|
1880
|
+
This transformation is performed at tree building already, so Nuitka
|
|
1881
|
+
never knows about ``assert`` as an element and standard optimizations
|
|
1882
|
+
apply. If e.g. the truth value of the assertion can be predicted, the
|
|
1883
|
+
conditional statement will have the branch statically executed or
|
|
1884
|
+
removed.
|
|
1885
|
+
|
|
1886
|
+
The "comparison chain" expressions
|
|
1887
|
+
----------------------------------
|
|
1888
|
+
|
|
1889
|
+
In Nuitka we have the concept of an outline, and therefore we can make
|
|
1890
|
+
the following re-formulation instead:
|
|
1891
|
+
|
|
1892
|
+
.. code:: python
|
|
1893
|
+
|
|
1894
|
+
a < b() > c < d
|
|
1895
|
+
|
|
1896
|
+
|
|
1897
|
+
def _comparison_chain(): # So called "outline" function
|
|
1898
|
+
tmp_a = a
|
|
1899
|
+
tmp_b = b()
|
|
1900
|
+
|
|
1901
|
+
tmp = tmp_a < tmp_b
|
|
1902
|
+
|
|
1903
|
+
if not tmp:
|
|
1904
|
+
return tmp
|
|
1905
|
+
|
|
1906
|
+
del tmp_a
|
|
1907
|
+
tmp_c = c
|
|
1908
|
+
|
|
1909
|
+
tmp = tmp_b > tmp_c
|
|
1910
|
+
|
|
1911
|
+
if not tmp:
|
|
1912
|
+
return tmp
|
|
1913
|
+
|
|
1914
|
+
del tmp_b
|
|
1915
|
+
|
|
1916
|
+
return tmp_c < d
|
|
1917
|
+
|
|
1918
|
+
|
|
1919
|
+
_comparison_chain()
|
|
1920
|
+
|
|
1921
|
+
This transformation is performed at tree building already. The temporary
|
|
1922
|
+
variables keep the value for the use of the same expression. Only the
|
|
1923
|
+
last expression needs no temporary variable to keep it.
|
|
1924
|
+
|
|
1925
|
+
What we got from this, is making the checks of the comparison chain
|
|
1926
|
+
explicit and comparisons in Nuitka to be internally always about two
|
|
1927
|
+
operands only.
|
|
1928
|
+
|
|
1929
|
+
The ``execfile`` built-in
|
|
1930
|
+
-------------------------
|
|
1931
|
+
|
|
1932
|
+
Handling is:
|
|
1933
|
+
|
|
1934
|
+
.. code:: python
|
|
1935
|
+
|
|
1936
|
+
execfile(filename)
|
|
1937
|
+
# Basically the same as:
|
|
1938
|
+
exec(compile(open(filename).read()), filename, "exec")
|
|
1939
|
+
|
|
1940
|
+
.. note::
|
|
1941
|
+
|
|
1942
|
+
This allows optimizations to discover the file opening nature easily
|
|
1943
|
+
and apply file embedding or whatever we will have there one day.
|
|
1944
|
+
|
|
1945
|
+
This transformation is performed when the ``execfile`` built-in is
|
|
1946
|
+
detected as such during optimization.
|
|
1947
|
+
|
|
1948
|
+
Generator expressions with ``yield``
|
|
1949
|
+
------------------------------------
|
|
1950
|
+
|
|
1951
|
+
These are converted at tree building time into a generator function body
|
|
1952
|
+
that yields from the iterator given, which is the put into a for loop to
|
|
1953
|
+
iterate, created a lambda function of and then called with the first
|
|
1954
|
+
iterator.
|
|
1955
|
+
|
|
1956
|
+
That eliminates the generator expression for this case. It's a bizarre
|
|
1957
|
+
construct and with this trick needs no special code generation.
|
|
1958
|
+
|
|
1959
|
+
This is a complex example, demonstrating multiple cases of yield in
|
|
1960
|
+
unexpected cases:
|
|
1961
|
+
|
|
1962
|
+
.. code:: python
|
|
1963
|
+
|
|
1964
|
+
x = ((yield i) for i in (1, 2) if not (yield))
|
|
1965
|
+
# Basically the same as:
|
|
1966
|
+
def x():
|
|
1967
|
+
for i in (1, 2):
|
|
1968
|
+
if not (yield):
|
|
1969
|
+
yield (yield i)
|
|
1970
|
+
|
|
1971
|
+
Function Decorators
|
|
1972
|
+
-------------------
|
|
1973
|
+
|
|
1974
|
+
When one learns about decorators, you see that:
|
|
1975
|
+
|
|
1976
|
+
.. code:: python
|
|
1977
|
+
|
|
1978
|
+
@decorator
|
|
1979
|
+
def function():
|
|
1980
|
+
pass
|
|
1981
|
+
|
|
1982
|
+
|
|
1983
|
+
# Is basically the same as:
|
|
1984
|
+
def function():
|
|
1985
|
+
pass
|
|
1986
|
+
|
|
1987
|
+
|
|
1988
|
+
function = decorator(function)
|
|
1989
|
+
|
|
1990
|
+
The only difference is the assignment to function. In the ``@decorator``
|
|
1991
|
+
case, if the decorator fails with an exception, the name ``function`` is
|
|
1992
|
+
not assigned yet, but kept in a temporary variable.
|
|
1993
|
+
|
|
1994
|
+
Therefore in Nuitka this assignment is more similar to that of a lambda
|
|
1995
|
+
expression, where the assignment to the name is only at the end, which
|
|
1996
|
+
also has the extra benefit of not treating real function and lambda
|
|
1997
|
+
functions any different.
|
|
1998
|
+
|
|
1999
|
+
This removes the need for optimization and code generation to support
|
|
2000
|
+
decorators at all. And it should make the two variants optimize equally
|
|
2001
|
+
well.
|
|
2002
|
+
|
|
2003
|
+
Functions nested arguments
|
|
2004
|
+
--------------------------
|
|
2005
|
+
|
|
2006
|
+
Nested arguments are a Python2 only feature supported by Nuitka.
|
|
2007
|
+
Consider this example:
|
|
2008
|
+
|
|
2009
|
+
.. code:: python
|
|
2010
|
+
|
|
2011
|
+
def function(a, (b, c)):
|
|
2012
|
+
return a, b, c
|
|
2013
|
+
|
|
2014
|
+
We solve this, by kind of wrapping the function with another function
|
|
2015
|
+
that does the unpacking and gives the errors that come from this:
|
|
2016
|
+
|
|
2017
|
+
.. code:: python
|
|
2018
|
+
|
|
2019
|
+
def function(a, _1):
|
|
2020
|
+
def _tmp(a, b, c):
|
|
2021
|
+
return a, b, c
|
|
2022
|
+
|
|
2023
|
+
a, b = _1
|
|
2024
|
+
return _tmp(a, b, c)
|
|
2025
|
+
|
|
2026
|
+
The ``.1`` is the variable name used by CPython internally, and actually
|
|
2027
|
+
works if you use keyword arguments via star dictionary. So this is very
|
|
2028
|
+
compatible and actually the right kind of re-formulation, but it removes
|
|
2029
|
+
the need from the code that does parameter parsing to deal with these.
|
|
2030
|
+
|
|
2031
|
+
Obviously, there is no frame for ``_tmp``, just one for ``function`` and
|
|
2032
|
+
we do not use local variables, but temporary functions.
|
|
2033
|
+
|
|
2034
|
+
In-place Assignments
|
|
2035
|
+
--------------------
|
|
2036
|
+
|
|
2037
|
+
In-place assignments are re-formulated to an expression using temporary
|
|
2038
|
+
variables.
|
|
2039
|
+
|
|
2040
|
+
These are not as much a reformulation of ``+=`` to ``+``, but instead
|
|
2041
|
+
one which makes it explicit that the assign target may change its value.
|
|
2042
|
+
|
|
2043
|
+
.. code:: python
|
|
2044
|
+
|
|
2045
|
+
a += b
|
|
2046
|
+
|
|
2047
|
+
.. code:: python
|
|
2048
|
+
|
|
2049
|
+
_tmp = a.__iadd__(b)
|
|
2050
|
+
|
|
2051
|
+
if a is not _tmp:
|
|
2052
|
+
a = _tmp
|
|
2053
|
+
|
|
2054
|
+
Using ``__iadd__`` here to express that for the ``+``, the in-place
|
|
2055
|
+
variant ``iadd`` is used instead. The ``is`` check may be optimized away
|
|
2056
|
+
depending on type and value knowledge later on.
|
|
2057
|
+
|
|
2058
|
+
Complex Assignments
|
|
2059
|
+
-------------------
|
|
2060
|
+
|
|
2061
|
+
Complex assignments are defined as those with multiple targets to assign
|
|
2062
|
+
from a single source and are re-formulated to such using a temporary
|
|
2063
|
+
variable and multiple simple assignments instead.
|
|
2064
|
+
|
|
2065
|
+
.. code:: python
|
|
2066
|
+
|
|
2067
|
+
a = b = c
|
|
2068
|
+
|
|
2069
|
+
.. code:: python
|
|
2070
|
+
|
|
2071
|
+
_tmp = c
|
|
2072
|
+
a = _tmp
|
|
2073
|
+
b = _tmp
|
|
2074
|
+
del _tmp
|
|
2075
|
+
|
|
2076
|
+
This is possible, because in Python, if one assignment fails, it can
|
|
2077
|
+
just be interrupted, so in fact, they are sequential, and all that is
|
|
2078
|
+
required is to not calculate ``c`` twice, which the temporary variable
|
|
2079
|
+
takes care of. Were ``b`` a more complex expression, e.g.
|
|
2080
|
+
``b.some_attribute`` that might raise an exception, ``a`` would still be
|
|
2081
|
+
assigned.
|
|
2082
|
+
|
|
2083
|
+
Unpacking Assignments
|
|
2084
|
+
---------------------
|
|
2085
|
+
|
|
2086
|
+
Unpacking assignments are re-formulated to use temporary variables as
|
|
2087
|
+
well.
|
|
2088
|
+
|
|
2089
|
+
.. code:: python
|
|
2090
|
+
|
|
2091
|
+
a, b.attr, c[ind] = d = e, f, g = h()
|
|
2092
|
+
|
|
2093
|
+
Becomes this:
|
|
2094
|
+
|
|
2095
|
+
.. code:: python
|
|
2096
|
+
|
|
2097
|
+
_tmp = h()
|
|
2098
|
+
|
|
2099
|
+
_iter1 = iter(_tmp)
|
|
2100
|
+
_tmp1 = unpack(_iter1, 3)
|
|
2101
|
+
_tmp2 = unpack(_iter1, 3)
|
|
2102
|
+
_tmp3 = unpack(_iter1, 3)
|
|
2103
|
+
unpack_check(_iter1)
|
|
2104
|
+
a = _tmp1
|
|
2105
|
+
b.attr = _tmp2
|
|
2106
|
+
c[ind] = _tmp3
|
|
2107
|
+
d = _tmp
|
|
2108
|
+
_iter2 = iter(_tmp)
|
|
2109
|
+
_tmp4 = unpack(_iter2, 3)
|
|
2110
|
+
_tmp5 = unpack(_iter2, 3)
|
|
2111
|
+
_tmp6 = unpack(_iter2, 3)
|
|
2112
|
+
unpack_check(_iter1)
|
|
2113
|
+
e = _tmp4
|
|
2114
|
+
f = _tmp5
|
|
2115
|
+
g = _tmp6
|
|
2116
|
+
|
|
2117
|
+
That way, the unpacking is decomposed into multiple simple statements.
|
|
2118
|
+
It will be the job of optimizations to try and remove unnecessary
|
|
2119
|
+
unpacking, in case e.g. the source is a known tuple or list creation.
|
|
2120
|
+
|
|
2121
|
+
.. note::
|
|
2122
|
+
|
|
2123
|
+
The ``unpack`` is a special node which is a form of ``next`` that
|
|
2124
|
+
will raise a ``ValueError`` when it cannot get the next value, rather
|
|
2125
|
+
than a ``StopIteration``. The message text contains the number of
|
|
2126
|
+
values to unpack, therefore the integer argument.
|
|
2127
|
+
|
|
2128
|
+
.. note::
|
|
2129
|
+
|
|
2130
|
+
The ``unpack_check`` is a special node that raises a ``ValueError``
|
|
2131
|
+
exception if the iterator is not finished, i.e. there are more values
|
|
2132
|
+
to unpack. Again the number of values to unpack is provided to
|
|
2133
|
+
construct the error message.
|
|
2134
|
+
|
|
2135
|
+
With Statements
|
|
2136
|
+
---------------
|
|
2137
|
+
|
|
2138
|
+
The ``with`` statements are re-formulated to use temporary variables as
|
|
2139
|
+
well. The taking and calling of ``__enter__`` and ``__exit__`` with
|
|
2140
|
+
arguments, is presented with standard operations instead. The promise to
|
|
2141
|
+
call ``__exit__`` is fulfilled by ``try``/``except`` clause instead.
|
|
2142
|
+
|
|
2143
|
+
.. code:: python
|
|
2144
|
+
|
|
2145
|
+
with some_context as x:
|
|
2146
|
+
something(x)
|
|
2147
|
+
|
|
2148
|
+
.. code:: python
|
|
2149
|
+
|
|
2150
|
+
tmp_source = some_context
|
|
2151
|
+
|
|
2152
|
+
# Actually it needs to be "special look-up" for Python2.7, so attribute
|
|
2153
|
+
# look-up won't be exactly what is there.
|
|
2154
|
+
tmp_exit = tmp_source.__exit__
|
|
2155
|
+
|
|
2156
|
+
# This one must be held for the whole with statement, it may be assigned
|
|
2157
|
+
# or not, in our example it is. If an exception occurs when calling
|
|
2158
|
+
# ``__enter__``, the ``__exit__`` should not be called.
|
|
2159
|
+
tmp_enter_result = tmp_source.__enter__()
|
|
2160
|
+
|
|
2161
|
+
# Indicator variable to know if "tmp_exit" has been called.
|
|
2162
|
+
tmp_indicator = False
|
|
2163
|
+
|
|
2164
|
+
try:
|
|
2165
|
+
# Now the assignment is to be done, if there is any name for the
|
|
2166
|
+
# manager given, this may become multiple assignment statements and
|
|
2167
|
+
# even unpacking ones.
|
|
2168
|
+
x = tmp_enter_result
|
|
2169
|
+
|
|
2170
|
+
# Then the code of the "with" block.
|
|
2171
|
+
something(x)
|
|
2172
|
+
except Exception:
|
|
2173
|
+
# Note: This part of the code must not set line numbers, which we
|
|
2174
|
+
# indicate with special source code references, which we call "internal".
|
|
2175
|
+
# Otherwise the line of the frame would get corrupted.
|
|
2176
|
+
|
|
2177
|
+
tmp_indicator = True
|
|
2178
|
+
|
|
2179
|
+
if not tmp_exit(*sys.exc_info()):
|
|
2180
|
+
raise
|
|
2181
|
+
finally:
|
|
2182
|
+
if not tmp_indicator:
|
|
2183
|
+
# Call the exit if no exception occurred with all arguments
|
|
2184
|
+
# as "None".
|
|
2185
|
+
tmp_exit(None, None, None)
|
|
2186
|
+
|
|
2187
|
+
.. note::
|
|
2188
|
+
|
|
2189
|
+
We don't refer really to ``sys.exc_info()`` at all, instead, we have
|
|
2190
|
+
fast references to the current exception type, value and trace, taken
|
|
2191
|
+
directly from the caught exception object on the C level.
|
|
2192
|
+
|
|
2193
|
+
If we had the ability to optimize ``sys.exc_info()`` to do that, we
|
|
2194
|
+
could use the same transformation, but right now we don't have it.
|
|
2195
|
+
|
|
2196
|
+
For Loops
|
|
2197
|
+
---------
|
|
2198
|
+
|
|
2199
|
+
The ``for`` loops use normal assignments and handle the iterator that is
|
|
2200
|
+
implicit in the code explicitly.
|
|
2201
|
+
|
|
2202
|
+
.. code:: python
|
|
2203
|
+
|
|
2204
|
+
for x, y in iterable:
|
|
2205
|
+
if something(x):
|
|
2206
|
+
break
|
|
2207
|
+
else:
|
|
2208
|
+
otherwise()
|
|
2209
|
+
|
|
2210
|
+
This is roughly equivalent to the following code:
|
|
2211
|
+
|
|
2212
|
+
.. code:: python
|
|
2213
|
+
|
|
2214
|
+
_iter = iter(iterable)
|
|
2215
|
+
_no_break_indicator = False
|
|
2216
|
+
|
|
2217
|
+
while 1:
|
|
2218
|
+
try:
|
|
2219
|
+
_tmp_value = next(_iter)
|
|
2220
|
+
except StopIteration:
|
|
2221
|
+
# Set the indicator that the else branch may be executed.
|
|
2222
|
+
_no_break_indicator = True
|
|
2223
|
+
|
|
2224
|
+
# Optimization should be able to tell that the else branch is run
|
|
2225
|
+
# only once.
|
|
2226
|
+
break
|
|
2227
|
+
|
|
2228
|
+
# Normal assignment re-formulation applies to this assignment of course.
|
|
2229
|
+
x, y = _tmp_value
|
|
2230
|
+
del _tmp_value
|
|
2231
|
+
|
|
2232
|
+
if something(x):
|
|
2233
|
+
break
|
|
2234
|
+
|
|
2235
|
+
if _no_break_indicator:
|
|
2236
|
+
otherwise()
|
|
2237
|
+
|
|
2238
|
+
.. note::
|
|
2239
|
+
|
|
2240
|
+
The ``_iter`` temporary variable is of course also in a
|
|
2241
|
+
``try/finally`` construct, to make sure it releases after its used.
|
|
2242
|
+
The ``x, y`` assignment is of course subject to unpacking
|
|
2243
|
+
re-formulation.
|
|
2244
|
+
|
|
2245
|
+
The ``try``/``except`` is detected to allow to use a variant of
|
|
2246
|
+
``next`` that does not raise an exception, but to be fast check about
|
|
2247
|
+
the ``NULL`` return from ``next`` built-in. So no actual exception
|
|
2248
|
+
handling is happening in this case.
|
|
2249
|
+
|
|
2250
|
+
While Loops
|
|
2251
|
+
-----------
|
|
2252
|
+
|
|
2253
|
+
Quoting the ``nuitka.tree.ReformulationWhileLoopStatements``
|
|
2254
|
+
documentation:
|
|
2255
|
+
|
|
2256
|
+
Reformulation of while loop statements.
|
|
2257
|
+
|
|
2258
|
+
Loops in Nuitka have no condition attached anymore, so while loops are
|
|
2259
|
+
re-formulated like this:
|
|
2260
|
+
|
|
2261
|
+
.. code:: python
|
|
2262
|
+
|
|
2263
|
+
while condition:
|
|
2264
|
+
something()
|
|
2265
|
+
|
|
2266
|
+
.. code:: python
|
|
2267
|
+
|
|
2268
|
+
while 1:
|
|
2269
|
+
if not condition:
|
|
2270
|
+
break
|
|
2271
|
+
|
|
2272
|
+
something()
|
|
2273
|
+
|
|
2274
|
+
This is to totally remove the specialization of loops, with the
|
|
2275
|
+
condition moved to the loop body in an initial conditional statement,
|
|
2276
|
+
which contains a ``break`` statement.
|
|
2277
|
+
|
|
2278
|
+
That achieves, that only ``break`` statements exit the loop, and allow
|
|
2279
|
+
for optimization to remove always true loop conditions, without
|
|
2280
|
+
concerning code generation about it, and to detect such a situation,
|
|
2281
|
+
consider e.g. endless loops.
|
|
2282
|
+
|
|
2283
|
+
.. note::
|
|
2284
|
+
|
|
2285
|
+
Loop analysis (not yet done) can then work on a reduced problem
|
|
2286
|
+
(which ``break`` statements are executed under what conditions) and
|
|
2287
|
+
is then automatically very general.
|
|
2288
|
+
|
|
2289
|
+
The fact that the loop body may not be entered at all, is still
|
|
2290
|
+
optimized, but also in the general sense. Explicit breaks at the loop
|
|
2291
|
+
start and loop conditions are the same.
|
|
2292
|
+
|
|
2293
|
+
End quoting the ``nuitka.tree.ReformulationWhileLoopStatements``
|
|
2294
|
+
documentation:
|
|
2295
|
+
|
|
2296
|
+
Exception Handlers
|
|
2297
|
+
------------------
|
|
2298
|
+
|
|
2299
|
+
Exception handlers in Python may assign the caught exception value to a
|
|
2300
|
+
variable in the handler definition. And the different handlers are
|
|
2301
|
+
represented as conditional checks on the result of comparison
|
|
2302
|
+
operations.
|
|
2303
|
+
|
|
2304
|
+
.. code:: python
|
|
2305
|
+
|
|
2306
|
+
try:
|
|
2307
|
+
block()
|
|
2308
|
+
except A as e:
|
|
2309
|
+
handlerA(e)
|
|
2310
|
+
except B as e:
|
|
2311
|
+
handlerB(e)
|
|
2312
|
+
else:
|
|
2313
|
+
handlerElse()
|
|
2314
|
+
|
|
2315
|
+
.. code:: python
|
|
2316
|
+
|
|
2317
|
+
try:
|
|
2318
|
+
block()
|
|
2319
|
+
except:
|
|
2320
|
+
# These are special nodes that access the exception, and don't really
|
|
2321
|
+
# use the "sys" module.
|
|
2322
|
+
tmp_exc_type = sys.exc_info()[0]
|
|
2323
|
+
tmp_exc_value = sys.exc_info()[1]
|
|
2324
|
+
|
|
2325
|
+
# exception_matches is a comparison operation, also a special node.
|
|
2326
|
+
if exception_matches(tmp_exc_type, (A,)):
|
|
2327
|
+
e = tmp_exc_value
|
|
2328
|
+
handlerA(e)
|
|
2329
|
+
elif exception_matches(tmp_exc_type, (B,)):
|
|
2330
|
+
e = tmp_exc_value
|
|
2331
|
+
handlerB(e)
|
|
2332
|
+
else:
|
|
2333
|
+
handlerElse()
|
|
2334
|
+
|
|
2335
|
+
For Python3, the assigned ``e`` variables get deleted at the end of the
|
|
2336
|
+
handler block. Should that value be already deleted, that ``del`` does
|
|
2337
|
+
not raise, therefore it's tolerant. This has to be done in any case, so
|
|
2338
|
+
for Python3 it is even more complex.
|
|
2339
|
+
|
|
2340
|
+
.. code:: python
|
|
2341
|
+
|
|
2342
|
+
try:
|
|
2343
|
+
block()
|
|
2344
|
+
except:
|
|
2345
|
+
# These are special nodes that access the exception, and don't really
|
|
2346
|
+
# use the "sys" module.
|
|
2347
|
+
tmp_exc_type = sys.exc_info()[0]
|
|
2348
|
+
tmp_exc_value = sys.exc_info()[1]
|
|
2349
|
+
|
|
2350
|
+
# exception_matches is a comparison operation, also a special node.
|
|
2351
|
+
if exception_matches(tmp_exc_type, (A,)):
|
|
2352
|
+
try:
|
|
2353
|
+
e = tmp_exc_value
|
|
2354
|
+
handlerA(e)
|
|
2355
|
+
finally:
|
|
2356
|
+
del e
|
|
2357
|
+
elif exception_matches(tmp_exc_type, (B,)):
|
|
2358
|
+
try:
|
|
2359
|
+
e = tmp_exc_value
|
|
2360
|
+
handlerB(e)
|
|
2361
|
+
finally:
|
|
2362
|
+
del e
|
|
2363
|
+
else:
|
|
2364
|
+
handlerElse()
|
|
2365
|
+
|
|
2366
|
+
Should there be no ``else:`` branch, a default re-raise statement is
|
|
2367
|
+
used instead.
|
|
2368
|
+
|
|
2369
|
+
And of course, the values of the current exception type and value, both
|
|
2370
|
+
use special references, that access the C++ and don't go via
|
|
2371
|
+
``sys.exc_info`` at all, nodes called ``CaughtExceptionTypeRef`` and
|
|
2372
|
+
``CaughtExceptionValueRef``.
|
|
2373
|
+
|
|
2374
|
+
This means, that the different handlers and their catching run time
|
|
2375
|
+
behavior are all explicit and reduced the branches.
|
|
2376
|
+
|
|
2377
|
+
Statement ``try``/``except`` with ``else``
|
|
2378
|
+
------------------------------------------
|
|
2379
|
+
|
|
2380
|
+
Much like ``else`` branches of loops, an indicator variable is used to
|
|
2381
|
+
indicate the entry into any of the exception handlers.
|
|
2382
|
+
|
|
2383
|
+
Therefore, the ``else`` becomes a real conditional statement in the node
|
|
2384
|
+
tree, checking the indicator variable and guarding the execution of the
|
|
2385
|
+
``else`` branch.
|
|
2386
|
+
|
|
2387
|
+
Class Creation (Python2)
|
|
2388
|
+
------------------------
|
|
2389
|
+
|
|
2390
|
+
Classes in Python2 have a body that only serves to build the class
|
|
2391
|
+
dictionary and is a normal function otherwise. This is expressed with
|
|
2392
|
+
the following re-formulation:
|
|
2393
|
+
|
|
2394
|
+
.. code:: python
|
|
2395
|
+
|
|
2396
|
+
# in module "SomeModule"
|
|
2397
|
+
# ...
|
|
2398
|
+
|
|
2399
|
+
|
|
2400
|
+
class SomeClass(SomeBase, AnotherBase):
|
|
2401
|
+
""" This is the class documentation. """
|
|
2402
|
+
|
|
2403
|
+
some_member = 3
|
|
2404
|
+
|
|
2405
|
+
.. code:: python
|
|
2406
|
+
|
|
2407
|
+
def _makeSomeClass():
|
|
2408
|
+
# The module name becomes a normal local variable too.
|
|
2409
|
+
__module__ = "SomeModule"
|
|
2410
|
+
|
|
2411
|
+
# The doc string becomes a normal local variable.
|
|
2412
|
+
__doc__ = """ This is the class documentation. """
|
|
2413
|
+
|
|
2414
|
+
some_member = 3
|
|
2415
|
+
|
|
2416
|
+
return locals()
|
|
2417
|
+
|
|
2418
|
+
# force locals to be a writable dictionary, will be optimized away, but
|
|
2419
|
+
# that property will stick. This is only to express, that locals(), where
|
|
2420
|
+
# used will be writable to.
|
|
2421
|
+
exec("")
|
|
2422
|
+
|
|
2423
|
+
|
|
2424
|
+
SomeClass = make_class("SomeClass", (SomeBase, AnotherBase), _makeSomeClass())
|
|
2425
|
+
|
|
2426
|
+
That is roughly the same, except that ``_makeSomeClass`` is *not*
|
|
2427
|
+
visible to its child functions when it comes to closure taking, which we
|
|
2428
|
+
cannot express in Python language at all.
|
|
2429
|
+
|
|
2430
|
+
Therefore, class bodies are just special function bodies that create a
|
|
2431
|
+
dictionary for use in class creation. They don't really appear after the
|
|
2432
|
+
tree building stage anymore. The type inference will of course have to
|
|
2433
|
+
become able to understand ``make_class`` quite well, so it can recognize
|
|
2434
|
+
the created class again.
|
|
2435
|
+
|
|
2436
|
+
Class Creation (Python3)
|
|
2437
|
+
------------------------
|
|
2438
|
+
|
|
2439
|
+
In Python3, classes are a complicated way to write a function call, that
|
|
2440
|
+
can interact with its body. The body starts with a dictionary provided
|
|
2441
|
+
by the metaclass, so that is different, because it can ``__prepare__`` a
|
|
2442
|
+
non-empty locals for it, which is hidden away in "prepare_class_dict"
|
|
2443
|
+
below.
|
|
2444
|
+
|
|
2445
|
+
What's noteworthy, is that this dictionary, could e.g. be an
|
|
2446
|
+
``OrderDict``. I am not sure, what ``__prepare__`` is allowed to return.
|
|
2447
|
+
|
|
2448
|
+
.. code:: python3
|
|
2449
|
+
|
|
2450
|
+
# in module "SomeModule"
|
|
2451
|
+
# ...
|
|
2452
|
+
|
|
2453
|
+
class SomeClass(SomeBase, AnotherBase, metaclass = SomeMetaClass):
|
|
2454
|
+
""" This is the class documentation. """
|
|
2455
|
+
|
|
2456
|
+
some_member = 3
|
|
2457
|
+
|
|
2458
|
+
.. code:: python
|
|
2459
|
+
|
|
2460
|
+
# Non-keyword arguments, need to be evaluated first.
|
|
2461
|
+
tmp_bases = (SomeBase, AnotherBase)
|
|
2462
|
+
|
|
2463
|
+
# Keyword arguments go next, __metaclass__ is just one of them. In principle
|
|
2464
|
+
# we need to forward the others as well, but this is ignored for the sake of
|
|
2465
|
+
# brevity.
|
|
2466
|
+
tmp_metaclass = select_metaclass(tmp_bases, SomeMetaClass)
|
|
2467
|
+
|
|
2468
|
+
tmp_prepared = tmp_metaclass.__prepare__("SomeClass", tmp_bases)
|
|
2469
|
+
|
|
2470
|
+
# The function that creates the class dictionary. Receives temporary variables
|
|
2471
|
+
# to work with.
|
|
2472
|
+
def _makeSomeClass():
|
|
2473
|
+
# This has effect, currently I don't know how to express that in Python3
|
|
2474
|
+
# syntax, but we will have a node that does that.
|
|
2475
|
+
locals().replace(tmp_prepared)
|
|
2476
|
+
|
|
2477
|
+
# The module name becomes a normal local variable too.
|
|
2478
|
+
__module__ = "SomeModule"
|
|
2479
|
+
|
|
2480
|
+
# The doc string becomes a normal local variable.
|
|
2481
|
+
__doc__ = """ This is the class documentation. """
|
|
2482
|
+
|
|
2483
|
+
some_member = 3
|
|
2484
|
+
|
|
2485
|
+
# Create the class, share the potential closure variable "__class__"
|
|
2486
|
+
# with others.
|
|
2487
|
+
__class__ = tmp_metaclass("SomeClass", tmp_bases, locals())
|
|
2488
|
+
|
|
2489
|
+
return __class__
|
|
2490
|
+
|
|
2491
|
+
|
|
2492
|
+
# Build and assign the class.
|
|
2493
|
+
SomeClass = _makeSomeClass()
|
|
2494
|
+
|
|
2495
|
+
Generator Expressions
|
|
2496
|
+
---------------------
|
|
2497
|
+
|
|
2498
|
+
There are re-formulated as functions.
|
|
2499
|
+
|
|
2500
|
+
Generally they are turned into calls of function bodies with
|
|
2501
|
+
(potentially nested) for loops:
|
|
2502
|
+
|
|
2503
|
+
.. code:: python
|
|
2504
|
+
|
|
2505
|
+
gen = (x * 2 for x in range(8) if cond())
|
|
2506
|
+
|
|
2507
|
+
.. code:: python
|
|
2508
|
+
|
|
2509
|
+
def _gen_helper(__iterator):
|
|
2510
|
+
for x in __iterator:
|
|
2511
|
+
if cond():
|
|
2512
|
+
yield x * 2
|
|
2513
|
+
|
|
2514
|
+
|
|
2515
|
+
gen = _gen_helper(range(8))
|
|
2516
|
+
|
|
2517
|
+
List Contractions
|
|
2518
|
+
-----------------
|
|
2519
|
+
|
|
2520
|
+
The list contractions of Python2 are different from those of Python3, in
|
|
2521
|
+
that they don't actually do any closure variable taking, and that no
|
|
2522
|
+
function object ever exists.
|
|
2523
|
+
|
|
2524
|
+
.. code:: python
|
|
2525
|
+
|
|
2526
|
+
list_value = [x * 2 for x in range(8) if cond()]
|
|
2527
|
+
|
|
2528
|
+
.. code:: python
|
|
2529
|
+
|
|
2530
|
+
def _listcontr_helper(__iterator):
|
|
2531
|
+
result = []
|
|
2532
|
+
|
|
2533
|
+
for x in __iterator:
|
|
2534
|
+
if cond():
|
|
2535
|
+
result.append(x * 2)
|
|
2536
|
+
|
|
2537
|
+
return result
|
|
2538
|
+
|
|
2539
|
+
|
|
2540
|
+
list_value = _listcontr_helper(range(8))
|
|
2541
|
+
|
|
2542
|
+
The difference is that with Python3, the function "_listcontr_helper" is
|
|
2543
|
+
really there and named ``<listcontraction>`` (or ``<listcomp>`` as of
|
|
2544
|
+
Python3.7 or higher), whereas with Python2 the function is only an
|
|
2545
|
+
outline, so it can readily access the containing name space.
|
|
2546
|
+
|
|
2547
|
+
Set Contractions
|
|
2548
|
+
----------------
|
|
2549
|
+
|
|
2550
|
+
The set contractions of Python2.7 are like list contractions in Python3,
|
|
2551
|
+
in that they produce an actual helper function:
|
|
2552
|
+
|
|
2553
|
+
.. code:: python
|
|
2554
|
+
|
|
2555
|
+
set_value = {x * 2 for x in range(8) if cond()}
|
|
2556
|
+
|
|
2557
|
+
.. code:: python
|
|
2558
|
+
|
|
2559
|
+
def _setcontr_helper(__iterator):
|
|
2560
|
+
result = set()
|
|
2561
|
+
|
|
2562
|
+
for x in __iterator:
|
|
2563
|
+
if cond():
|
|
2564
|
+
result.add(x * 2)
|
|
2565
|
+
|
|
2566
|
+
return result
|
|
2567
|
+
|
|
2568
|
+
|
|
2569
|
+
set_value = _setcontr_helper(range(8))
|
|
2570
|
+
|
|
2571
|
+
Dictionary Contractions
|
|
2572
|
+
-----------------------
|
|
2573
|
+
|
|
2574
|
+
The dictionary contractions of are like list contractions in Python3, in
|
|
2575
|
+
that they produce an actual helper function:
|
|
2576
|
+
|
|
2577
|
+
.. code:: python
|
|
2578
|
+
|
|
2579
|
+
dict_value = {x: x * 2 for x in range(8) if cond()}
|
|
2580
|
+
|
|
2581
|
+
.. code:: python
|
|
2582
|
+
|
|
2583
|
+
def _dictcontr_helper(__iterator):
|
|
2584
|
+
result = {}
|
|
2585
|
+
|
|
2586
|
+
for x in __iterator:
|
|
2587
|
+
if cond():
|
|
2588
|
+
result[x] = x * 2
|
|
2589
|
+
|
|
2590
|
+
return result
|
|
2591
|
+
|
|
2592
|
+
|
|
2593
|
+
set_value = _dictcontr_helper(range(8))
|
|
2594
|
+
|
|
2595
|
+
Boolean expressions ``and`` and ``or``
|
|
2596
|
+
--------------------------------------
|
|
2597
|
+
|
|
2598
|
+
The short circuit operators ``or`` and ``and`` tend to be only less
|
|
2599
|
+
general that the ``if``/``else`` expressions, but have dedicated nodes.
|
|
2600
|
+
We used to have a re-formulation towards those, but we now do these via
|
|
2601
|
+
dedicated nodes too.
|
|
2602
|
+
|
|
2603
|
+
These new nodes, present the evaluation of the left value, checking for
|
|
2604
|
+
its truth value, and depending on it, to pick it, or use the right
|
|
2605
|
+
value.
|
|
2606
|
+
|
|
2607
|
+
Simple Calls
|
|
2608
|
+
------------
|
|
2609
|
+
|
|
2610
|
+
As seen below, even complex calls are simple calls. In simple calls of
|
|
2611
|
+
Python there is still some hidden semantic going on, that we expose.
|
|
2612
|
+
|
|
2613
|
+
.. code:: python
|
|
2614
|
+
|
|
2615
|
+
func(arg1, arg2, named1=arg3, named2=arg4)
|
|
2616
|
+
|
|
2617
|
+
On the C-API level there is a tuple and dictionary built. This one is
|
|
2618
|
+
exposed:
|
|
2619
|
+
|
|
2620
|
+
.. code:: python
|
|
2621
|
+
|
|
2622
|
+
func(*(arg1, arg2), **{"named1": arg3, "named2": arg4})
|
|
2623
|
+
|
|
2624
|
+
A called function will access this tuple and the dictionary to parse the
|
|
2625
|
+
arguments, once that is also re-formulated (argument parsing), it can
|
|
2626
|
+
then lead to simple in-lining. This way calls only have 2 arguments with
|
|
2627
|
+
constant semantics, that fits perfectly with the C-API where it is the
|
|
2628
|
+
same, so it is actually easier for code generation.
|
|
2629
|
+
|
|
2630
|
+
Although the above looks like a complex call, it actually is not. No
|
|
2631
|
+
checks are needed for the types of the star arguments and it's directly
|
|
2632
|
+
translated to ``PyObject_Call``.
|
|
2633
|
+
|
|
2634
|
+
Complex Calls
|
|
2635
|
+
-------------
|
|
2636
|
+
|
|
2637
|
+
The call operator in Python allows to provide arguments in 4 forms.
|
|
2638
|
+
|
|
2639
|
+
- Positional (or normal) arguments
|
|
2640
|
+
|
|
2641
|
+
- Named (or keyword) arguments
|
|
2642
|
+
|
|
2643
|
+
- Star list arguments
|
|
2644
|
+
|
|
2645
|
+
- Star dictionary arguments
|
|
2646
|
+
|
|
2647
|
+
The evaluation order is precisely that. An example would be:
|
|
2648
|
+
|
|
2649
|
+
.. code:: python
|
|
2650
|
+
|
|
2651
|
+
something(pos1, pos2, name1=named1, name2=named2, *star_list, **star_dict)
|
|
2652
|
+
|
|
2653
|
+
The task here is that first all the arguments are evaluated, left to
|
|
2654
|
+
right, and then they are merged into only two, that is positional and
|
|
2655
|
+
named arguments only. for this, the star list argument and the star
|
|
2656
|
+
dictionary arguments, are merged with the positional and named
|
|
2657
|
+
arguments.
|
|
2658
|
+
|
|
2659
|
+
What's peculiar, is that if both the star list and dictionary arguments
|
|
2660
|
+
are present, the merging is first done for star dictionary, and only
|
|
2661
|
+
after that for the star list argument. This makes a difference, because
|
|
2662
|
+
in case of an error, the star argument raises first.
|
|
2663
|
+
|
|
2664
|
+
.. code:: python
|
|
2665
|
+
|
|
2666
|
+
something(*1, **2)
|
|
2667
|
+
|
|
2668
|
+
This raises "TypeError: something() argument after ** must be a mapping,
|
|
2669
|
+
not int" as opposed to a possibly more expected "TypeError: something()
|
|
2670
|
+
argument after * must be a sequence, not int."
|
|
2671
|
+
|
|
2672
|
+
That doesn't matter much though, because the value is to be evaluated
|
|
2673
|
+
first anyway, and the check is only performed afterwards. If the star
|
|
2674
|
+
list argument calculation gives an error, this one is raised before
|
|
2675
|
+
checking the star dictionary argument.
|
|
2676
|
+
|
|
2677
|
+
So, what we do, is we convert complex calls by the way of special
|
|
2678
|
+
functions, which handle the dirty work for us. The optimization is then
|
|
2679
|
+
tasked to do the difficult stuff. Our example becomes this:
|
|
2680
|
+
|
|
2681
|
+
.. code:: python
|
|
2682
|
+
|
|
2683
|
+
def _complex_call(called, pos, kw, star_list_arg, star_dict_arg):
|
|
2684
|
+
# Raises errors in case of duplicate arguments or tmp_star_dict not
|
|
2685
|
+
# being a mapping.
|
|
2686
|
+
tmp_merged_dict = merge_star_dict_arguments(
|
|
2687
|
+
called, tmp_named, mapping_check(called, tmp_star_dict)
|
|
2688
|
+
)
|
|
2689
|
+
|
|
2690
|
+
# Raises an error if tmp_star_list is not a sequence.
|
|
2691
|
+
tmp_pos_merged = merge_pos_arguments(called, tmp_pos, tmp_star_list)
|
|
2692
|
+
|
|
2693
|
+
# On the C-API level, this is what it looks like.
|
|
2694
|
+
return called(*tmp_pos_merged, **tmp_merged_dict)
|
|
2695
|
+
|
|
2696
|
+
|
|
2697
|
+
returned = _complex_call(
|
|
2698
|
+
called=something,
|
|
2699
|
+
pos=(pos1, pos2),
|
|
2700
|
+
named={"name1": named1, "name2": named2},
|
|
2701
|
+
star_list_arg=star_list,
|
|
2702
|
+
star_dict_arg=star_dict,
|
|
2703
|
+
)
|
|
2704
|
+
|
|
2705
|
+
The call to ``_complex_call`` is be a direct function call with no
|
|
2706
|
+
parameter parsing overhead. And the call in its end, is a special call
|
|
2707
|
+
operation, which relates to the ``PyObject_Call`` C-API.
|
|
2708
|
+
|
|
2709
|
+
Assignment Expressions
|
|
2710
|
+
----------------------
|
|
2711
|
+
|
|
2712
|
+
In Python 3.8 or higher, you assign inside expressions.
|
|
2713
|
+
|
|
2714
|
+
.. code:: python
|
|
2715
|
+
|
|
2716
|
+
if (x := cond()):
|
|
2717
|
+
do_something()
|
|
2718
|
+
|
|
2719
|
+
this is the same as:
|
|
2720
|
+
|
|
2721
|
+
.. code:: python
|
|
2722
|
+
|
|
2723
|
+
# Doesn't exist with that name, and it is not really taking closure variables,
|
|
2724
|
+
# it just shares the execution context.
|
|
2725
|
+
def _outline_func():
|
|
2726
|
+
nonlocal x
|
|
2727
|
+
x = cond()
|
|
2728
|
+
|
|
2729
|
+
return x
|
|
2730
|
+
|
|
2731
|
+
if (_outline_func()):
|
|
2732
|
+
do_something
|
|
2733
|
+
|
|
2734
|
+
When we use this outline function, we are allowed statements, even
|
|
2735
|
+
assignments, in expressions. For optimization, they of course pose a
|
|
2736
|
+
challenge to be removed ever, only happens when it becomes only a return
|
|
2737
|
+
statement, but they do not cause much difficulties for code generation,
|
|
2738
|
+
since they are transparent.
|
|
2739
|
+
|
|
2740
|
+
Match Statements
|
|
2741
|
+
----------------
|
|
2742
|
+
|
|
2743
|
+
In Python 3.10 or higher, you can write so called ``match`` statements
|
|
2744
|
+
like this:
|
|
2745
|
+
|
|
2746
|
+
.. code:: python
|
|
2747
|
+
|
|
2748
|
+
match something():
|
|
2749
|
+
case [x] if x:
|
|
2750
|
+
z = 2
|
|
2751
|
+
case _ as y if y == x and y:
|
|
2752
|
+
z = 1
|
|
2753
|
+
case 0:
|
|
2754
|
+
z = 0
|
|
2755
|
+
|
|
2756
|
+
This is the same as
|
|
2757
|
+
|
|
2758
|
+
.. code:: python
|
|
2759
|
+
|
|
2760
|
+
tmp_match_subject = something()
|
|
2761
|
+
|
|
2762
|
+
# Indicator variable, once true, all matching stops.
|
|
2763
|
+
tmp_handled = False
|
|
2764
|
+
|
|
2765
|
+
# First branch
|
|
2766
|
+
x = tmp_match_subject
|
|
2767
|
+
|
|
2768
|
+
if sequence_check(x)
|
|
2769
|
+
if x:
|
|
2770
|
+
z = 2
|
|
2771
|
+
tmp_handled = True
|
|
2772
|
+
|
|
2773
|
+
if tmp_handled is False:
|
|
2774
|
+
y = tmp_match_subject
|
|
2775
|
+
|
|
2776
|
+
if x == y and y:
|
|
2777
|
+
z = 1
|
|
2778
|
+
tmp_handled = True
|
|
2779
|
+
|
|
2780
|
+
if tmp_handled is False:
|
|
2781
|
+
z = 0
|
|
2782
|
+
|
|
2783
|
+
Print Statements
|
|
2784
|
+
----------------
|
|
2785
|
+
|
|
2786
|
+
The ``print`` statement exists only in Python2. It implicitly converts
|
|
2787
|
+
its arguments to strings before printing them. In order to make this
|
|
2788
|
+
accessible and compile time optimized, this is made visible in the node
|
|
2789
|
+
tree.
|
|
2790
|
+
|
|
2791
|
+
.. code:: python
|
|
2792
|
+
|
|
2793
|
+
print arg1, "1", 1
|
|
2794
|
+
|
|
2795
|
+
This is in Nuitka converted so that the code generation for ``print``
|
|
2796
|
+
doesn't do any conversions itself anymore and relies on the string
|
|
2797
|
+
nature of its input.
|
|
2798
|
+
|
|
2799
|
+
.. code:: python
|
|
2800
|
+
|
|
2801
|
+
print str(arg1), "1", str(1)
|
|
2802
|
+
|
|
2803
|
+
Only string objects are spared from the ``str`` built-in wrapper,
|
|
2804
|
+
because that would only cause noise in optimization stage. Later
|
|
2805
|
+
optimization can then find it unnecessary for certain arguments.
|
|
2806
|
+
|
|
2807
|
+
Additionally, each ``print`` may have a target, and multiple arguments,
|
|
2808
|
+
which we break down as well for dumber code generation. The target is
|
|
2809
|
+
evaluated first and should be a file, kept referenced throughout the
|
|
2810
|
+
whole print statement.
|
|
2811
|
+
|
|
2812
|
+
.. code:: python
|
|
2813
|
+
|
|
2814
|
+
print >> target_file, str(arg1), "1", str(1)
|
|
2815
|
+
|
|
2816
|
+
This is being reformulated to:
|
|
2817
|
+
|
|
2818
|
+
.. code:: python
|
|
2819
|
+
|
|
2820
|
+
try:
|
|
2821
|
+
tmp_target = target_file
|
|
2822
|
+
|
|
2823
|
+
print >>tmp_target, str(arg1), print >>tmp_target, "1", print
|
|
2824
|
+
>>tmp_target, str(1), print >>tmp_target
|
|
2825
|
+
|
|
2826
|
+
finally:
|
|
2827
|
+
del tmp_target
|
|
2828
|
+
|
|
2829
|
+
This allows code generation to not deal with arbitrary amount of
|
|
2830
|
+
arguments to ``print``. It also separates the newline indicator from the
|
|
2831
|
+
rest of things, which makes sense too, having it as a special node, as
|
|
2832
|
+
it's behavior with regards to soft-space is different of course.
|
|
2833
|
+
|
|
2834
|
+
And finally, for ``print`` without a target, we still assume that a
|
|
2835
|
+
target was given, which would be ``sys.stdout`` in a rather hard-coded
|
|
2836
|
+
way (no variable look-ups involved).
|
|
2837
|
+
|
|
2838
|
+
Reformulations during Optimization
|
|
2839
|
+
==================================
|
|
2840
|
+
|
|
2841
|
+
Builtin ``zip`` for Python2
|
|
2842
|
+
---------------------------
|
|
2843
|
+
|
|
2844
|
+
.. code:: python
|
|
2845
|
+
|
|
2846
|
+
def _zip(a, b, c): # Potentially more arguments.
|
|
2847
|
+
# First assign, to preserve the order of execution, the arguments might be
|
|
2848
|
+
# complex expressions with side effects.
|
|
2849
|
+
tmp_arg1 = a
|
|
2850
|
+
tmp_arg2 = b
|
|
2851
|
+
tmp_arg3 = c
|
|
2852
|
+
# could be more
|
|
2853
|
+
...
|
|
2854
|
+
|
|
2855
|
+
# Creation of iterators goes first.
|
|
2856
|
+
try:
|
|
2857
|
+
tmp_iter_1 = iter(tmp_arg1)
|
|
2858
|
+
except TypeError:
|
|
2859
|
+
raise TypeError("zip argument #1 must support iteration")
|
|
2860
|
+
try:
|
|
2861
|
+
tmp_iter_2 = iter(tmp_arg2)
|
|
2862
|
+
except TypeError:
|
|
2863
|
+
raise TypeError("zip argument #2 must support iteration")
|
|
2864
|
+
try:
|
|
2865
|
+
tmp_iter_3 = iter(tmp_arg3)
|
|
2866
|
+
except TypeError:
|
|
2867
|
+
raise TypeError("zip argument #3 must support iteration")
|
|
2868
|
+
|
|
2869
|
+
# could be more
|
|
2870
|
+
...
|
|
2871
|
+
|
|
2872
|
+
tmp_result = []
|
|
2873
|
+
try:
|
|
2874
|
+
while 1:
|
|
2875
|
+
tmp_result.append(
|
|
2876
|
+
(
|
|
2877
|
+
next(tmp_iter_1),
|
|
2878
|
+
next(tmp_iter_2),
|
|
2879
|
+
next(tmp_iter_3),
|
|
2880
|
+
# more arguments here ...
|
|
2881
|
+
)
|
|
2882
|
+
)
|
|
2883
|
+
except StopIteration:
|
|
2884
|
+
pass
|
|
2885
|
+
|
|
2886
|
+
return tmp_result
|
|
2887
|
+
|
|
2888
|
+
Builtin ``zip`` for Python3
|
|
2889
|
+
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
2890
|
+
|
|
2891
|
+
.. code:: python
|
|
2892
|
+
|
|
2893
|
+
for x, y, z in zip(a, b, c):
|
|
2894
|
+
...
|
|
2895
|
+
|
|
2896
|
+
.. code:: python
|
|
2897
|
+
|
|
2898
|
+
def _zip_gen_object(a, b, c, ...):
|
|
2899
|
+
...
|
|
2900
|
+
# See Python2
|
|
2901
|
+
...
|
|
2902
|
+
|
|
2903
|
+
# could be more
|
|
2904
|
+
...
|
|
2905
|
+
while 1:
|
|
2906
|
+
yield (
|
|
2907
|
+
next(tmp_iter_1),
|
|
2908
|
+
next(tmp_iter_2),
|
|
2909
|
+
next(tmp_iter_3),
|
|
2910
|
+
...
|
|
2911
|
+
)
|
|
2912
|
+
except StopIteration:
|
|
2913
|
+
break
|
|
2914
|
+
|
|
2915
|
+
for x, y, z in _zip_gen_object(a, b, c):
|
|
2916
|
+
...
|
|
2917
|
+
|
|
2918
|
+
Builtin ``map`` for Python2
|
|
2919
|
+
---------------------------
|
|
2920
|
+
|
|
2921
|
+
.. code:: python
|
|
2922
|
+
|
|
2923
|
+
def _map():
|
|
2924
|
+
# TODO: Not done yet.
|
|
2925
|
+
pass
|
|
2926
|
+
|
|
2927
|
+
Builtin ``min``
|
|
2928
|
+
---------------
|
|
2929
|
+
|
|
2930
|
+
.. code:: python
|
|
2931
|
+
|
|
2932
|
+
# TODO: keyfunc (Python2/3), defaults (Python3)
|
|
2933
|
+
def _min(a, b, c): # Potentially more arguments.
|
|
2934
|
+
tmp_arg1 = a
|
|
2935
|
+
tmp_arg2 = b
|
|
2936
|
+
tmp_arg3 = c
|
|
2937
|
+
# more arguments here ...
|
|
2938
|
+
|
|
2939
|
+
result = tmp_arg1
|
|
2940
|
+
if keyfunc is None: # can be decided during re-formulation
|
|
2941
|
+
tmp_key_result = keyfunc(result)
|
|
2942
|
+
tmp_key_candidate = keyfunc(tmp_arg2)
|
|
2943
|
+
if tmp_key_candidate < tmp_key_result:
|
|
2944
|
+
result = tmp_arg2
|
|
2945
|
+
tmp_key_result = tmp_key_candidate
|
|
2946
|
+
tmp_key_candidate = keyfunc(tmp_arg3)
|
|
2947
|
+
if tmp_key_candidate < tmp_key_result:
|
|
2948
|
+
result = tmp_arg3
|
|
2949
|
+
tmp_key_result = tmp_key_candidate
|
|
2950
|
+
# more arguments here ...
|
|
2951
|
+
else:
|
|
2952
|
+
if tmp_arg2 < result:
|
|
2953
|
+
result = tmp_arg2
|
|
2954
|
+
if tmp_arg3 < result:
|
|
2955
|
+
result = tmp_arg3
|
|
2956
|
+
# more arguments here ...
|
|
2957
|
+
|
|
2958
|
+
return result
|
|
2959
|
+
|
|
2960
|
+
Builtin ``max``
|
|
2961
|
+
---------------
|
|
2962
|
+
|
|
2963
|
+
See ``min`` just with ``>`` instead of ``<``.
|
|
2964
|
+
|
|
2965
|
+
Call to ``dir`` without arguments
|
|
2966
|
+
---------------------------------
|
|
2967
|
+
|
|
2968
|
+
This expression is reformulated to ``locals().keys()`` for Python2, and
|
|
2969
|
+
``list(locals.keys())`` for Python3.
|
|
2970
|
+
|
|
2971
|
+
Calls to functions with known signatures
|
|
2972
|
+
----------------------------------------
|
|
2973
|
+
|
|
2974
|
+
As a necessary step for inlining function calls, we need to change calls
|
|
2975
|
+
to variable references to function references.
|
|
2976
|
+
|
|
2977
|
+
.. code:: python
|
|
2978
|
+
|
|
2979
|
+
def f(arg1, arg2):
|
|
2980
|
+
return some_op(arg1, arg2)
|
|
2981
|
+
|
|
2982
|
+
|
|
2983
|
+
# ... other code
|
|
2984
|
+
|
|
2985
|
+
x = f(a, b + c)
|
|
2986
|
+
|
|
2987
|
+
In the optimization it is turned into
|
|
2988
|
+
|
|
2989
|
+
.. code:: python
|
|
2990
|
+
|
|
2991
|
+
# ... other code
|
|
2992
|
+
|
|
2993
|
+
x = lambda arg1, arg2: some_op(arg1, arg2)(a, b + c)
|
|
2994
|
+
|
|
2995
|
+
.. note::
|
|
2996
|
+
|
|
2997
|
+
The ``lambda`` stands here for a reference to the function, rather
|
|
2998
|
+
than a variable reference, this is the normal forward propagation of
|
|
2999
|
+
values, and does not imply duplicating or moving any code at all.
|
|
3000
|
+
|
|
3001
|
+
At this point, we still have not resolved the actual call arguments to
|
|
3002
|
+
the variable names, still a Python level function is created, and
|
|
3003
|
+
called, and arguments are parsed to a tuple, and from a tuple. For
|
|
3004
|
+
simplicity sake, we have left out keyword arguments out of the equation
|
|
3005
|
+
for now, but they are even more costly.
|
|
3006
|
+
|
|
3007
|
+
So now, what we want to do, is to re-formulate the call into what we
|
|
3008
|
+
call an outline body, which is a inline function, and that does the
|
|
3009
|
+
parameter parsing already and contains the function code too. In this
|
|
3010
|
+
inlining, there still is a function, but it's technically not a Python
|
|
3011
|
+
function anymore, just something that is an expression whose value is
|
|
3012
|
+
determined by control flow and the function call.
|
|
3013
|
+
|
|
3014
|
+
.. code:: python
|
|
3015
|
+
|
|
3016
|
+
# ... other code
|
|
3017
|
+
|
|
3018
|
+
|
|
3019
|
+
def _f():
|
|
3020
|
+
tmp_arg1 = arg1
|
|
3021
|
+
tmp_arg2 = b + c
|
|
3022
|
+
return tmp_arg1 + tmp_arg2
|
|
3023
|
+
|
|
3024
|
+
|
|
3025
|
+
x = _f()
|
|
3026
|
+
|
|
3027
|
+
With this, a function is considered inlined, because it becomes part of
|
|
3028
|
+
the abstract execution, and the actual code is duplicated.
|
|
3029
|
+
|
|
3030
|
+
The point is, that matching the signature of the function to the actual
|
|
3031
|
+
arguments given, is pretty straight forward in many cases, but there are
|
|
3032
|
+
two forms of complications that can happen. One is default values,
|
|
3033
|
+
because they need to assigned or not, and the other is keyword
|
|
3034
|
+
arguments, because they allow to reorder arguments.
|
|
3035
|
+
|
|
3036
|
+
Let's consider an example with default values first.
|
|
3037
|
+
|
|
3038
|
+
.. code:: python
|
|
3039
|
+
|
|
3040
|
+
def f(arg1, arg2=some_default()):
|
|
3041
|
+
return some_op(arg1, arg2)
|
|
3042
|
+
|
|
3043
|
+
|
|
3044
|
+
# ... other code
|
|
3045
|
+
|
|
3046
|
+
x = f(a, b + c)
|
|
3047
|
+
|
|
3048
|
+
Since the point, at which defaults are taken, we must execute them at
|
|
3049
|
+
that point and make them available.
|
|
3050
|
+
|
|
3051
|
+
.. code:: python
|
|
3052
|
+
|
|
3053
|
+
tmp_defaults = (some_default,) # that was f.__defaults__
|
|
3054
|
+
|
|
3055
|
+
# ... other code
|
|
3056
|
+
|
|
3057
|
+
|
|
3058
|
+
def _f():
|
|
3059
|
+
tmp_arg1 = arg1
|
|
3060
|
+
tmp_arg2 = tmp_defaults[0]
|
|
3061
|
+
return tmp_arg1 + tmp_arg2
|
|
3062
|
+
|
|
3063
|
+
|
|
3064
|
+
x = _f()
|
|
3065
|
+
|
|
3066
|
+
Now, one where keyword arguments are ordered the other way.
|
|
3067
|
+
|
|
3068
|
+
.. code:: python
|
|
3069
|
+
|
|
3070
|
+
def f(arg1, arg2):
|
|
3071
|
+
return some_op(arg1, arg2)
|
|
3072
|
+
|
|
3073
|
+
|
|
3074
|
+
# ... other code
|
|
3075
|
+
|
|
3076
|
+
x = f(arg2=b + c, arg1=a) # "b+c" is evaluated before "a"
|
|
3077
|
+
|
|
3078
|
+
The solution is an extra level of temporary variables. We remember the
|
|
3079
|
+
argument order by names and then assign parameters from it:
|
|
3080
|
+
|
|
3081
|
+
.. code:: python
|
|
3082
|
+
|
|
3083
|
+
# ... other code
|
|
3084
|
+
|
|
3085
|
+
|
|
3086
|
+
def _f():
|
|
3087
|
+
tmp_given_value1 = b + c
|
|
3088
|
+
tmp_given_value2 = a
|
|
3089
|
+
tmp_arg1 = tmp_given_value2
|
|
3090
|
+
tmp_arg2 = tmp_given_value1
|
|
3091
|
+
return tmp_arg1 + tmp_arg2
|
|
3092
|
+
|
|
3093
|
+
|
|
3094
|
+
x = _f()
|
|
3095
|
+
|
|
3096
|
+
Obviously, optimization of Nuitka can decide, that e.g. should ``a`` or
|
|
3097
|
+
``b+c`` not have side effects, to optimize these with standard variable
|
|
3098
|
+
tracing away.
|
|
3099
|
+
|
|
3100
|
+
Nodes that serve special purposes
|
|
3101
|
+
=================================
|
|
3102
|
+
|
|
3103
|
+
Try statements
|
|
3104
|
+
--------------
|
|
3105
|
+
|
|
3106
|
+
In Python, there is ``try``/``except`` and ``try``/``finally``. In
|
|
3107
|
+
Nuitka there is only a ``try``, which then has blocks to handle
|
|
3108
|
+
exceptions, ``continue``, or ``break``, or ``return``. There is no
|
|
3109
|
+
``else`` to this node type.
|
|
3110
|
+
|
|
3111
|
+
This is more low level and universal. Code for the different handlers
|
|
3112
|
+
can be different. User provided ``finally`` blocks become copied into
|
|
3113
|
+
the different handlers.
|
|
3114
|
+
|
|
3115
|
+
Releases
|
|
3116
|
+
--------
|
|
3117
|
+
|
|
3118
|
+
When a function exits, the local variables are to be released. The same
|
|
3119
|
+
applies to temporary variables used in re-formulations. These releases
|
|
3120
|
+
cause a reference to the object to the released, but no value change.
|
|
3121
|
+
They are typically the last use of the object in the function.
|
|
3122
|
+
|
|
3123
|
+
The are similar to ``del``, but make no value change. For shared
|
|
3124
|
+
variables this effect is most visible.
|
|
3125
|
+
|
|
3126
|
+
Side Effects
|
|
3127
|
+
------------
|
|
3128
|
+
|
|
3129
|
+
When an exception is bound to occur, and this can be determined at
|
|
3130
|
+
compile time, Nuitka will not generate the code the leads to the
|
|
3131
|
+
exception, but directly just raise it. But not in all cases, this is the
|
|
3132
|
+
full thing.
|
|
3133
|
+
|
|
3134
|
+
Consider this code:
|
|
3135
|
+
|
|
3136
|
+
.. code:: python
|
|
3137
|
+
|
|
3138
|
+
f(a(), 1 / 0)
|
|
3139
|
+
|
|
3140
|
+
The second argument will create a ``ZeroDivisionError`` exception, but
|
|
3141
|
+
before that ``a()`` must be executed, but the call to ``f`` will never
|
|
3142
|
+
happen and no code is needed for that, but the name look-up must still
|
|
3143
|
+
succeed. This then leads to code that is internally like this:
|
|
3144
|
+
|
|
3145
|
+
.. code:: python
|
|
3146
|
+
|
|
3147
|
+
f(a(), raise_ZeroDivisionError())
|
|
3148
|
+
|
|
3149
|
+
which is then modeled as:
|
|
3150
|
+
|
|
3151
|
+
.. code:: python
|
|
3152
|
+
|
|
3153
|
+
side_effect(a(), f, raise_ZeroDivisionError())
|
|
3154
|
+
|
|
3155
|
+
where we can consider ``side_effect`` to be a function that returns the
|
|
3156
|
+
last expression. Of course, if this is not part of another expression,
|
|
3157
|
+
but close to statement level, side effects, can be converted to multiple
|
|
3158
|
+
statements simply.
|
|
3159
|
+
|
|
3160
|
+
Another use case, is that the value of an expression can be predicted,
|
|
3161
|
+
but that the language still requires things to happen, consider this:
|
|
3162
|
+
|
|
3163
|
+
.. code:: python
|
|
3164
|
+
|
|
3165
|
+
a = len((f(), g()))
|
|
3166
|
+
|
|
3167
|
+
We can tell that ``a`` will be 2, but the call to ``f`` and ``g`` must
|
|
3168
|
+
still be performed, so it becomes:
|
|
3169
|
+
|
|
3170
|
+
.. code:: python
|
|
3171
|
+
|
|
3172
|
+
a = side_effects(f(), g(), 2)
|
|
3173
|
+
|
|
3174
|
+
Modelling side effects explicitly has the advantage of recognizing them
|
|
3175
|
+
easily and allowing to drop the call to the tuple building and checking
|
|
3176
|
+
its length, only to release it.
|
|
3177
|
+
|
|
3178
|
+
Caught Exception Type/Value References
|
|
3179
|
+
--------------------------------------
|
|
3180
|
+
|
|
3181
|
+
When catching an exception, these are not directly put to
|
|
3182
|
+
``sys.exc_info()``, but remain as mere C variables. From there, they can
|
|
3183
|
+
be accessed with these nodes, or if published then from the thread
|
|
3184
|
+
state.
|
|
3185
|
+
|
|
3186
|
+
Hard Module Imports
|
|
3187
|
+
-------------------
|
|
3188
|
+
|
|
3189
|
+
These are module look-ups that don't depend on any local variable for
|
|
3190
|
+
the module to be looked up, but with hard-coded names. These may be the
|
|
3191
|
+
result of optimization gaining such level of certainty.
|
|
3192
|
+
|
|
3193
|
+
Currently they are used to represent ``sys.stdout`` usage for ``print``
|
|
3194
|
+
statements, but other usages will follow.
|
|
3195
|
+
|
|
3196
|
+
Locals Dict Update Statement
|
|
3197
|
+
----------------------------
|
|
3198
|
+
|
|
3199
|
+
For the ``exec`` re-formulation, we apply an explicit sync back to
|
|
3200
|
+
locals as an explicit node. It helps us to tell the affected local
|
|
3201
|
+
variable traces that they might be affected. It represents the bit of
|
|
3202
|
+
``exec`` in Python2, that treats ``None`` as the locals argument as an
|
|
3203
|
+
indication to copy back.
|
|
3204
|
+
|
|
3205
|
+
Optimizing Attribute Lookups into Method Calls for Built-ins types
|
|
3206
|
+
==================================================================
|
|
3207
|
+
|
|
3208
|
+
The attribute lookup node ``ExpressionAttributeLookup`` represents
|
|
3209
|
+
looking up an attribute name, that is known to be a string. That's
|
|
3210
|
+
already a bit more special, than say what ``ExpressionBuiltinGetattr``
|
|
3211
|
+
does for ``getattr``, where it could be any object being looked up. From
|
|
3212
|
+
the Python syntax however, these are what gets created, as it's not
|
|
3213
|
+
allowed in any other way. So, this is where this starts.
|
|
3214
|
+
|
|
3215
|
+
Then, when we are creating an attribute node with a *fixed* name, we
|
|
3216
|
+
dispatch it to generated node classes, e.g.
|
|
3217
|
+
``ExpressionAttributeLookupFixedAppend``. This will be the same, except
|
|
3218
|
+
that the attribute name is hardcoded.
|
|
3219
|
+
|
|
3220
|
+
There are generated, such that they can have code that is special for
|
|
3221
|
+
``.append`` lookups. In their case, it makes sense to ask the source, if
|
|
3222
|
+
they are a ``list`` object exactly. It doesn't make sense to do this
|
|
3223
|
+
check for names that the ``list`` does not contain. So at that stage, we
|
|
3224
|
+
are saving both a bit of memory and time.
|
|
3225
|
+
|
|
3226
|
+
Should this question succeed, i.e. the expression the attribute values
|
|
3227
|
+
is looked up upon, is known to be a ``list`` exactly, we persist this
|
|
3228
|
+
knowledge in the also generated nodes that represent ``list.append`` and
|
|
3229
|
+
just that. It is called ``ExpressionAttributeLookupListAppend`` and only
|
|
3230
|
+
represents the knowledge gained so far.
|
|
3231
|
+
|
|
3232
|
+
We do not consider if ``ExpressionAttributeLookupFixedAppend`` is
|
|
3233
|
+
called, or not, passed as an argument, assigned somewhere, it doesn't
|
|
3234
|
+
matter yet, but for ``ExpressionAttributeLookupListAppend`` we know a
|
|
3235
|
+
hell of a lot more. We know its type, we know attributes for it, say
|
|
3236
|
+
``__name__``, as it is a compile time constant, therefore much
|
|
3237
|
+
optimization can follow for them, and code generation can specialize
|
|
3238
|
+
them too (not yet done).
|
|
3239
|
+
|
|
3240
|
+
Should these nodes then, and say this happens later after some inlining
|
|
3241
|
+
happens be seen as called, we can then turn them into method call nodes,
|
|
3242
|
+
checking the arguments and such, this is then
|
|
3243
|
+
``ExpressionListOperationAppend`` and at this point, will raising errors
|
|
3244
|
+
with wrong argument counts.
|
|
3245
|
+
|
|
3246
|
+
And then we have this ``ExpressionListOperationAppend`` which will
|
|
3247
|
+
influence the tracing of ``list`` contents, i.e. it will be able to tell
|
|
3248
|
+
the ``list`` in question is no more empty after this ``append``, and it
|
|
3249
|
+
will be able to at least predict the last element value, truth value of
|
|
3250
|
+
the list, etc.
|
|
3251
|
+
|
|
3252
|
+
******************************
|
|
3253
|
+
Plan to add "ctypes" support
|
|
3254
|
+
******************************
|
|
3255
|
+
|
|
3256
|
+
Add interfacing to C code, so Nuitka can turn a ``ctypes`` binding into
|
|
3257
|
+
an efficient binding as if it were written manually with Python C-API or
|
|
3258
|
+
better.
|
|
3259
|
+
|
|
3260
|
+
Goals/Allowances to the task
|
|
3261
|
+
============================
|
|
3262
|
+
|
|
3263
|
+
#. Goal: Must not directly use any pre-existing C/C++ language file
|
|
3264
|
+
headers, only generate declarations in generated C code ourselves. We
|
|
3265
|
+
would rather write or use tools that turn an existing a C header to
|
|
3266
|
+
some ``ctypes`` declarations if it needs to be, but not mix and use
|
|
3267
|
+
declarations from existing header code.
|
|
3268
|
+
|
|
3269
|
+
.. note::
|
|
3270
|
+
|
|
3271
|
+
The "cffi" interface maybe won't have the issue, but it's not
|
|
3272
|
+
something we need to write or test the code for.
|
|
3273
|
+
|
|
3274
|
+
#. Allowance: May use ``ctypes`` module at compile time to ask things
|
|
3275
|
+
about ``ctypes`` and its types.
|
|
3276
|
+
|
|
3277
|
+
#. Goal: Should make use of ``ctypes``, to e.g. not hard code in Nuitka
|
|
3278
|
+
what ``ctypes.c_int()`` gives on the current platform, unless there
|
|
3279
|
+
is a specific benefit.
|
|
3280
|
+
|
|
3281
|
+
#. Allowance: Not all ``ctypes`` usages must be supported immediately.
|
|
3282
|
+
|
|
3283
|
+
#. Goal: Try and be as general as possible.
|
|
3284
|
+
|
|
3285
|
+
For the compiler, ``ctypes`` support should be hidden behind a
|
|
3286
|
+
generic interface of some sort. Supporting ``math`` module should be
|
|
3287
|
+
the same thing.
|
|
3288
|
+
|
|
3289
|
+
Type Inference - The Discussion
|
|
3290
|
+
===============================
|
|
3291
|
+
|
|
3292
|
+
Main initial goal is to forward value knowledge. When you have ``a =
|
|
3293
|
+
b``, that means that a and b now "alias". And if you know the value of
|
|
3294
|
+
``b`` you can assume to know the value of ``a``. This is called
|
|
3295
|
+
"aliasing".
|
|
3296
|
+
|
|
3297
|
+
When assigning ``a`` to something new, that won't change ``b`` at all.
|
|
3298
|
+
But when an attribute is set, a method called of it, that might impact
|
|
3299
|
+
the actual value, referenced by both. We need to understand mutable vs.
|
|
3300
|
+
immutable though, as some things are not affected by aliasing in any
|
|
3301
|
+
way.
|
|
3302
|
+
|
|
3303
|
+
.. code:: python
|
|
3304
|
+
|
|
3305
|
+
a = 3
|
|
3306
|
+
b = a
|
|
3307
|
+
|
|
3308
|
+
b += 4 # a is not changed
|
|
3309
|
+
|
|
3310
|
+
a = [3]
|
|
3311
|
+
b = a
|
|
3312
|
+
|
|
3313
|
+
b += [4] # a is changed indeed
|
|
3314
|
+
|
|
3315
|
+
If we cannot tell, we must assume that ``a`` might be changed. It's
|
|
3316
|
+
either ``b`` or what ``a`` was before. If the type is not mutable, we
|
|
3317
|
+
can assume the aliasing to be broken up, and if it is, we can assume
|
|
3318
|
+
both to be the same value still.
|
|
3319
|
+
|
|
3320
|
+
When that value is a compile time constant, we will want to push it
|
|
3321
|
+
forward, and we do that with "(Constant) Value Propagation", which is
|
|
3322
|
+
implemented already. We avoid too large constants, and we properly trace
|
|
3323
|
+
value assignments, but not yet aliases.
|
|
3324
|
+
|
|
3325
|
+
In order to fully benefit from type knowledge, the new type system must
|
|
3326
|
+
be able to be fully friends with existing built-in types, but for
|
|
3327
|
+
classes to also work with it, it should not be tied to them. The
|
|
3328
|
+
behavior of a type ``long``, ``str``, etc. ought to be implemented as
|
|
3329
|
+
far as possible with the built-in ``long``, ``str`` at compiled time as
|
|
3330
|
+
well.
|
|
3331
|
+
|
|
3332
|
+
.. note::
|
|
3333
|
+
|
|
3334
|
+
This "use the real thing" concept extends beyond builtin types, e.g.
|
|
3335
|
+
``ctypes.c_int()`` should also be used, but we must be aware of
|
|
3336
|
+
platform dependencies. The maximum size of ``ctypes.c_int`` values
|
|
3337
|
+
would be an example of that. Of course that may not be possible for
|
|
3338
|
+
everything.
|
|
3339
|
+
|
|
3340
|
+
This approach has well proven itself with built-in functions already,
|
|
3341
|
+
where we use real built-ins where possible to make computations. We
|
|
3342
|
+
have the problem though that built-ins may have problems to execute
|
|
3343
|
+
everything with reasonable compile time cost.
|
|
3344
|
+
|
|
3345
|
+
Another example, consider the following code:
|
|
3346
|
+
|
|
3347
|
+
.. code:: python
|
|
3348
|
+
|
|
3349
|
+
len("a" * 1000000000000)
|
|
3350
|
+
|
|
3351
|
+
To predict this code, calculating it at compile time using constant
|
|
3352
|
+
operations, while feasible, puts an unacceptable burden on the
|
|
3353
|
+
compilation.
|
|
3354
|
+
|
|
3355
|
+
Esp. we wouldn't want to produce such a huge constant and stream it, the
|
|
3356
|
+
C++ code would become too huge. So, we need to stop the ``*`` operator
|
|
3357
|
+
from being used at compile time and cope with reduced knowledge, already
|
|
3358
|
+
here:
|
|
3359
|
+
|
|
3360
|
+
.. code:: python
|
|
3361
|
+
|
|
3362
|
+
"a" * 10000000000000
|
|
3363
|
+
|
|
3364
|
+
Instead, we would probably say that for this expression:
|
|
3365
|
+
|
|
3366
|
+
- The result is a ``str`` or a C level ``PyStringObject *``.
|
|
3367
|
+
|
|
3368
|
+
- We know its length exactly, it's ``10000000000000``.
|
|
3369
|
+
|
|
3370
|
+
- Can predict every of its elements when sub-scripted, sliced, etc., if
|
|
3371
|
+
need be, with a function we may create.
|
|
3372
|
+
|
|
3373
|
+
Similar is true for this horrible (in Python2) thing:
|
|
3374
|
+
|
|
3375
|
+
.. code:: python
|
|
3376
|
+
|
|
3377
|
+
range(10000000000000)
|
|
3378
|
+
|
|
3379
|
+
So it's a rather general problem, this time we know:
|
|
3380
|
+
|
|
3381
|
+
- The result is a ``list`` or C level ``PyListObject *``.
|
|
3382
|
+
|
|
3383
|
+
- We know its length exactly, ``10000000000000``.
|
|
3384
|
+
|
|
3385
|
+
- Can predict every of its elements when index, sliced, etc., if need
|
|
3386
|
+
be, with a function.
|
|
3387
|
+
|
|
3388
|
+
Again, we wouldn't want to create the list. Therefore Nuitka avoids
|
|
3389
|
+
executing these calculation, when they result in constants larger than a
|
|
3390
|
+
threshold of e.g. 256 elements. This concept has to be also applied to
|
|
3391
|
+
large integers and more CPU and memory traps.
|
|
3392
|
+
|
|
3393
|
+
Now lets look at a more complete use case:
|
|
3394
|
+
|
|
3395
|
+
.. code:: python
|
|
3396
|
+
|
|
3397
|
+
for x in range(10000000000000):
|
|
3398
|
+
doSomething()
|
|
3399
|
+
|
|
3400
|
+
Looking at this example, one traditional way to look at it, would be to
|
|
3401
|
+
turn ``range`` into ``xrange``, and to note that ``x`` is unused. That
|
|
3402
|
+
would already perform better. But really better is to notice that
|
|
3403
|
+
``range()`` generated values are not used at all, but only the length of
|
|
3404
|
+
the expression matters.
|
|
3405
|
+
|
|
3406
|
+
And even if ``x`` were used, only the ability to predict the value from
|
|
3407
|
+
a function would be interesting, so we would use that computation
|
|
3408
|
+
function instead of having an iteration source. Being able to predict
|
|
3409
|
+
from a function could mean to have Python code to do it, as well as C
|
|
3410
|
+
code to do it. Then code for the loop can be generated without any
|
|
3411
|
+
CPython library usage at all.
|
|
3412
|
+
|
|
3413
|
+
.. note::
|
|
3414
|
+
|
|
3415
|
+
Of course, it would only make sense where such calculations are
|
|
3416
|
+
"O(1)" complexity, i.e. do not require recursion like "n!" does.
|
|
3417
|
+
|
|
3418
|
+
The other thing is that CPython appears to at - run time - take length
|
|
3419
|
+
hints from objects for some operations, and there it would help too, to
|
|
3420
|
+
track length of objects, and provide it, to outside code.
|
|
3421
|
+
|
|
3422
|
+
Back to the original example:
|
|
3423
|
+
|
|
3424
|
+
.. code:: python
|
|
3425
|
+
|
|
3426
|
+
len("a" * 1000000000000)
|
|
3427
|
+
|
|
3428
|
+
The theme here, is that when we can't compute all intermediate
|
|
3429
|
+
expressions, and we sure can't do it in the general case. But we can
|
|
3430
|
+
still, predict some of properties of an expression result, more or less.
|
|
3431
|
+
|
|
3432
|
+
Here we have ``len`` to look at an argument that we know the size of.
|
|
3433
|
+
Great. We need to ask if there are any side effects, and if there are,
|
|
3434
|
+
we need to maintain them of course. This is already done by existing
|
|
3435
|
+
optimization if an operation generates an exception.
|
|
3436
|
+
|
|
3437
|
+
.. note::
|
|
3438
|
+
|
|
3439
|
+
The optimization of ``len`` has been implemented and works for all
|
|
3440
|
+
kinds of container creation and ranges.
|
|
3441
|
+
|
|
3442
|
+
Applying this to "ctypes"
|
|
3443
|
+
=========================
|
|
3444
|
+
|
|
3445
|
+
The *not so specific* problem to be solved to understand ``ctypes``
|
|
3446
|
+
declarations is maybe as follows:
|
|
3447
|
+
|
|
3448
|
+
.. code:: python
|
|
3449
|
+
|
|
3450
|
+
import ctypes
|
|
3451
|
+
|
|
3452
|
+
This leads to Nuitka in its tree to have an assignment from a
|
|
3453
|
+
``__import__`` expression to the variable ``ctypes``. It can be
|
|
3454
|
+
predicted by default to be a module object, and even better, it can be
|
|
3455
|
+
known as ``ctypes`` from standard library with more or less certainty.
|
|
3456
|
+
See the section about "Importing".
|
|
3457
|
+
|
|
3458
|
+
So that part is "easy", and it's what will happen. During optimization,
|
|
3459
|
+
when the module ``__import__`` expression is examined, it should say:
|
|
3460
|
+
|
|
3461
|
+
- ``ctypes`` is a module
|
|
3462
|
+
|
|
3463
|
+
- ``ctypes`` is from standard library (if it is, might not be true)
|
|
3464
|
+
|
|
3465
|
+
- ``ctypes`` then has code behind it, called ``ModuleFriend`` that
|
|
3466
|
+
knows things about it attributes, that should be asked.
|
|
3467
|
+
|
|
3468
|
+
The later is the generic interface, and the optimization should connect
|
|
3469
|
+
the two, of course via package and module full names. It will need a
|
|
3470
|
+
``ModuleFriendRegistry``, from which it can be pulled. It would be nice
|
|
3471
|
+
if we can avoid ``ctypes`` to be loaded into Nuitka unless necessary, so
|
|
3472
|
+
these need to be more like a plug-in, loaded only if necessary, i.e. the
|
|
3473
|
+
user code actually uses ``ctypes``.
|
|
3474
|
+
|
|
3475
|
+
Coming back to the original expression, it also contains an assignment
|
|
3476
|
+
expression, because it re-formulated to be more like this:
|
|
3477
|
+
|
|
3478
|
+
.. code:: python
|
|
3479
|
+
|
|
3480
|
+
ctypes = __import__("ctypes")
|
|
3481
|
+
|
|
3482
|
+
The assigned to object, simply gets the type inferred propagated as part
|
|
3483
|
+
of an SSA form. Ideally, we could be sure that nothing in the program
|
|
3484
|
+
changes the variable, and therefore have only one version of that
|
|
3485
|
+
variable.
|
|
3486
|
+
|
|
3487
|
+
For module variables, when the execution leaves the module to unknown
|
|
3488
|
+
code, or unclear code, it might change the variable. Therefore, likely
|
|
3489
|
+
we will often only assume that it could still be ``ctypes``, but also
|
|
3490
|
+
something else.
|
|
3491
|
+
|
|
3492
|
+
Depending on how well we control module variable assignment, we can
|
|
3493
|
+
decide this more of less quickly. With "compiled modules" types, the
|
|
3494
|
+
expectation is that it's merely a quick C ``==`` comparison check. The
|
|
3495
|
+
module friend should offer code to allow a check if it applies, for
|
|
3496
|
+
uncertain cases.
|
|
3497
|
+
|
|
3498
|
+
Then when we come to uses of it:
|
|
3499
|
+
|
|
3500
|
+
.. code:: python
|
|
3501
|
+
|
|
3502
|
+
ctypes.c_int()
|
|
3503
|
+
|
|
3504
|
+
At this point, using SSA, we are more of less sure, that ``ctypes`` is
|
|
3505
|
+
at that point the module, and that we know what it's ``c_int`` attribute
|
|
3506
|
+
is, at compile time, and what it's call result is. We will use the
|
|
3507
|
+
module friend to help with that. It will attach knowledge about the
|
|
3508
|
+
result of that expression during the SSA collection process.
|
|
3509
|
+
|
|
3510
|
+
This is more like a value forward propagation than anything else. In
|
|
3511
|
+
fact, constant propagation should only be the special case of it, and
|
|
3512
|
+
one design goal of Nuitka was always to cover these two cases with the
|
|
3513
|
+
same code.
|
|
3514
|
+
|
|
3515
|
+
Excursion to Functions
|
|
3516
|
+
======================
|
|
3517
|
+
|
|
3518
|
+
In order to decide what this means to functions and their call
|
|
3519
|
+
boundaries, if we propagate forward, how to handle this:
|
|
3520
|
+
|
|
3521
|
+
.. code:: python
|
|
3522
|
+
|
|
3523
|
+
def my_append(a, b):
|
|
3524
|
+
a.append(b)
|
|
3525
|
+
|
|
3526
|
+
return a
|
|
3527
|
+
|
|
3528
|
+
We annotate that ``a`` is first a "unknown but defined parameter
|
|
3529
|
+
object", then later on something that definitely has an ``append``
|
|
3530
|
+
attribute, when returned, as otherwise an exception occurs.
|
|
3531
|
+
|
|
3532
|
+
The type of ``a`` changes to that after ``a.append`` look-up succeeds.
|
|
3533
|
+
It might be many kinds of an object, but e.g. it could have a higher
|
|
3534
|
+
probability of being a ``PyListObject``. And we would know it cannot be
|
|
3535
|
+
a ``PyStringObject``, as that one has no ``append`` method, and would
|
|
3536
|
+
have raised an exception therefore.
|
|
3537
|
+
|
|
3538
|
+
.. note::
|
|
3539
|
+
|
|
3540
|
+
If classes, i.e. other types in the program, have an ``append``
|
|
3541
|
+
attribute, it should play a role too, there needs to be a way to
|
|
3542
|
+
plug-in to this decisions.
|
|
3543
|
+
|
|
3544
|
+
.. note::
|
|
3545
|
+
|
|
3546
|
+
On the other hand, types without ``append`` attribute can be
|
|
3547
|
+
eliminated.
|
|
3548
|
+
|
|
3549
|
+
Therefore, functions through SSA provide an automatic analysis on their
|
|
3550
|
+
return state, or return value types, or a quick way to predict return
|
|
3551
|
+
value properties, based on input value knowledge.
|
|
3552
|
+
|
|
3553
|
+
So this could work:
|
|
3554
|
+
|
|
3555
|
+
.. code:: python
|
|
3556
|
+
|
|
3557
|
+
b = my_append([], 3)
|
|
3558
|
+
|
|
3559
|
+
assert b == [3] # Could be decided now
|
|
3560
|
+
|
|
3561
|
+
Goal: The structure we use makes it easy to tell what ``my_append`` may
|
|
3562
|
+
be. So, there should be a means to ask it about call results with given
|
|
3563
|
+
type/value information. We need to be able to tell, if evaluating
|
|
3564
|
+
``my_append`` makes sense with given parameters or not, if it does
|
|
3565
|
+
impact the return value.
|
|
3566
|
+
|
|
3567
|
+
We should e.g. be able to make ``my_append`` tell, one or more of these:
|
|
3568
|
+
|
|
3569
|
+
- Returns the first parameter value as return value (unless it raises
|
|
3570
|
+
an exception).
|
|
3571
|
+
|
|
3572
|
+
- The return value has the same type as ``a`` (unless it raises an
|
|
3573
|
+
exception).
|
|
3574
|
+
|
|
3575
|
+
- The return value has an ``append`` attribute.
|
|
3576
|
+
|
|
3577
|
+
- The return value might be a ``list`` object.
|
|
3578
|
+
|
|
3579
|
+
- The return value may not be a ``str`` object.
|
|
3580
|
+
|
|
3581
|
+
- The function will raise if first argument has no ``append``
|
|
3582
|
+
attribute.
|
|
3583
|
+
|
|
3584
|
+
The exactness of statements may vary. But some things may be more
|
|
3585
|
+
interesting. If e.g. the aliasing of a parameter value to the return
|
|
3586
|
+
value is known exactly, then information about it need to all be given
|
|
3587
|
+
up, but some can survive.
|
|
3588
|
+
|
|
3589
|
+
It would be nice, if ``my_append`` had sufficient information, so we
|
|
3590
|
+
could specialize with ``list`` and ``int`` from the parameters, and then
|
|
3591
|
+
e.g. know at least some things that it does in that case. Such
|
|
3592
|
+
specialization would have to be decided if it makes sense. In the
|
|
3593
|
+
alternative, it could be done for each variant anyway, as there won't be
|
|
3594
|
+
that many of them.
|
|
3595
|
+
|
|
3596
|
+
Doing this "forward" analysis appears to be best suited for functions
|
|
3597
|
+
and therefore long term. We will try it that way.
|
|
3598
|
+
|
|
3599
|
+
Excursion to Loops
|
|
3600
|
+
==================
|
|
3601
|
+
|
|
3602
|
+
.. code:: python
|
|
3603
|
+
|
|
3604
|
+
a = 1
|
|
3605
|
+
|
|
3606
|
+
while 1: # think loop: here
|
|
3607
|
+
b = a + 1
|
|
3608
|
+
a = b
|
|
3609
|
+
|
|
3610
|
+
if cond():
|
|
3611
|
+
break
|
|
3612
|
+
|
|
3613
|
+
print(a)
|
|
3614
|
+
|
|
3615
|
+
The handling of loops (both ``for`` and ``while`` are re-formulated to
|
|
3616
|
+
this kind of loops with ``break`` statements) has its own problem. The
|
|
3617
|
+
loop start and may have an assumption from before it started, that ``a``
|
|
3618
|
+
is constant, but that is only true for the first iteration. So, we can't
|
|
3619
|
+
pass knowledge from outside loop forward directly into the for loop
|
|
3620
|
+
body.
|
|
3621
|
+
|
|
3622
|
+
So the collection for loops needs to be two pass for loops. First, to
|
|
3623
|
+
collect assignments, and merge these into the start state, before
|
|
3624
|
+
entering the loop body. The need to make two passes is special to loops.
|
|
3625
|
+
|
|
3626
|
+
For a start, it is done like this. At loop entry, all pre-existing, but
|
|
3627
|
+
written traces, are turned into loop merges. Knowledge is not completely
|
|
3628
|
+
removed about everything assigned or changed in the loop, but then it's
|
|
3629
|
+
not trusted anymore.
|
|
3630
|
+
|
|
3631
|
+
From that basis, the ``break`` exits are analysed, and merged, building
|
|
3632
|
+
up the post loop state, and ``continue`` exits of the loop replacing the
|
|
3633
|
+
unknown part of the loop entry state. The loop end is considered a
|
|
3634
|
+
``continue`` for this purpose.
|
|
3635
|
+
|
|
3636
|
+
Excursion to Conditions
|
|
3637
|
+
=======================
|
|
3638
|
+
|
|
3639
|
+
.. code:: python
|
|
3640
|
+
|
|
3641
|
+
if cond:
|
|
3642
|
+
x = 1
|
|
3643
|
+
else:
|
|
3644
|
+
x = 2
|
|
3645
|
+
|
|
3646
|
+
b = x < 3
|
|
3647
|
+
|
|
3648
|
+
The above code contains a condition, and these have the problem, that
|
|
3649
|
+
when exiting the conditional block, a merge must be done, of the ``x``
|
|
3650
|
+
versions. It could be either one. The merge may trace the condition
|
|
3651
|
+
under which a choice is taken. That way, we could decide pairs of traces
|
|
3652
|
+
under the same condition.
|
|
3653
|
+
|
|
3654
|
+
These merges of SSA variable "versions", represent alternative values.
|
|
3655
|
+
They pose difficulties, and might have to be reduced to commonality. In
|
|
3656
|
+
the above example, the ``<`` operator will have to check for each
|
|
3657
|
+
version, and then to decide that both indeed give the same result.
|
|
3658
|
+
|
|
3659
|
+
The trace collection tracks variable changes in conditional branches,
|
|
3660
|
+
and then merges the existing state at conditional statement exits.
|
|
3661
|
+
|
|
3662
|
+
.. note::
|
|
3663
|
+
|
|
3664
|
+
A branch is considered "exiting" if it is not abortive. Should it end
|
|
3665
|
+
in a ``raise``, ``break``, ``continue``, or ``return``, there is no
|
|
3666
|
+
need to merge that branch, as execution of that branch is terminated.
|
|
3667
|
+
|
|
3668
|
+
Should both branches be abortive, that makes things really simple, as
|
|
3669
|
+
there is no need to even continue.
|
|
3670
|
+
|
|
3671
|
+
Should only one branch exist, but be abortive, then no merge is
|
|
3672
|
+
needed, and the collection can assume after the conditional
|
|
3673
|
+
statement, that the branch was not taken, and continue.
|
|
3674
|
+
|
|
3675
|
+
When exiting both the branches, these branches must both be merged, with
|
|
3676
|
+
their new information.
|
|
3677
|
+
|
|
3678
|
+
In the above case:
|
|
3679
|
+
|
|
3680
|
+
- The "yes" branch knows variable ``x`` is an ``int`` of constant value
|
|
3681
|
+
``1``
|
|
3682
|
+
|
|
3683
|
+
- The "no" branch knows variable ``x`` is an ``int`` of constant value
|
|
3684
|
+
``2``
|
|
3685
|
+
|
|
3686
|
+
That might be collapsed to:
|
|
3687
|
+
|
|
3688
|
+
- The variable ``x`` is an integer of value in ``(1,2)``
|
|
3689
|
+
|
|
3690
|
+
Given this, we then should be able to pre-compute the value of this:
|
|
3691
|
+
|
|
3692
|
+
.. code:: python
|
|
3693
|
+
|
|
3694
|
+
b = x < 3
|
|
3695
|
+
|
|
3696
|
+
The comparison operator can therefore decide and tell:
|
|
3697
|
+
|
|
3698
|
+
- The variable ``b`` is a boolean of constant value ``True``.
|
|
3699
|
+
|
|
3700
|
+
Were it unable to decide, it would still be able to say:
|
|
3701
|
+
|
|
3702
|
+
- The variable ``b`` is a boolean.
|
|
3703
|
+
|
|
3704
|
+
For conditional statements optimization, it's also noteworthy, that the
|
|
3705
|
+
condition is known to pass or not pass the truth check, inside branches,
|
|
3706
|
+
and in the case of non-exiting single branches, after the statement it's
|
|
3707
|
+
not true.
|
|
3708
|
+
|
|
3709
|
+
We may want to take advantage of it. Consider e.g.
|
|
3710
|
+
|
|
3711
|
+
.. code:: python
|
|
3712
|
+
|
|
3713
|
+
if type(a) is list:
|
|
3714
|
+
a.append(x)
|
|
3715
|
+
else:
|
|
3716
|
+
a += (x,)
|
|
3717
|
+
|
|
3718
|
+
In this case, the knowledge that ``a`` is a list, could be used to
|
|
3719
|
+
generate better code and with the definite knowledge that ``a`` is of
|
|
3720
|
+
type list. With that knowledge the ``append`` attribute call will become
|
|
3721
|
+
the ``list`` built-in type operation.
|
|
3722
|
+
|
|
3723
|
+
Excursion to ``return`` statements
|
|
3724
|
+
==================================
|
|
3725
|
+
|
|
3726
|
+
The ``return`` statement (like ``break``, ``continue``, ``raise``) is
|
|
3727
|
+
"aborting" to control flow. It is always the last statement of inspected
|
|
3728
|
+
block. When there statements to follow it, optimization will remove it
|
|
3729
|
+
as "dead code".
|
|
3730
|
+
|
|
3731
|
+
If all branches of a conditional statement are "aborting", the statement
|
|
3732
|
+
is decided "aborting" too. If a loop doesn't abort with a break, it
|
|
3733
|
+
should be considered "aborting" too.
|
|
3734
|
+
|
|
3735
|
+
Excursion to ``yield`` expressions
|
|
3736
|
+
==================================
|
|
3737
|
+
|
|
3738
|
+
The ``yield`` expression can be treated like a normal function call, and
|
|
3739
|
+
as such invalidates some known constraints just as much as they do. It
|
|
3740
|
+
executes outside code for an unknown amount of time, and then returns,
|
|
3741
|
+
with little about the outside world known anymore, if it's accessible
|
|
3742
|
+
from there.
|
|
3743
|
+
|
|
3744
|
+
Mixed Types
|
|
3745
|
+
===========
|
|
3746
|
+
|
|
3747
|
+
Consider the following inside a function or module:
|
|
3748
|
+
|
|
3749
|
+
.. code:: python
|
|
3750
|
+
|
|
3751
|
+
if cond is not None:
|
|
3752
|
+
a = [x for x in something() if cond(x)]
|
|
3753
|
+
else:
|
|
3754
|
+
a = ()
|
|
3755
|
+
|
|
3756
|
+
A programmer will often not make a difference between ``list`` and
|
|
3757
|
+
``tuple``. In fact, using a ``tuple`` is a good way to express that
|
|
3758
|
+
something won't be changed later, as these are mutable.
|
|
3759
|
+
|
|
3760
|
+
.. note::
|
|
3761
|
+
|
|
3762
|
+
Better programming style, would be to use this:
|
|
3763
|
+
|
|
3764
|
+
.. code:: python
|
|
3765
|
+
|
|
3766
|
+
if cond is not None:
|
|
3767
|
+
a = tuple(x for x in something() if cond(x))
|
|
3768
|
+
else:
|
|
3769
|
+
a = ()
|
|
3770
|
+
|
|
3771
|
+
People don't do it, because they dislike the performance hit
|
|
3772
|
+
encountered by the generator expression being used to initialize the
|
|
3773
|
+
tuple. But it would be more consistent, and so Nuitka is using it,
|
|
3774
|
+
and of course one day Nuitka ought to be able to make no difference
|
|
3775
|
+
in performance for it.
|
|
3776
|
+
|
|
3777
|
+
To Nuitka though this means, that if ``cond`` is not predictable, after
|
|
3778
|
+
the conditional statement we may either have a ``tuple`` or a ``list``
|
|
3779
|
+
type object in ``a``. In order to represent that without resorting to "I
|
|
3780
|
+
know nothing about it", we need a kind of ``min``/``max`` operating
|
|
3781
|
+
mechanism that is capable of say what is common with multiple
|
|
3782
|
+
alternative values.
|
|
3783
|
+
|
|
3784
|
+
.. note::
|
|
3785
|
+
|
|
3786
|
+
At this time, we don't really have that mechanism to find the
|
|
3787
|
+
commonality between values.
|
|
3788
|
+
|
|
3789
|
+
Back to "ctypes"
|
|
3790
|
+
================
|
|
3791
|
+
|
|
3792
|
+
.. code:: python
|
|
3793
|
+
|
|
3794
|
+
v = ctypes.c_int()
|
|
3795
|
+
|
|
3796
|
+
Coming back to this example, we needed to propagate ``ctypes``, then we
|
|
3797
|
+
can propagate "something" from ``ctypes.int`` and then known what this
|
|
3798
|
+
gives with a call and no arguments, so the walk of the nodes, and
|
|
3799
|
+
diverse operations should be addressed by a module friend.
|
|
3800
|
+
|
|
3801
|
+
In case a module friend doesn't know what to do, it needs to say so by
|
|
3802
|
+
default. This should be enforced by a base class and give a warning or
|
|
3803
|
+
note.
|
|
3804
|
+
|
|
3805
|
+
Now to the interface
|
|
3806
|
+
====================
|
|
3807
|
+
|
|
3808
|
+
The following is the intended interface:
|
|
3809
|
+
|
|
3810
|
+
- Iteration with node methods ``computeStatement`` and
|
|
3811
|
+
``computeExpression``.
|
|
3812
|
+
|
|
3813
|
+
These traverse modules and functions (i.e. scopes) and visit
|
|
3814
|
+
everything in the order that Python executes it. The visiting object
|
|
3815
|
+
is ``TraceCollection`` and pass forward. Some node types, e.g.
|
|
3816
|
+
``StatementConditional`` new create branch trace collections and
|
|
3817
|
+
handle the SSA merging at exit.
|
|
3818
|
+
|
|
3819
|
+
- Replacing nodes during the visit.
|
|
3820
|
+
|
|
3821
|
+
Both ``computeStatement`` and ``computeExpression`` are tasked to
|
|
3822
|
+
return potential replacements of themselves, together with "tags"
|
|
3823
|
+
(meaningless now), and a "message", used for verbose tracing.
|
|
3824
|
+
|
|
3825
|
+
The replacement node of ``+`` operator, may e.g. be the pre-computed
|
|
3826
|
+
constant result, wrapped in side effects of the node, or the
|
|
3827
|
+
expression raised, again wrapped in side effects.
|
|
3828
|
+
|
|
3829
|
+
- Assignments and references affect SSA.
|
|
3830
|
+
|
|
3831
|
+
The SSA tree is initialized every time a scope is visited. Then
|
|
3832
|
+
during traversal, traces are built up. Every assignment and merge
|
|
3833
|
+
starts a new trace for that matter. References to a given variable
|
|
3834
|
+
version are traced that way.
|
|
3835
|
+
|
|
3836
|
+
- Value escapes are traced too.
|
|
3837
|
+
|
|
3838
|
+
When an operation hands over a value to outside code, it indicates so
|
|
3839
|
+
to the trace collection. This is for it to know, when e.g. a constant
|
|
3840
|
+
value, might be mutated meanwhile.
|
|
3841
|
+
|
|
3842
|
+
- Nodes can be queried about their properties.
|
|
3843
|
+
|
|
3844
|
+
There is a type shape and a value shape that each node can be asked
|
|
3845
|
+
about. The type shape offers methods that allow to check if certain
|
|
3846
|
+
operations are at all supported or not. These can always return
|
|
3847
|
+
``True`` (yes), ``False`` (no), and ``None`` (cannot decide). In the
|
|
3848
|
+
case of the later, optimizations may not be able do much about it.
|
|
3849
|
+
Lets call these values "tri-state".
|
|
3850
|
+
|
|
3851
|
+
There is also the value shape of a node. This can go deeper, and be
|
|
3852
|
+
more specific to a given node.
|
|
3853
|
+
|
|
3854
|
+
The default implementation will be very pessimistic. Specific node
|
|
3855
|
+
types and shapes may then declare, that they e.g. have no side
|
|
3856
|
+
effects, will not raise for certain operations, have a known truth
|
|
3857
|
+
value, have a known iteration length, can predict their iteration
|
|
3858
|
+
values, etc.
|
|
3859
|
+
|
|
3860
|
+
- Nodes are linked to certain states.
|
|
3861
|
+
|
|
3862
|
+
During the collect, a variable reference, is linked to a certain
|
|
3863
|
+
trace state, and that can be used by parent operations.
|
|
3864
|
+
|
|
3865
|
+
.. code:: python
|
|
3866
|
+
|
|
3867
|
+
a = 1
|
|
3868
|
+
b = a + a
|
|
3869
|
+
|
|
3870
|
+
In this example, the references to ``a``, can look-up the ``1`` in
|
|
3871
|
+
the trace, and base value shape response to ``+`` on it. For compile
|
|
3872
|
+
time evaluation, it may also ask ``isCompileTimeConstant()`` and if
|
|
3873
|
+
both nodes will respond ``True``, then "getCompileTimeConstant()"
|
|
3874
|
+
will return ``1``, which will be be used in computation.
|
|
3875
|
+
|
|
3876
|
+
Then ``extractSideEffects()`` for the ``a`` reference will return
|
|
3877
|
+
``()`` and therefore, the result ``2`` will not be wrapped.
|
|
3878
|
+
|
|
3879
|
+
An alternative approach would be ``hasTypeSlotAdd()`` on the both
|
|
3880
|
+
nodes, and they both do, to see if the selection mechanism used by
|
|
3881
|
+
CPython can be used to find which types ``+`` should be used.
|
|
3882
|
+
|
|
3883
|
+
- Class for module import expression ``ExpressionImportModule``.
|
|
3884
|
+
|
|
3885
|
+
This one just knows that something is imported, but not how or what
|
|
3886
|
+
it is assigned to. It will be able in a recursive compile, to provide
|
|
3887
|
+
the module as an assignment source, or the module variables or
|
|
3888
|
+
submodules as an attribute source when referenced from a variable
|
|
3889
|
+
trace or in an expression.
|
|
3890
|
+
|
|
3891
|
+
- Base class for module friend ``ModuleFriendBase``.
|
|
3892
|
+
|
|
3893
|
+
This is intended to provide something to overload, which e.g. can
|
|
3894
|
+
handle ``math`` in a better way.
|
|
3895
|
+
|
|
3896
|
+
- Module ``ModuleFriendRegistry``
|
|
3897
|
+
|
|
3898
|
+
Provides a register function with ``name`` and instances of
|
|
3899
|
+
``ValueFriendModuleBase`` to be registered. Recursed to modules
|
|
3900
|
+
should integrate with that too. The registry could well be done with
|
|
3901
|
+
a metaclass approach.
|
|
3902
|
+
|
|
3903
|
+
- The module friends should each live in a module of their own.
|
|
3904
|
+
|
|
3905
|
+
With a naming policy to be determined. These modules should add
|
|
3906
|
+
themselves via above mechanism to ``ModuleFriendRegistry`` and all
|
|
3907
|
+
shall be imported and register. Importing of e.g. ``ctypes`` should
|
|
3908
|
+
be delayed to when the friend is actually used. A meta class should
|
|
3909
|
+
aid this task.
|
|
3910
|
+
|
|
3911
|
+
The delay will avoid unnecessary blot of the compiler at run time, if
|
|
3912
|
+
no such module is used. For "qt" and other complex stuff, this will
|
|
3913
|
+
be a must.
|
|
3914
|
+
|
|
3915
|
+
- The walk should initially be single pass, and not maintain history.
|
|
3916
|
+
|
|
3917
|
+
Instead optimization that needs to look at multiple things, e.g.
|
|
3918
|
+
"unused assignment", will look at the whole SSA collection
|
|
3919
|
+
afterwards.
|
|
3920
|
+
|
|
3921
|
+
Discussing with examples
|
|
3922
|
+
========================
|
|
3923
|
+
|
|
3924
|
+
The following examples:
|
|
3925
|
+
|
|
3926
|
+
.. code:: python
|
|
3927
|
+
|
|
3928
|
+
# Assignment, the source decides the type of the assigned expression
|
|
3929
|
+
a = b
|
|
3930
|
+
|
|
3931
|
+
# Operator "attribute look-up", the looked up expression "ctypes" decides
|
|
3932
|
+
# via its trace.
|
|
3933
|
+
ctypes.c_int
|
|
3934
|
+
|
|
3935
|
+
# Call operator, the called expressions decides with help of arguments,
|
|
3936
|
+
# which have been walked, before the call itself.
|
|
3937
|
+
called_expression_of_any_complexity()
|
|
3938
|
+
|
|
3939
|
+
# import gives a module any case, and the "ModuleRegistry" may say more.
|
|
3940
|
+
import ctypes
|
|
3941
|
+
|
|
3942
|
+
# From import need not give module, "x" decides what it is.
|
|
3943
|
+
from x import y
|
|
3944
|
+
|
|
3945
|
+
# Operations are decided by arguments, and CPython operator rules between
|
|
3946
|
+
# argument states.
|
|
3947
|
+
a + b
|
|
3948
|
+
|
|
3949
|
+
The optimization is mostly performed by walking of the tree and
|
|
3950
|
+
performing trace collection. When it encounters assignments and
|
|
3951
|
+
references to them, it considers current state of traces and uses it for
|
|
3952
|
+
``computeExpression``.
|
|
3953
|
+
|
|
3954
|
+
.. note::
|
|
3955
|
+
|
|
3956
|
+
Assignments to attributes, indexes, slices, etc. will also need to
|
|
3957
|
+
follow the flow of ``append``, so it cannot escape attention that a
|
|
3958
|
+
list may be modified. Usages of ``append`` that we cannot be sure
|
|
3959
|
+
about, must be traced to exist, and disallow the list to be
|
|
3960
|
+
considered known value again.
|
|
3961
|
+
|
|
3962
|
+
Code Generation Impact
|
|
3963
|
+
======================
|
|
3964
|
+
|
|
3965
|
+
Right now, code generation assumes that everything is a ``PyObject *``,
|
|
3966
|
+
i.e. a Python object, and does not take knowledge of ``int`` or other
|
|
3967
|
+
types into consideration at all, and it should remain like that for some
|
|
3968
|
+
time to come.
|
|
3969
|
+
|
|
3970
|
+
Instead, ``ctypes`` value friend will be asked give ``Identifiers``,
|
|
3971
|
+
like other codes do too. And these need to be able to convert themselves
|
|
3972
|
+
to objects to work with the other things.
|
|
3973
|
+
|
|
3974
|
+
But Code Generation should no longer require that operations must be
|
|
3975
|
+
performed on that level. Imagine e.g. the following calls:
|
|
3976
|
+
|
|
3977
|
+
.. code:: python
|
|
3978
|
+
|
|
3979
|
+
c_call(other_c_call())
|
|
3980
|
+
|
|
3981
|
+
Value returned by "other_c_call()" of say ``c_int`` type, should be
|
|
3982
|
+
possible to be fed directly into another call. That should be easy by
|
|
3983
|
+
having a ``asIntC()`` in the identifier classes, which the ``ctypes``
|
|
3984
|
+
Identifiers handle without conversions.
|
|
3985
|
+
|
|
3986
|
+
Code Generation should one day also become able to tell that all uses of
|
|
3987
|
+
a variable have only ``c_int`` value, and use ``int`` instead of
|
|
3988
|
+
``PyObjectLocalVariable`` more or less directly. We could consider
|
|
3989
|
+
``PyIntLocalVariable`` of similar complexity as ``int`` after the C++
|
|
3990
|
+
compiler performed its in-lining.
|
|
3991
|
+
|
|
3992
|
+
Such decisions would be prepared by finalization, which then would track
|
|
3993
|
+
the history of values throughout a function or part of it.
|
|
3994
|
+
|
|
3995
|
+
Initial Implementation
|
|
3996
|
+
======================
|
|
3997
|
+
|
|
3998
|
+
The basic interface will be added to *all* expressions and a node may
|
|
3999
|
+
override it, potentially using trace collection state, as attached
|
|
4000
|
+
during ``computeExpression``.
|
|
4001
|
+
|
|
4002
|
+
Goal 1 (Reached)
|
|
4003
|
+
----------------
|
|
4004
|
+
|
|
4005
|
+
Initially most things will only be able to give up on about anything.
|
|
4006
|
+
And it will be little more than a tool to do simple look-ups in a
|
|
4007
|
+
general form. It will then be the first goal to turn the following code
|
|
4008
|
+
into better performing one:
|
|
4009
|
+
|
|
4010
|
+
.. code:: python
|
|
4011
|
+
|
|
4012
|
+
a = 3
|
|
4013
|
+
b = 7
|
|
4014
|
+
c = a / b
|
|
4015
|
+
print(c)
|
|
4016
|
+
|
|
4017
|
+
to:
|
|
4018
|
+
|
|
4019
|
+
.. code:: python
|
|
4020
|
+
|
|
4021
|
+
a = 3
|
|
4022
|
+
b = 7
|
|
4023
|
+
c = 3 / 7
|
|
4024
|
+
print(c)
|
|
4025
|
+
|
|
4026
|
+
and then:
|
|
4027
|
+
|
|
4028
|
+
.. code:: python
|
|
4029
|
+
|
|
4030
|
+
a = 3
|
|
4031
|
+
b = 7
|
|
4032
|
+
c = 0
|
|
4033
|
+
print(c)
|
|
4034
|
+
|
|
4035
|
+
and then:
|
|
4036
|
+
|
|
4037
|
+
.. code:: python
|
|
4038
|
+
|
|
4039
|
+
a = 3
|
|
4040
|
+
b = 7
|
|
4041
|
+
c = 0
|
|
4042
|
+
print(0)
|
|
4043
|
+
|
|
4044
|
+
This depends on SSA form to be able to tell us the values of ``a``,
|
|
4045
|
+
``b``, and ``c`` to be written to by constants, which can be forward
|
|
4046
|
+
propagated at no cost.
|
|
4047
|
+
|
|
4048
|
+
Goal 2 (Reached)
|
|
4049
|
+
----------------
|
|
4050
|
+
|
|
4051
|
+
The assignments to ``a``, ``b``, and ``c`` shall all become prey to
|
|
4052
|
+
"unused" assignment analysis in the next step. They are all only
|
|
4053
|
+
assigned to, and the assignment source has no effect, so they can be
|
|
4054
|
+
simply dropped.
|
|
4055
|
+
|
|
4056
|
+
.. code:: python
|
|
4057
|
+
|
|
4058
|
+
print(0)
|
|
4059
|
+
|
|
4060
|
+
In the SSA form, these are then assignments without references. These
|
|
4061
|
+
assignments, can be removed if the assignment source has no side effect.
|
|
4062
|
+
Or at least they could be made "anonymous", i.e. use a temporary
|
|
4063
|
+
variable instead of the named one. That would have to take into account
|
|
4064
|
+
though, that the old version still needs a release.
|
|
4065
|
+
|
|
4066
|
+
The most general form would first merely remove assignments that have no
|
|
4067
|
+
impact, and leave the value as a side effect, so we arrive at this
|
|
4068
|
+
first:
|
|
4069
|
+
|
|
4070
|
+
.. code:: python
|
|
4071
|
+
|
|
4072
|
+
3
|
|
4073
|
+
7
|
|
4074
|
+
0
|
|
4075
|
+
print(0)
|
|
4076
|
+
|
|
4077
|
+
When applying the removal of expression only statements without effect,
|
|
4078
|
+
this gives us:
|
|
4079
|
+
|
|
4080
|
+
.. code:: python
|
|
4081
|
+
|
|
4082
|
+
print(0)
|
|
4083
|
+
|
|
4084
|
+
which is the perfect result. Doing it in one step would only be an
|
|
4085
|
+
optimization at the cost of generalization.
|
|
4086
|
+
|
|
4087
|
+
In order to be able to manipulate nodes related to a variable trace, we
|
|
4088
|
+
need to attach the nodes that did it. Consider this:
|
|
4089
|
+
|
|
4090
|
+
.. code:: python
|
|
4091
|
+
|
|
4092
|
+
if cond():
|
|
4093
|
+
x = 1
|
|
4094
|
+
elif other():
|
|
4095
|
+
x = 3
|
|
4096
|
+
|
|
4097
|
+
# Not using "x".
|
|
4098
|
+
print(0)
|
|
4099
|
+
|
|
4100
|
+
In the above case, the merge of the value traces, should say that ``x``
|
|
4101
|
+
may be undefined, or one of ``1`` or ``3``, but since ``x`` is not used,
|
|
4102
|
+
apply the "dead value" trick to each branch.
|
|
4103
|
+
|
|
4104
|
+
The removal of the "merge" of the 3 ``x`` versions, should exhibit that
|
|
4105
|
+
the other versions are also only assigned to, and can be removed. These
|
|
4106
|
+
merges of course appear as usages of the ``x`` versions.
|
|
4107
|
+
|
|
4108
|
+
Goal 3
|
|
4109
|
+
------
|
|
4110
|
+
|
|
4111
|
+
Then third goal is to understand all of this:
|
|
4112
|
+
|
|
4113
|
+
.. code:: python
|
|
4114
|
+
|
|
4115
|
+
def f():
|
|
4116
|
+
a = []
|
|
4117
|
+
|
|
4118
|
+
print(a)
|
|
4119
|
+
|
|
4120
|
+
for i in range(1000):
|
|
4121
|
+
print(a)
|
|
4122
|
+
|
|
4123
|
+
a.append(i)
|
|
4124
|
+
|
|
4125
|
+
return len(a)
|
|
4126
|
+
|
|
4127
|
+
.. note::
|
|
4128
|
+
|
|
4129
|
+
There are many operations in this, and all of them should be properly
|
|
4130
|
+
handled, or at least ignored in safe way.
|
|
4131
|
+
|
|
4132
|
+
The first goal code gave us that the ``list`` has an annotation from the
|
|
4133
|
+
assignment of ``[]`` and that it will be copied to ``a`` until the for
|
|
4134
|
+
loop in encountered. Then it must be removed, because the ``for`` loop
|
|
4135
|
+
somehow says so.
|
|
4136
|
+
|
|
4137
|
+
The ``a`` may change its value, due to the unknown attribute look-up of
|
|
4138
|
+
it already, not even the call. The for loop must be able to say "may
|
|
4139
|
+
change value" due to that, of course also due to the call of that
|
|
4140
|
+
attribute too.
|
|
4141
|
+
|
|
4142
|
+
The code should therefore become equivalent to:
|
|
4143
|
+
|
|
4144
|
+
.. code:: python
|
|
4145
|
+
|
|
4146
|
+
def f():
|
|
4147
|
+
a = []
|
|
4148
|
+
|
|
4149
|
+
print([])
|
|
4150
|
+
|
|
4151
|
+
for i in range(1000):
|
|
4152
|
+
print(a)
|
|
4153
|
+
|
|
4154
|
+
a.append(i)
|
|
4155
|
+
|
|
4156
|
+
return len(a)
|
|
4157
|
+
|
|
4158
|
+
But no other changes must occur, especially not to the ``return``
|
|
4159
|
+
statement, it must not assume ``a`` to be constant "[]" but an unknown
|
|
4160
|
+
``a`` instead.
|
|
4161
|
+
|
|
4162
|
+
With that, we would handle this code correctly and have some form
|
|
4163
|
+
constant value propagation in place, handle loops at least correctly,
|
|
4164
|
+
and while it is not much, it is important demonstration of the concept.
|
|
4165
|
+
|
|
4166
|
+
Goal 4
|
|
4167
|
+
------
|
|
4168
|
+
|
|
4169
|
+
The fourth goal is to understand the following:
|
|
4170
|
+
|
|
4171
|
+
.. code:: python
|
|
4172
|
+
|
|
4173
|
+
def f(cond):
|
|
4174
|
+
y = 3
|
|
4175
|
+
|
|
4176
|
+
if cond:
|
|
4177
|
+
x = 1
|
|
4178
|
+
else:
|
|
4179
|
+
x = 2
|
|
4180
|
+
|
|
4181
|
+
return x < y
|
|
4182
|
+
|
|
4183
|
+
In this we have a branch, and we will be required to keep track of both
|
|
4184
|
+
the branches separately, and then to merge with the original knowledge.
|
|
4185
|
+
After the conditional statement we will know that "x" is an "int" with
|
|
4186
|
+
possible values in ``(1,2)``, which can be used to predict that the
|
|
4187
|
+
return value is always ``True``.
|
|
4188
|
+
|
|
4189
|
+
The fourth goal will therefore be that the "ValueFriendConstantList"
|
|
4190
|
+
knows that append changes ``a`` value, but it remains a list, and that
|
|
4191
|
+
the size increases by one. It should provide an other value friend
|
|
4192
|
+
"ValueFriendList" for "a" due to that.
|
|
4193
|
+
|
|
4194
|
+
In order to do that, such code must be considered:
|
|
4195
|
+
|
|
4196
|
+
.. code:: python
|
|
4197
|
+
|
|
4198
|
+
a = []
|
|
4199
|
+
|
|
4200
|
+
a.append(1)
|
|
4201
|
+
a.append(2)
|
|
4202
|
+
|
|
4203
|
+
print(len(a))
|
|
4204
|
+
|
|
4205
|
+
It will be good, if ``len`` still knows that ``a`` is a list object, but
|
|
4206
|
+
not the constant list anymore.
|
|
4207
|
+
|
|
4208
|
+
From here, work should be done to demonstrate the correctness of it with
|
|
4209
|
+
the basic tests applied to discover undetected issues.
|
|
4210
|
+
|
|
4211
|
+
Fifth and optional goal: Extra bonus points for being able to track and
|
|
4212
|
+
predict ``append`` to update the constant list in a known way. Using
|
|
4213
|
+
``list.append`` that should be done and lead to a constant result of
|
|
4214
|
+
``len`` being used.
|
|
4215
|
+
|
|
4216
|
+
The sixth and challenging goal will be to make the code generation be
|
|
4217
|
+
impacted by the value friends types. It should have a knowledge that
|
|
4218
|
+
``PyList_Append`` does the job of append and use ``PyList_Size`` for
|
|
4219
|
+
``len``. The "ValueFriends" should aid the code generation too.
|
|
4220
|
+
|
|
4221
|
+
Last and right now optional goal will be to make ``range`` have a value
|
|
4222
|
+
friend, that can interact with iteration of the for loop, and ``append``
|
|
4223
|
+
of the ``list`` value friend, so it knows it's possible to iterate 5000
|
|
4224
|
+
times, and that "a" has then after the "loop" this size, so ``len(a)``
|
|
4225
|
+
could be predicted. For during the loop, about a the range of its length
|
|
4226
|
+
should be known to be less than 5000. That would make the code of goal 2
|
|
4227
|
+
completely analyzed at compile time.
|
|
4228
|
+
|
|
4229
|
+
Limitations for now
|
|
4230
|
+
===================
|
|
4231
|
+
|
|
4232
|
+
- Aim only for limited examples. For ``ctypes`` that means to compile
|
|
4233
|
+
time evaluate:
|
|
4234
|
+
|
|
4235
|
+
.. code:: python
|
|
4236
|
+
|
|
4237
|
+
print(ctypes.c_int(17) + ctypes.c_long(19))
|
|
4238
|
+
|
|
4239
|
+
Later then call to "libc" or something else universally available,
|
|
4240
|
+
e.g. "strlen()" or "strcmp()" from full blown declarations of the
|
|
4241
|
+
callable.
|
|
4242
|
+
|
|
4243
|
+
- We won't have the ability to test that optimization are actually
|
|
4244
|
+
performed, we will check the generated code by hand.
|
|
4245
|
+
|
|
4246
|
+
With time, we will add XML based checks with "xpath" queries,
|
|
4247
|
+
expressed as hints, but that is some work that will be based on this
|
|
4248
|
+
work here. The "hints" fits into the "ValueFriends" concept nicely or
|
|
4249
|
+
so the hope is.
|
|
4250
|
+
|
|
4251
|
+
- No inter-function optimization functions yet
|
|
4252
|
+
|
|
4253
|
+
Of course, once in place, it will make the ``ctypes`` annotation even
|
|
4254
|
+
more usable. Using ``ctypes`` objects inside functions, while
|
|
4255
|
+
creating them on the module level, is therefore not immediately going
|
|
4256
|
+
to work.
|
|
4257
|
+
|
|
4258
|
+
- No loops yet
|
|
4259
|
+
|
|
4260
|
+
Loops break value propagation. For the ``ctypes`` use case, this
|
|
4261
|
+
won't be much of a difficulty. Due to the strangeness of the task, it
|
|
4262
|
+
should be tackled later on at a higher priority.
|
|
4263
|
+
|
|
4264
|
+
- Not too much.
|
|
4265
|
+
|
|
4266
|
+
Try and get simple things to work now. We shall see, what kinds of
|
|
4267
|
+
constraints really make the most sense. Understanding ``list``
|
|
4268
|
+
subscript/slice values e.g. is not strictly useful for much code and
|
|
4269
|
+
should not block us.
|
|
4270
|
+
|
|
4271
|
+
.. note::
|
|
4272
|
+
|
|
4273
|
+
This design is not likely to be the final one.
|
|
4274
|
+
|
|
4275
|
+
***********************************
|
|
4276
|
+
How to make Features Experimental
|
|
4277
|
+
***********************************
|
|
4278
|
+
|
|
4279
|
+
Every experimental feature needs a name. We have a rule to pick a name
|
|
4280
|
+
with lower case and ``_`` as separators. An example of with would be the
|
|
4281
|
+
name ``jinja_generated_add`` that has been used in the past.
|
|
4282
|
+
|
|
4283
|
+
Command Line
|
|
4284
|
+
============
|
|
4285
|
+
|
|
4286
|
+
Experimental features are enabled with the command line argument
|
|
4287
|
+
|
|
4288
|
+
.. code:: bash
|
|
4289
|
+
|
|
4290
|
+
nuitka --experimental=jinja_generated_add ...
|
|
4291
|
+
|
|
4292
|
+
In C code
|
|
4293
|
+
=========
|
|
4294
|
+
|
|
4295
|
+
In Scons, all experimental features automatically are converted into C
|
|
4296
|
+
defines, and can be used like this:
|
|
4297
|
+
|
|
4298
|
+
.. code:: C
|
|
4299
|
+
|
|
4300
|
+
#ifdef _NUITKA_EXPERIMENTAL_JINJA_GENERATED_ADD
|
|
4301
|
+
#include "HelpersOperationGeneratedBinaryAdd.c"
|
|
4302
|
+
#else
|
|
4303
|
+
#include "HelpersOperationBinaryAdd.c"
|
|
4304
|
+
#endif
|
|
4305
|
+
|
|
4306
|
+
The C pre-processor is the only thing that makes an experimental feature
|
|
4307
|
+
usable.
|
|
4308
|
+
|
|
4309
|
+
In Python
|
|
4310
|
+
=========
|
|
4311
|
+
|
|
4312
|
+
You can query experimental features using ``Options.isExperimental()``
|
|
4313
|
+
with e.g. code like this:
|
|
4314
|
+
|
|
4315
|
+
.. code:: python
|
|
4316
|
+
|
|
4317
|
+
if Options.isExperimental("use_feature"):
|
|
4318
|
+
experimental_code()
|
|
4319
|
+
else:
|
|
4320
|
+
standard_code()
|
|
4321
|
+
|
|
4322
|
+
When to use it
|
|
4323
|
+
==============
|
|
4324
|
+
|
|
4325
|
+
Often we need to keep feature in parallel because they are not finished,
|
|
4326
|
+
or need to be tested after merge and should not break. Then we can do
|
|
4327
|
+
code changes that will not make a difference except when the
|
|
4328
|
+
experimental flag is given on the command line to Nuitka.
|
|
4329
|
+
|
|
4330
|
+
The testing of Nuitka is very heavy weight when e.g. all Python code is
|
|
4331
|
+
compiled, and very often, it is interesting to compare behavior with and
|
|
4332
|
+
without a change.
|
|
4333
|
+
|
|
4334
|
+
When to remove it
|
|
4335
|
+
=================
|
|
4336
|
+
|
|
4337
|
+
When a feature becomes default, we might choose to keep the old variant
|
|
4338
|
+
around, but normally we do not. Then we remove the ``if`` and ``#if``
|
|
4339
|
+
checks and drop the old code.
|
|
4340
|
+
|
|
4341
|
+
At this time, large scale testing will have demonstrated the viability
|
|
4342
|
+
of the code.
|
|
4343
|
+
|
|
4344
|
+
*******************************
|
|
4345
|
+
Adding dependencies to Nuitka
|
|
4346
|
+
*******************************
|
|
4347
|
+
|
|
4348
|
+
First of all, there is an important distinction to make, run time or
|
|
4349
|
+
development time. The first kind of dependency is used when Nuitka is
|
|
4350
|
+
executing.
|
|
4351
|
+
|
|
4352
|
+
Adding a Run Time Dependency
|
|
4353
|
+
============================
|
|
4354
|
+
|
|
4355
|
+
This is the kind of dependency that is the most scrutinized. As we want
|
|
4356
|
+
Nuitka to run on latest greatest Python as well as relatively old ones,
|
|
4357
|
+
we have to be very careful with these ones.
|
|
4358
|
+
|
|
4359
|
+
There is also a distinction of optional dependencies. Right now e.g. the
|
|
4360
|
+
``lxml`` package is relatively optional, and Nuitka can work without it
|
|
4361
|
+
being installed, because e.g. on some platforms it will not be easy to
|
|
4362
|
+
do so. That bar has lifted somewhat, but it means e.g. that XML based
|
|
4363
|
+
optimization tests are not run with all Python versions.
|
|
4364
|
+
|
|
4365
|
+
The list of run time dependencies is in ``requirements.txt`` and it is
|
|
4366
|
+
for those the case, that they are not really required to be installed by
|
|
4367
|
+
the user, consider this snippet:
|
|
4368
|
+
|
|
4369
|
+
.. code:: python
|
|
4370
|
+
|
|
4371
|
+
# Folders to use for cache files.
|
|
4372
|
+
appdirs
|
|
4373
|
+
|
|
4374
|
+
# Scons is the backend building tool to turn C files to binaries.
|
|
4375
|
+
scons
|
|
4376
|
+
|
|
4377
|
+
For both these dependencies, there is either an inline copy (Scons) that
|
|
4378
|
+
we handle to use in case, if Scons is not available (in fact we have a
|
|
4379
|
+
version that works with Python 2.6 and 2.7 still), and also the same for
|
|
4380
|
+
appdirs and every dependency.
|
|
4381
|
+
|
|
4382
|
+
But since inline copies are against the rules on some platforms that
|
|
4383
|
+
still do not contain the package, we often even have our own wrapper
|
|
4384
|
+
which provides a minimal fallback or exposes a sane interface for the
|
|
4385
|
+
subset of functionality that we use.
|
|
4386
|
+
|
|
4387
|
+
.. note::
|
|
4388
|
+
|
|
4389
|
+
Therefore, please if you consider adding one of these, get in touch
|
|
4390
|
+
with ``@Nuitka-pushers`` first and get a green light.
|
|
4391
|
+
|
|
4392
|
+
Adding a Development Dependency
|
|
4393
|
+
===============================
|
|
4394
|
+
|
|
4395
|
+
A typical example of a development dependency is ``black`` which is used
|
|
4396
|
+
by our autoformat tool, and then in turn by the git pre-commit hook. It
|
|
4397
|
+
is used to format source code, and doesn't have a role at run time of
|
|
4398
|
+
the actual compiler code of Nuitka.
|
|
4399
|
+
|
|
4400
|
+
Much less strict rules apply to these in comparison to runtime
|
|
4401
|
+
dependencies. Generally please take care that the tool must be well
|
|
4402
|
+
maintained an available on newer Pythons. Then we can use it, no problem
|
|
4403
|
+
normally. But if it's really big, say all of SciPy, we might want to
|
|
4404
|
+
justify it a bit better.
|
|
4405
|
+
|
|
4406
|
+
The list of development dependencies is in ``requirements-devel.txt``
|
|
4407
|
+
and it is for example like this:
|
|
4408
|
+
|
|
4409
|
+
.. code:: python
|
|
4410
|
+
|
|
4411
|
+
# Autoformat needs this
|
|
4412
|
+
rstfmt == 0.0.10 ; python_version >= '3.7'
|
|
4413
|
+
|
|
4414
|
+
We always add the version, so that when tests run on as old versions as
|
|
4415
|
+
Python 2.6, the installation would fail with that version, so we need to
|
|
4416
|
+
make a version requirement. Sometimes we use older versions for Python2
|
|
4417
|
+
than for Python3, ``Jinaj2`` being a notable candidate, but generally we
|
|
4418
|
+
ought to avoid that. For many tools only being available for currently
|
|
4419
|
+
3.7 or higher is good enough, esp. if they are run as development tools,
|
|
4420
|
+
like ``autoformat-nuitka-source`` is.
|
|
4421
|
+
|
|
4422
|
+
**********
|
|
4423
|
+
Idea Bin
|
|
4424
|
+
**********
|
|
4425
|
+
|
|
4426
|
+
This an area where to drop random ideas on our minds, to later sort it
|
|
4427
|
+
out, and out it into action, which could be code changes, plan changes,
|
|
4428
|
+
issues created, etc.
|
|
4429
|
+
|
|
4430
|
+
- Debugging memory leak template, to be added to develop docs
|
|
4431
|
+
|
|
4432
|
+
.. code:: python
|
|
4433
|
+
|
|
4434
|
+
# nuitka-project: --follow-import-to=LeakingModule
|
|
4435
|
+
from LeakingModule import main
|
|
4436
|
+
from nuitka.tools.testing.Common import checkReferenceCount
|
|
4437
|
+
|
|
4438
|
+
checkReferenceCount(main)
|
|
4439
|
+
|
|
4440
|
+
- Make "SELECT_METACLASS" meta class selection transparent.
|
|
4441
|
+
|
|
4442
|
+
Looking at the "SELECT_METACLASS" it should become an anonymous
|
|
4443
|
+
helper function. In that way, the optimization process can remove
|
|
4444
|
+
choices at compile time, and e.g. in-line the effect of a meta class,
|
|
4445
|
+
if it is known.
|
|
4446
|
+
|
|
4447
|
+
This of course makes most sense, if we have the optimizations in
|
|
4448
|
+
place that will allow this to actually happen.
|
|
4449
|
+
|
|
4450
|
+
- Keeping track of iterations
|
|
4451
|
+
|
|
4452
|
+
The trace collection trace should become the place, where variables
|
|
4453
|
+
or values track their use state. The iterator should keep track of
|
|
4454
|
+
the "next()" calls made to it, so it can tell which value to given in
|
|
4455
|
+
that case.
|
|
4456
|
+
|
|
4457
|
+
That would solve the "iteration of constants" as a side effect and it
|
|
4458
|
+
would allow to tell that they can be removed.
|
|
4459
|
+
|
|
4460
|
+
That would mean to go back in the tree and modify it long after.
|
|
4461
|
+
|
|
4462
|
+
.. code:: python
|
|
4463
|
+
|
|
4464
|
+
a = iter((2, 3))
|
|
4465
|
+
b = next(a)
|
|
4466
|
+
c = next(a)
|
|
4467
|
+
del a
|
|
4468
|
+
|
|
4469
|
+
It would be sweet if we could recognize that as:
|
|
4470
|
+
|
|
4471
|
+
.. code:: python
|
|
4472
|
+
|
|
4473
|
+
a = iter((2, 3))
|
|
4474
|
+
b = side_effect(next(a), 2)
|
|
4475
|
+
c = side_effect(next(a), 3)
|
|
4476
|
+
del a
|
|
4477
|
+
|
|
4478
|
+
That trivially becomes:
|
|
4479
|
+
|
|
4480
|
+
.. code:: python
|
|
4481
|
+
|
|
4482
|
+
a = iter((2, 3))
|
|
4483
|
+
next(a)
|
|
4484
|
+
b = 2
|
|
4485
|
+
next(a)
|
|
4486
|
+
c = 3
|
|
4487
|
+
del a
|
|
4488
|
+
|
|
4489
|
+
When the ``del a`` is examined at the end of scope, or due to another
|
|
4490
|
+
assignment to the same variable, ending the trace, we would have to
|
|
4491
|
+
consider of the ``next`` uses, and retrofit the information that they
|
|
4492
|
+
had no effect.
|
|
4493
|
+
|
|
4494
|
+
.. code:: python
|
|
4495
|
+
|
|
4496
|
+
a = iter((2, 3))
|
|
4497
|
+
b = 2
|
|
4498
|
+
b = 3
|
|
4499
|
+
del a
|
|
4500
|
+
|
|
4501
|
+
- Aliasing
|
|
4502
|
+
|
|
4503
|
+
Each time an assignment is made, an alias is created. A value may
|
|
4504
|
+
have different names.
|
|
4505
|
+
|
|
4506
|
+
.. code:: python
|
|
4507
|
+
|
|
4508
|
+
a = iter(range(9))
|
|
4509
|
+
b = a
|
|
4510
|
+
c = next(b)
|
|
4511
|
+
d = next(a)
|
|
4512
|
+
|
|
4513
|
+
If we fail to detect the aliasing nature, we will calculate ``d``
|
|
4514
|
+
wrongly. We may incref and decref values to trace it.
|
|
4515
|
+
|
|
4516
|
+
Aliasing is automatically traced already in SSA form. The ``b`` is
|
|
4517
|
+
assigned to version of ``a``. So, that should allow to replace it
|
|
4518
|
+
with this:
|
|
4519
|
+
|
|
4520
|
+
.. code:: python
|
|
4521
|
+
|
|
4522
|
+
a = iter(range(9))
|
|
4523
|
+
c = next(a)
|
|
4524
|
+
d = next(a)
|
|
4525
|
+
|
|
4526
|
+
Which then will be properly handled.
|
|
4527
|
+
|
|
4528
|
+
- Tail recursion optimization.
|
|
4529
|
+
|
|
4530
|
+
Functions that return the results of calls, can be optimized. The
|
|
4531
|
+
Stackless Python does it already.
|
|
4532
|
+
|
|
4533
|
+
- Integrate with "upx" compression.
|
|
4534
|
+
|
|
4535
|
+
Calling "upx" on the created binaries, would be easy.
|
|
4536
|
+
|
|
4537
|
+
- In-lining constant "exec" and "eval".
|
|
4538
|
+
|
|
4539
|
+
It should be possible to re-formulate at least cases without "locals"
|
|
4540
|
+
or "globals" given.
|
|
4541
|
+
|
|
4542
|
+
.. code:: python
|
|
4543
|
+
|
|
4544
|
+
def f():
|
|
4545
|
+
a = 1
|
|
4546
|
+
b = 2
|
|
4547
|
+
|
|
4548
|
+
exec("""a+=b;c=1""")
|
|
4549
|
+
|
|
4550
|
+
return a, c
|
|
4551
|
+
|
|
4552
|
+
Should become this here:
|
|
4553
|
+
|
|
4554
|
+
.. code:: python
|
|
4555
|
+
|
|
4556
|
+
def f():
|
|
4557
|
+
a = 1
|
|
4558
|
+
b = 2
|
|
4559
|
+
|
|
4560
|
+
a += b #
|
|
4561
|
+
c = 1 # MaybeLocalVariables for everything except known local ones.
|
|
4562
|
+
|
|
4563
|
+
return a, c
|
|
4564
|
+
|
|
4565
|
+
If this holds up, inlining ``exec`` should be relatively easy.
|
|
4566
|
+
|
|
4567
|
+
- Original and overloaded built-ins
|
|
4568
|
+
|
|
4569
|
+
This is about making things visible in the node tree. In Nuitka
|
|
4570
|
+
things that are not visible in the node tree tend to be wrong. We
|
|
4571
|
+
already pushed around information to the node tree a lot.
|
|
4572
|
+
|
|
4573
|
+
Later versions, Nuitka will become able to determine it has to be the
|
|
4574
|
+
original built-in at compile time, then a condition that checks will
|
|
4575
|
+
be optimized away, together with the slow path. Or the other path, if
|
|
4576
|
+
it won't be. Then it will be optimized away, or if doubt exists, it
|
|
4577
|
+
will be correct. That is the goal.
|
|
4578
|
+
|
|
4579
|
+
Right now, the change would mean to effectively disable all built-in
|
|
4580
|
+
call optimization, which is why we don't immediately do it.
|
|
4581
|
+
|
|
4582
|
+
Making the compatible version, will also require a full listing of
|
|
4583
|
+
all built-ins, which is typing work merely, but not needed now. And a
|
|
4584
|
+
way to stop built-in optimization from optimizing built-in calls that
|
|
4585
|
+
it used in a wrap. Probably just some flag to indicate it when it
|
|
4586
|
+
visits it to skip it. That's for later.
|
|
4587
|
+
|
|
4588
|
+
But should we have that both, I figure, we could not raise a
|
|
4589
|
+
``RuntimeError`` error, but just do the correct thing, in all cases.
|
|
4590
|
+
An earlier step may raise ``RuntimeError`` error, when built-in
|
|
4591
|
+
module values are written to, that we don't support.
|
|
4592
|
+
|
|
4593
|
+
******************
|
|
4594
|
+
Prongs of Action
|
|
4595
|
+
******************
|
|
4596
|
+
|
|
4597
|
+
In this chapter, we keep track of prongs of action currently ongoing.
|
|
4598
|
+
This can get detailed and shows things we strive for.
|
|
4599
|
+
|
|
4600
|
+
Builtin optimization
|
|
4601
|
+
====================
|
|
4602
|
+
|
|
4603
|
+
Definitely want to get built-in names under full control, so that
|
|
4604
|
+
variable references to module variables do not have a twofold role.
|
|
4605
|
+
Currently they reference the module variable and also the potential
|
|
4606
|
+
built-in as a fallback.
|
|
4607
|
+
|
|
4608
|
+
In terms of generated code size and complexity for modules with many
|
|
4609
|
+
variables and uses of them that is horrible. But ``some_var`` (normally)
|
|
4610
|
+
cannot be a built-in and therefore needs no code to check for that each
|
|
4611
|
+
time.
|
|
4612
|
+
|
|
4613
|
+
This is also critical to getting to whole program optimization. Being
|
|
4614
|
+
certain what is what there on module level, will enable more definitely
|
|
4615
|
+
knowledge about data flows and module interfaces.
|
|
4616
|
+
|
|
4617
|
+
Class Creation Overhead Reduction
|
|
4618
|
+
=================================
|
|
4619
|
+
|
|
4620
|
+
This is more of a meta goal. Some work for the metaclass has already
|
|
4621
|
+
been done, but that is Python2 only currently. Being able to to decide
|
|
4622
|
+
built-ins and to distinguish between global only variables, and
|
|
4623
|
+
built-ins more clearly will help this a lot.
|
|
4624
|
+
|
|
4625
|
+
In the end, empty classes should be able to be statically converted to
|
|
4626
|
+
calls to ``type`` with static dictionaries. The inlining of class
|
|
4627
|
+
creation function is also needed for this, but on Python3 cannot happen
|
|
4628
|
+
yet.
|
|
4629
|
+
|
|
4630
|
+
Memory Usage at Compile Time
|
|
4631
|
+
============================
|
|
4632
|
+
|
|
4633
|
+
We will need to store more and more information in the future. Getting
|
|
4634
|
+
the tree to be tight shaped is therefore an effort, where we will be
|
|
4635
|
+
spending time too.
|
|
4636
|
+
|
|
4637
|
+
The mix-ins prevent slots usage, so lets try and get rid of those. The
|
|
4638
|
+
"children having" should become more simple and faster code. I am even
|
|
4639
|
+
thinking of even generating code in the meta class, so it's both optimal
|
|
4640
|
+
and doesn't need that mix-in any more. This is going to be ugly then.
|
|
4641
|
+
|
|
4642
|
+
Coverage Testing
|
|
4643
|
+
================
|
|
4644
|
+
|
|
4645
|
+
And then there is coverage, it should be taken and merged from all
|
|
4646
|
+
Python versions and OSes, but I never managed to merge between Windows
|
|
4647
|
+
and Linux for unknown reasons.
|
|
4648
|
+
|
|
4649
|
+
Python3 Performance
|
|
4650
|
+
===================
|
|
4651
|
+
|
|
4652
|
+
The Python3 lock for thread state is making it slower by a lot. I have
|
|
4653
|
+
only experimental code that just ignores the lock, but it likely only
|
|
4654
|
+
works on Linux, and I wonder why there is that lock in the first place.
|
|
4655
|
+
|
|
4656
|
+
Ignoring the locks cannot be good. But what updates that thread state
|
|
4657
|
+
pointer ever without a thread change, and is this what ABI flags are
|
|
4658
|
+
about in this context, are there some that allow us to ignore the locks.
|
|
4659
|
+
|
|
4660
|
+
An important bit would be to use a thread state once acquired for as
|
|
4661
|
+
much as possible, currently exception helpers do not accept it as an
|
|
4662
|
+
argument, but that ought to become an option, that way saving and
|
|
4663
|
+
restoring an exception will be much faster, not to mention checking and
|
|
4664
|
+
dropping non interesting, or rewriting exceptions.
|
|
4665
|
+
|
|
4666
|
+
Caching of Python level compilation
|
|
4667
|
+
===================================
|
|
4668
|
+
|
|
4669
|
+
While the C compilation result is already cached with `ccache` and
|
|
4670
|
+
friends now, we need to also cover our bases and save the resulting node
|
|
4671
|
+
tree of potential expensive optimization on the module level.
|
|
4672
|
+
|
|
4673
|
+
*************************
|
|
4674
|
+
Updates for this Manual
|
|
4675
|
+
*************************
|
|
4676
|
+
|
|
4677
|
+
This document is written in REST. That is an ASCII format which is
|
|
4678
|
+
readable to human, but easily used to generate PDF or HTML documents.
|
|
4679
|
+
|
|
4680
|
+
You will find the current source under:
|
|
4681
|
+
https://github.com/Nuitka/Nuitka/blob/develop/Developer_Manual.rst
|
|
4682
|
+
|
|
4683
|
+
And the current PDF under: https://nuitka.net/doc/Developer_Manual.pdf
|