Nuitka-winsvc 2.4.11__cp311-cp311-win_amd64.whl → 2.5.6__cp311-cp311-win_amd64.whl
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.4.11.dist-info → Nuitka_winsvc-2.5.6.dist-info}/METADATA +56 -109
- {Nuitka_winsvc-2.4.11.dist-info → Nuitka_winsvc-2.5.6.dist-info}/RECORD +304 -280
- {Nuitka_winsvc-2.4.11.dist-info → Nuitka_winsvc-2.5.6.dist-info}/WHEEL +1 -1
- nuitka/Builtins.py +31 -0
- nuitka/HardImportRegistry.py +8 -0
- nuitka/MainControl.py +9 -4
- nuitka/OptionParsing.py +108 -54
- nuitka/Options.py +69 -13
- nuitka/OutputDirectories.py +7 -2
- nuitka/PostProcessing.py +69 -38
- nuitka/Progress.py +16 -1
- nuitka/PythonVersions.py +2 -1
- nuitka/Serialization.py +4 -2
- nuitka/Tracing.py +69 -1
- nuitka/Version.py +2 -2
- nuitka/build/Backend.scons +45 -5
- nuitka/build/CCompilerVersion.scons +6 -0
- nuitka/build/Onefile.scons +6 -0
- nuitka/build/SconsCaching.py +4 -0
- nuitka/build/SconsCompilerSettings.py +14 -3
- nuitka/build/SconsInterface.py +3 -0
- nuitka/build/SconsUtils.py +5 -0
- nuitka/build/include/nuitka/allocator.h +124 -1
- nuitka/build/include/nuitka/calling.h +6 -6
- nuitka/build/include/nuitka/compiled_asyncgen.h +10 -7
- nuitka/build/include/nuitka/compiled_frame.h +2 -1
- nuitka/build/include/nuitka/constants.h +8 -0
- nuitka/build/include/nuitka/debug_settings.h +60 -0
- nuitka/build/include/nuitka/exceptions.h +264 -121
- nuitka/build/include/nuitka/helper/attributes.h +0 -4
- nuitka/build/include/nuitka/helper/calling_generated.h +52 -52
- nuitka/build/include/nuitka/helper/comparisons_dual_eq.h +47 -0
- nuitka/build/include/nuitka/helper/comparisons_dual_ge.h +39 -0
- nuitka/build/include/nuitka/helper/comparisons_dual_gt.h +39 -0
- nuitka/build/include/nuitka/helper/comparisons_dual_le.h +47 -0
- nuitka/build/include/nuitka/helper/comparisons_dual_lt.h +47 -0
- nuitka/build/include/nuitka/helper/comparisons_dual_ne.h +39 -0
- nuitka/build/include/nuitka/helper/dictionaries.h +75 -31
- nuitka/build/include/nuitka/helper/ints.h +86 -37
- nuitka/build/include/nuitka/helper/iterators.h +82 -34
- nuitka/build/include/nuitka/helper/operations.h +3 -0
- nuitka/build/include/nuitka/helper/operations_binary_add.h +6 -0
- nuitka/build/include/nuitka/helper/operations_binary_dual_add.h +34 -0
- nuitka/build/include/nuitka/helper/operations_binary_sub.h +6 -0
- nuitka/build/include/nuitka/helper/operations_inplace_add.h +3 -0
- nuitka/build/include/nuitka/helper/operations_inplace_sub.h +3 -0
- nuitka/build/include/nuitka/helper/raising.h +47 -28
- nuitka/build/include/nuitka/helper/richcomparisons.h +7 -0
- nuitka/build/include/nuitka/helper/tuples.h +12 -0
- nuitka/build/include/nuitka/helpers.h +12 -2
- nuitka/build/include/nuitka/prelude.h +36 -25
- nuitka/build/include/nuitka/printing.h +9 -7
- nuitka/build/include/nuitka/threading.h +15 -1
- nuitka/build/include/nuitka/type_aliases.h +3 -0
- nuitka/build/inline_copy/stubgen/astunparse.py +938 -0
- nuitka/build/inline_copy/stubgen/six.py +998 -0
- nuitka/build/inline_copy/stubgen/stubgen.py +307 -0
- nuitka/build/static_src/CompiledAsyncgenType.c +45 -39
- nuitka/build/static_src/CompiledCellType.c +6 -4
- nuitka/build/static_src/CompiledCodeHelpers.c +106 -40
- nuitka/build/static_src/CompiledCoroutineType.c +41 -31
- nuitka/build/static_src/CompiledFrameType.c +110 -79
- nuitka/build/static_src/CompiledFunctionType.c +173 -151
- nuitka/build/static_src/CompiledGeneratorType.c +51 -49
- nuitka/build/static_src/CompiledGeneratorTypeUncompiledIntegration.c +433 -46
- nuitka/build/static_src/CompiledMethodType.c +6 -12
- nuitka/build/static_src/HelpersAllocator.c +266 -28
- nuitka/build/static_src/HelpersAttributes.c +0 -21
- nuitka/build/static_src/HelpersBuiltin.c +23 -14
- nuitka/build/static_src/HelpersCalling.c +7 -7
- nuitka/build/static_src/HelpersCallingGenerated.c +70 -70
- nuitka/build/static_src/HelpersComparisonDualEq.c +183 -0
- nuitka/build/static_src/HelpersComparisonDualGe.c +121 -0
- nuitka/build/static_src/HelpersComparisonDualGt.c +121 -0
- nuitka/build/static_src/HelpersComparisonDualLe.c +183 -0
- nuitka/build/static_src/HelpersComparisonDualLt.c +183 -0
- nuitka/build/static_src/HelpersComparisonDualNe.c +121 -0
- nuitka/build/static_src/HelpersComparisonEq.c +18 -4
- nuitka/build/static_src/HelpersComparisonGe.c +18 -4
- nuitka/build/static_src/HelpersComparisonGt.c +18 -4
- nuitka/build/static_src/HelpersComparisonLe.c +18 -4
- nuitka/build/static_src/HelpersComparisonLt.c +18 -4
- nuitka/build/static_src/HelpersComparisonNe.c +18 -4
- nuitka/build/static_src/HelpersConsole.c +34 -8
- nuitka/build/static_src/HelpersConstantsBlob.c +4 -2
- nuitka/build/static_src/HelpersDeepcopy.c +1 -0
- nuitka/build/static_src/HelpersDictionaries.c +195 -36
- nuitka/build/static_src/HelpersDictionariesGenerated.c +12 -107
- nuitka/build/static_src/HelpersExceptions.c +24 -50
- nuitka/build/static_src/HelpersFiles.c +79 -5
- nuitka/build/static_src/HelpersImport.c +13 -9
- nuitka/build/static_src/HelpersImportHard.c +23 -46
- nuitka/build/static_src/HelpersLists.c +98 -9
- nuitka/build/static_src/HelpersOperationBinaryAdd.c +224 -6
- nuitka/build/static_src/HelpersOperationBinaryAddUtils.c +3 -0
- nuitka/build/static_src/HelpersOperationBinaryBitand.c +5 -5
- nuitka/build/static_src/HelpersOperationBinaryBitor.c +5 -5
- nuitka/build/static_src/HelpersOperationBinaryBitxor.c +5 -5
- nuitka/build/static_src/HelpersOperationBinaryDivmod.c +8 -2
- nuitka/build/static_src/HelpersOperationBinaryDualAdd.c +172 -0
- nuitka/build/static_src/HelpersOperationBinaryFloordiv.c +14 -8
- nuitka/build/static_src/HelpersOperationBinaryLshift.c +36 -36
- nuitka/build/static_src/HelpersOperationBinaryMatmult.c +1 -0
- nuitka/build/static_src/HelpersOperationBinaryMod.c +22 -10
- nuitka/build/static_src/HelpersOperationBinaryMult.c +17 -7
- nuitka/build/static_src/HelpersOperationBinaryOlddiv.c +14 -8
- nuitka/build/static_src/HelpersOperationBinaryPow.c +24 -24
- nuitka/build/static_src/HelpersOperationBinaryRshift.c +4 -4
- nuitka/build/static_src/HelpersOperationBinarySub.c +229 -8
- nuitka/build/static_src/HelpersOperationBinaryTruediv.c +8 -2
- nuitka/build/static_src/HelpersOperationInplaceAdd.c +162 -10
- nuitka/build/static_src/HelpersOperationInplaceBitand.c +5 -5
- nuitka/build/static_src/HelpersOperationInplaceBitor.c +5 -5
- nuitka/build/static_src/HelpersOperationInplaceBitxor.c +5 -5
- nuitka/build/static_src/HelpersOperationInplaceFloordiv.c +11 -6
- nuitka/build/static_src/HelpersOperationInplaceLshift.c +20 -20
- nuitka/build/static_src/HelpersOperationInplaceMatmult.c +1 -0
- nuitka/build/static_src/HelpersOperationInplaceMod.c +11 -6
- nuitka/build/static_src/HelpersOperationInplaceMult.c +11 -6
- nuitka/build/static_src/HelpersOperationInplaceOlddiv.c +11 -6
- nuitka/build/static_src/HelpersOperationInplacePow.c +20 -20
- nuitka/build/static_src/HelpersOperationInplaceRshift.c +4 -4
- nuitka/build/static_src/HelpersOperationInplaceSub.c +163 -10
- nuitka/build/static_src/HelpersOperationInplaceTruediv.c +6 -1
- nuitka/build/static_src/HelpersProfiling.c +1 -1
- nuitka/build/static_src/HelpersRaising.c +255 -310
- nuitka/build/static_src/HelpersStrings.c +1 -1
- nuitka/build/static_src/HelpersTuples.c +2 -2
- nuitka/build/static_src/HelpersTypes.c +98 -2
- nuitka/build/static_src/MainProgram.c +132 -28
- nuitka/build/static_src/MetaPathBasedLoader.c +18 -19
- nuitka/build/static_src/MetaPathBasedLoaderResourceReaderFiles.c +134 -11
- nuitka/build/static_src/OnefileBootstrap.c +6 -1
- nuitka/code_generation/AsyncgenCodes.py +2 -6
- nuitka/code_generation/BinaryOperationHelperDefinitions.py +269 -167
- nuitka/code_generation/BuiltinCodes.py +9 -1
- nuitka/code_generation/CallCodes.py +16 -16
- nuitka/code_generation/CodeGeneration.py +14 -2
- nuitka/code_generation/CodeHelperSelection.py +1 -1
- nuitka/code_generation/CodeHelpers.py +4 -1
- nuitka/code_generation/CodeObjectCodes.py +2 -2
- nuitka/code_generation/ComparisonCodes.py +13 -2
- nuitka/code_generation/ComparisonHelperDefinitions.py +23 -8
- nuitka/code_generation/Contexts.py +28 -16
- nuitka/code_generation/CoroutineCodes.py +2 -6
- nuitka/code_generation/DictCodes.py +3 -3
- nuitka/code_generation/ErrorCodes.py +34 -50
- nuitka/code_generation/ExceptionCodes.py +165 -96
- nuitka/code_generation/ExpressionCTypeSelectionHelpers.py +25 -10
- nuitka/code_generation/FrameCodes.py +4 -11
- nuitka/code_generation/FunctionCodes.py +2 -6
- nuitka/code_generation/GeneratorCodes.py +2 -6
- nuitka/code_generation/GlobalConstants.py +8 -2
- nuitka/code_generation/GlobalsLocalsCodes.py +2 -2
- nuitka/code_generation/IteratorCodes.py +67 -54
- nuitka/code_generation/LineNumberCodes.py +1 -3
- nuitka/code_generation/ModuleCodes.py +28 -4
- nuitka/code_generation/OperationCodes.py +51 -20
- nuitka/code_generation/PackageResourceCodes.py +37 -0
- nuitka/code_generation/RaisingCodes.py +164 -90
- nuitka/code_generation/Reports.py +13 -5
- nuitka/code_generation/ReturnCodes.py +2 -16
- nuitka/code_generation/TryCodes.py +12 -24
- nuitka/code_generation/TypeAliasCodes.py +48 -0
- nuitka/code_generation/VariableCodes.py +99 -40
- nuitka/code_generation/VariableDeclarations.py +8 -8
- nuitka/code_generation/YieldCodes.py +1 -1
- nuitka/code_generation/c_types/CTypeBases.py +10 -2
- nuitka/code_generation/c_types/CTypeModuleDictVariables.py +3 -0
- nuitka/code_generation/c_types/CTypeNuitkaBooleans.py +3 -4
- nuitka/code_generation/c_types/CTypeNuitkaInts.py +70 -25
- nuitka/code_generation/c_types/CTypeNuitkaVoids.py +1 -1
- nuitka/code_generation/c_types/CTypePyObjectPointers.py +16 -6
- nuitka/code_generation/templates/CodeTemplatesAsyncgens.py +2 -2
- nuitka/code_generation/templates/CodeTemplatesConstants.py +11 -3
- nuitka/code_generation/templates/CodeTemplatesCoroutines.py +2 -2
- nuitka/code_generation/templates/CodeTemplatesExceptions.py +15 -16
- nuitka/code_generation/templates/CodeTemplatesFrames.py +18 -10
- nuitka/code_generation/templates/CodeTemplatesFunction.py +2 -2
- nuitka/code_generation/templates/CodeTemplatesGeneratorFunction.py +2 -2
- nuitka/code_generation/templates/CodeTemplatesIterators.py +1 -35
- nuitka/code_generation/templates/CodeTemplatesModules.py +34 -4
- nuitka/code_generation/templates/CodeTemplatesVariables.py +76 -0
- nuitka/code_generation/templates_c/CodeTemplateCallsMixed.c.j2 +3 -3
- nuitka/code_generation/templates_c/CodeTemplateCallsPositional.c.j2 +3 -3
- nuitka/code_generation/templates_c/HelperDictionaryCopy.c.j2 +4 -106
- nuitka/code_generation/templates_c/HelperImportHard.c.j2 +1 -2
- nuitka/code_generation/templates_c/HelperLongTools.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperOperationBinaryDual.c.j2 +115 -0
- nuitka/code_generation/templates_c/HelperOperationComparisonBytes.c.j2 +9 -9
- nuitka/code_generation/templates_c/HelperOperationComparisonDual.c.j2 +86 -0
- nuitka/code_generation/templates_c/HelperOperationComparisonFloat.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperOperationComparisonInt.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperOperationComparisonList.c.j2 +9 -9
- nuitka/code_generation/templates_c/HelperOperationComparisonLong.c.j2 +7 -7
- nuitka/code_generation/templates_c/HelperOperationComparisonStr.c.j2 +9 -9
- nuitka/code_generation/templates_c/HelperOperationComparisonTuple.c.j2 +7 -7
- nuitka/code_generation/templates_c/HelperOperationComparisonUnicode.c.j2 +4 -4
- nuitka/code_generation/templates_c/HelperSlotsBinary.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperSlotsInt.c.j2 +31 -31
- nuitka/code_generation/templates_c/HelperSlotsLong.c.j2 +1 -1
- nuitka/containers/Namedtuples.py +6 -0
- nuitka/containers/OrderedSets.py +105 -5
- nuitka/distutils/Build.py +14 -0
- nuitka/distutils/DistutilCommands.py +50 -10
- nuitka/finalizations/Finalization.py +3 -3
- nuitka/finalizations/FinalizeMarkups.py +10 -14
- nuitka/freezer/DependsExe.py +5 -2
- nuitka/freezer/DllDependenciesMacOS.py +18 -1
- nuitka/freezer/DllDependenciesWin32.py +26 -12
- nuitka/freezer/ImportDetection.py +6 -0
- nuitka/freezer/IncludedDataFiles.py +37 -6
- nuitka/freezer/Onefile.py +1 -0
- nuitka/freezer/Standalone.py +72 -18
- nuitka/importing/Importing.py +33 -6
- nuitka/importing/Recursion.py +5 -2
- nuitka/importing/StandardLibrary.py +57 -59
- nuitka/nodes/AsyncgenNodes.py +3 -6
- nuitka/nodes/BuiltinIteratorNodes.py +2 -2
- nuitka/nodes/BuiltinRefNodes.py +14 -30
- nuitka/nodes/ChildrenHavingMixins.py +439 -46
- nuitka/nodes/ConditionalNodes.py +3 -2
- nuitka/nodes/CoroutineNodes.py +3 -6
- nuitka/nodes/DictionaryNodes.py +1 -1
- nuitka/nodes/ExceptionNodes.py +102 -26
- nuitka/nodes/ExpressionBasesGenerated.py +288 -4
- nuitka/nodes/FrameNodes.py +22 -11
- nuitka/nodes/FunctionNodes.py +3 -3
- nuitka/nodes/GeneratorNodes.py +3 -6
- nuitka/nodes/HardImportNodesGenerated.py +182 -0
- nuitka/nodes/ImportNodes.py +2 -2
- nuitka/nodes/NodeBases.py +28 -1
- nuitka/nodes/NodeMakingHelpers.py +71 -50
- nuitka/nodes/OperatorNodesUnary.py +128 -3
- nuitka/nodes/OsSysNodes.py +37 -6
- nuitka/nodes/OutlineNodes.py +2 -2
- nuitka/nodes/StatementBasesGenerated.py +0 -2
- nuitka/nodes/StatementNodes.py +8 -7
- nuitka/nodes/SubscriptNodes.py +1 -1
- nuitka/nodes/TypeNodes.py +28 -1
- nuitka/nodes/VariableAssignNodes.py +2 -1
- nuitka/nodes/shapes/BuiltinTypeShapes.py +24 -7
- nuitka/nodes/shapes/IteratorShapes.py +71 -0
- nuitka/nodes/shapes/ShapeMixins.py +18 -0
- nuitka/nodes/shapes/StandardShapes.py +47 -44
- nuitka/optimizations/BytecodeDemotion.py +2 -1
- nuitka/plugins/PluginBase.py +64 -22
- nuitka/plugins/Plugins.py +16 -3
- nuitka/plugins/standard/AntiBloatPlugin.py +23 -12
- nuitka/plugins/standard/DllFilesPlugin.py +78 -2
- nuitka/plugins/standard/ImplicitImports.py +5 -15
- nuitka/plugins/standard/KivyPlugin.py +3 -12
- nuitka/plugins/standard/MatplotlibPlugin.py +12 -1
- nuitka/plugins/standard/MultiprocessingPlugin.py +11 -20
- nuitka/plugins/standard/OptionsNannyPlugin.py +5 -4
- nuitka/plugins/standard/PlaywrightPlugin.py +184 -0
- nuitka/plugins/standard/PySidePyQtPlugin.py +8 -0
- nuitka/plugins/standard/TkinterPlugin.py +23 -3
- nuitka/plugins/standard/TransformersPlugin.py +70 -275
- nuitka/plugins/standard/standard.nuitka-package.config.yml +413 -30
- nuitka/plugins/standard/stdlib3.nuitka-package.config.yml +35 -2
- nuitka/reports/CompilationReportReader.py +12 -0
- nuitka/reports/Reports.py +11 -0
- nuitka/specs/BuiltinParameterSpecs.py +5 -1
- nuitka/specs/HardImportSpecs.py +7 -0
- nuitka/specs/ParameterSpecs.py +4 -4
- nuitka/tools/environments/Virtualenv.py +13 -5
- nuitka/tools/general/dll_report/__main__.py +10 -1
- nuitka/tools/onefile_compressor/OnefileCompressor.py +1 -1
- nuitka/tools/podman/__main__.py +4 -2
- nuitka/tools/specialize/CTypeDescriptions.py +158 -9
- nuitka/tools/specialize/SpecializeC.py +218 -56
- nuitka/tools/testing/Common.py +69 -62
- nuitka/tools/testing/compare_with_cpython/__main__.py +3 -1
- nuitka/tools/testing/measure_construct_performance/__main__.py +1 -8
- nuitka/tools/testing/run_nuitka_tests/__main__.py +77 -11
- nuitka/tools/watch/AutoStage.py +1 -0
- nuitka/tree/Building.py +10 -37
- nuitka/tree/ComplexCallHelperFunctions.py +4 -0
- nuitka/tree/ReformulationAssertStatements.py +31 -14
- nuitka/tree/ReformulationAssignmentStatements.py +5 -1
- nuitka/tree/ReformulationClasses3.py +94 -19
- nuitka/tree/ReformulationDictionaryCreation.py +1 -0
- nuitka/tree/ReformulationFunctionStatements.py +1 -1
- nuitka/tree/ReformulationMatchStatements.py +3 -1
- nuitka/tree/ReformulationYieldExpressions.py +23 -5
- nuitka/utils/CommandLineOptions.py +27 -3
- nuitka/utils/Download.py +2 -2
- nuitka/utils/Execution.py +36 -31
- nuitka/utils/FileOperations.py +18 -39
- nuitka/utils/Hashing.py +5 -1
- nuitka/utils/Importing.py +2 -14
- nuitka/utils/InlineCopies.py +52 -0
- nuitka/utils/InstalledPythons.py +9 -4
- nuitka/utils/Json.py +2 -2
- nuitka/utils/PackageResources.py +44 -0
- nuitka/utils/SharedLibraries.py +24 -0
- nuitka/utils/Signing.py +9 -1
- nuitka/utils/Utils.py +1 -0
- {Nuitka_winsvc-2.4.11.data → Nuitka_winsvc-2.5.6.data}/scripts/nuitka-run.cmd +0 -0
- {Nuitka_winsvc-2.4.11.data → Nuitka_winsvc-2.5.6.data}/scripts/nuitka.cmd +0 -0
- {Nuitka_winsvc-2.4.11.dist-info → Nuitka_winsvc-2.5.6.dist-info}/LICENSE.txt +0 -0
- {Nuitka_winsvc-2.4.11.dist-info → Nuitka_winsvc-2.5.6.dist-info}/entry_points.txt +0 -0
- {Nuitka_winsvc-2.4.11.dist-info → Nuitka_winsvc-2.5.6.dist-info}/top_level.txt +0 -0
|
@@ -1,81 +1,88 @@
|
|
|
1
|
-
Nuitka_winsvc-2.
|
|
2
|
-
Nuitka_winsvc-2.
|
|
3
|
-
nuitka/Builtins.py,sha256=
|
|
1
|
+
Nuitka_winsvc-2.5.6.data/scripts/nuitka-run.cmd,sha256=ymcs9S9XtjCwZ7-oOj1gLisLaIj8uIxn-1mb0mTxWUI,924
|
|
2
|
+
Nuitka_winsvc-2.5.6.data/scripts/nuitka.cmd,sha256=G-3yCOmURvmaYtciOLW4cMRGEcutzcsea4qDJqfezg0,1061
|
|
3
|
+
nuitka/Builtins.py,sha256=zO35j6fANpINkM9xzesgcB23akNqmK14SmseoM-YlPQ,8374
|
|
4
4
|
nuitka/BytecodeCaching.py,sha256=KFVx1wDKEG8bydgerI6k2YK6VXIZLmTfMxgZmUhkBWo,5787
|
|
5
5
|
nuitka/Bytecodes.py,sha256=BFKfgzCHUb8-qs1VZcjaKpCwBMt7UKgkT8POEsYljLQ,3891
|
|
6
6
|
nuitka/CacheCleanup.py,sha256=hFAQDCli0fg6h_TyXS4QU_Cl6_s8Wfy7YObArCj8xPs,1962
|
|
7
7
|
nuitka/Constants.py,sha256=M240_yWAlS3WNrhjbGkd5SDZiDsHxWFxA0LYsKsW2fo,11181
|
|
8
8
|
nuitka/Errors.py,sha256=Yw8-RTf7SEel-0ddEQAcvM9MwF6Es-l1X9wOkPRuEQg,2570
|
|
9
|
-
nuitka/HardImportRegistry.py,sha256=
|
|
10
|
-
nuitka/MainControl.py,sha256=
|
|
9
|
+
nuitka/HardImportRegistry.py,sha256=fH1OH8k1LlOGMqeYMLWEz6IdRZVEyffcvDTTh5DMo88,12278
|
|
10
|
+
nuitka/MainControl.py,sha256=4rKa2IrOLq95gymEfBgp_FdEzVcfTCsgMJRxkAgk4yw,39288
|
|
11
11
|
nuitka/ModuleRegistry.py,sha256=z1kdwF6DABgfu06I_KjoUmNHOx4PYd0rQpUwNYp92Fk,9122
|
|
12
|
-
nuitka/OptionParsing.py,sha256=
|
|
13
|
-
nuitka/Options.py,sha256=
|
|
14
|
-
nuitka/OutputDirectories.py,sha256=
|
|
15
|
-
nuitka/PostProcessing.py,sha256=
|
|
16
|
-
nuitka/Progress.py,sha256=
|
|
12
|
+
nuitka/OptionParsing.py,sha256=6IWwq3jHqMti9DhC4ijs_fq_7j1GTvmCD_Zh7aGqlLU,67244
|
|
13
|
+
nuitka/Options.py,sha256=6udVjvwOVIP1osRX9ZmltMZ_fxVcWYrt8jTVIubFkPU,83674
|
|
14
|
+
nuitka/OutputDirectories.py,sha256=J7XeMbp61EXMfqcfQYqlTY4V9P_3iXvHsGzItFr1i3Q,5649
|
|
15
|
+
nuitka/PostProcessing.py,sha256=S2z1vWsZUZHqrXhiV3_oBkf2VnDK4yYFx-G-1MwpRSk,16721
|
|
16
|
+
nuitka/Progress.py,sha256=zg9eXYIX7BaDmFimyw2g9iqa0k-JHX6EHM7c7lYS0RI,7279
|
|
17
17
|
nuitka/PythonFlavors.py,sha256=byvv_b2iizbXmCqPb-4XTfIfdHSrQEngKppuAeE0hmc,10806
|
|
18
18
|
nuitka/PythonOperators.py,sha256=YsVvyhiSk7QgbPIIwzln2qmHRopAgS7LvdyXb6x7dAE,4093
|
|
19
|
-
nuitka/PythonVersions.py,sha256=
|
|
20
|
-
nuitka/Serialization.py,sha256=
|
|
19
|
+
nuitka/PythonVersions.py,sha256=pt0wKIu9KIzORNTQ6L_M0wDJhkfYrZnkIwfaxo0TsiQ,15062
|
|
20
|
+
nuitka/Serialization.py,sha256=lxusPuY8ydaNA1pqe17DY0gZU4qp2jjrMBjeJ5y-Bho,9659
|
|
21
21
|
nuitka/SourceCodeReferences.py,sha256=quGcd9Kg3FjYwsSDDv49MWi_Yec2AurRp-cVspo5qqk,4703
|
|
22
|
-
nuitka/Tracing.py,sha256=
|
|
22
|
+
nuitka/Tracing.py,sha256=VlNFbHJJoFLBssyzr9fZ9PBN79xVgRswS5w-9_sRn28,15351
|
|
23
23
|
nuitka/TreeXML.py,sha256=KGsCEB9Tu1HUNQd10AMWoYX82Qxso_DUfoiet4AiRoc,3654
|
|
24
24
|
nuitka/Variables.py,sha256=53u-p0l58lrBg8nNSYd5DjR3AOGezMayUM7C05vANVM,15470
|
|
25
|
-
nuitka/Version.py,sha256=
|
|
25
|
+
nuitka/Version.py,sha256=TvL1T2U1x0_aqSwtLhRdQfyaW8J4c4ez0f252hbtk7Y,2466
|
|
26
26
|
nuitka/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
27
27
|
nuitka/__main__.py,sha256=dp8HcyiviRrEVm1OWjffOIy0DvkT4iW8R9wCjGpxwT8,7810
|
|
28
28
|
nuitka/__past__.py,sha256=c9HaNn4DHQU3x1ip7aVSzdQqNAzDojYmr2KfMHbqmSQ,5739
|
|
29
|
-
nuitka/build/Backend.scons,sha256=
|
|
30
|
-
nuitka/build/CCompilerVersion.scons,sha256=
|
|
29
|
+
nuitka/build/Backend.scons,sha256=6RJlFwYIrrOxg5bSe31IU_uMtBfOlZ7qcyruVbXLlGo,38182
|
|
30
|
+
nuitka/build/CCompilerVersion.scons,sha256=KKVBPl6FtxGYpsXmFEbsGJ8g8iTqiFFpM2AkV1STtx4,8781
|
|
31
31
|
nuitka/build/DataComposerInterface.py,sha256=xWrgCLG6PXoZsFjuTxc0f4XCSu80CDwYXmLJevp9VTw,3486
|
|
32
|
-
nuitka/build/Onefile.scons,sha256=
|
|
33
|
-
nuitka/build/SconsCaching.py,sha256=
|
|
34
|
-
nuitka/build/SconsCompilerSettings.py,sha256
|
|
32
|
+
nuitka/build/Onefile.scons,sha256=KULKbd0Wkt5cx_o_lrA5QThSNX8DW_erd11zb958UWY,18127
|
|
33
|
+
nuitka/build/SconsCaching.py,sha256=NxE37QbPkFvcujBrXQfObK66AQQlK6oPOC7VUfW8dNA,16029
|
|
34
|
+
nuitka/build/SconsCompilerSettings.py,sha256=OTqrJX7EcKwhHqmliu6rzqqhJX0BiZ8U6NNUpRJySpc,36898
|
|
35
35
|
nuitka/build/SconsHacks.py,sha256=KvcjESBRMRcwAWZN5S09JbZNs9WAc7HvPXIiRRgJE0c,5802
|
|
36
|
-
nuitka/build/SconsInterface.py,sha256=
|
|
36
|
+
nuitka/build/SconsInterface.py,sha256=eKBP9xcOQOmmtJXsMaZfVcXYSM24jOcfRJoGypn3LUE,18733
|
|
37
37
|
nuitka/build/SconsProgress.py,sha256=Zc0Gp2meURGXDK9RMcTb3MBH0wRW51625__y7u8fFa8,2703
|
|
38
38
|
nuitka/build/SconsSpawn.py,sha256=g2BzLuCeIMpt5OHYK7jelyRgm8QlHQxoCKA33mg3y4g,13210
|
|
39
|
-
nuitka/build/SconsUtils.py,sha256=
|
|
39
|
+
nuitka/build/SconsUtils.py,sha256=XAfHMeqMAek_1K9krzpBJjQnI4aBN7j1sutIduatUQc,27648
|
|
40
40
|
nuitka/build/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
41
|
-
nuitka/build/include/nuitka/allocator.h,sha256=
|
|
41
|
+
nuitka/build/include/nuitka/allocator.h,sha256=B9zsGohYHqDxm7TcNjM9jdFTVI5qsj8zsrd-9IouVQo,19260
|
|
42
42
|
nuitka/build/include/nuitka/builtins.h,sha256=QhRpXRaFLANnurU3yqbgj_pmdgmze5ThItnV4RpR8Xs,3499
|
|
43
|
-
nuitka/build/include/nuitka/calling.h,sha256=
|
|
43
|
+
nuitka/build/include/nuitka/calling.h,sha256=90X22wIGrCeQzd0k-_bdOlnQRWmX-JFM-27GVfzCMgI,5225
|
|
44
44
|
nuitka/build/include/nuitka/checkers.h,sha256=hfSyh4-YAxsK8Ebl8AxCA0sPy9RoB0xHppuIB8SgF3Y,2006
|
|
45
45
|
nuitka/build/include/nuitka/checksum_tools.h,sha256=isW8hSCtR2nZ6ZKm7W15Plgf6nwDQVI_ecTkrpUS6h0,1123
|
|
46
|
-
nuitka/build/include/nuitka/compiled_asyncgen.h,sha256=
|
|
46
|
+
nuitka/build/include/nuitka/compiled_asyncgen.h,sha256=UG3xtTEMx3mxxVHwOnMotOheDswo3bgTzul-NKnirK4,9262
|
|
47
47
|
nuitka/build/include/nuitka/compiled_cell.h,sha256=uibAkhiBsBynoyg3Oypt-dY_JeZ5D9OVgq63JW7SLv8,2460
|
|
48
48
|
nuitka/build/include/nuitka/compiled_coroutine.h,sha256=vdYuWjcIN5iN_hiAex8GhqocFq0mpxveNHF5PG74uwY,9233
|
|
49
|
-
nuitka/build/include/nuitka/compiled_frame.h,sha256=
|
|
49
|
+
nuitka/build/include/nuitka/compiled_frame.h,sha256=CtkGgFscZgzsrqw4-kYABBQvYfNaVP4Ra1wPhsGpKPQ,18752
|
|
50
50
|
nuitka/build/include/nuitka/compiled_function.h,sha256=lbJqaARKBjNdjO4nR7fYeueeM2MvGEqnxcpBe24SV8I,7520
|
|
51
51
|
nuitka/build/include/nuitka/compiled_generator.h,sha256=QzHMQYYpuA__g-ZT86GFBE32MpF_xpJ9ag9RmYY4SM0,9189
|
|
52
52
|
nuitka/build/include/nuitka/compiled_method.h,sha256=PPsDXuS_a_6cowagEegfAnkiLCxLXIycgWxHh73N13I,1873
|
|
53
|
-
nuitka/build/include/nuitka/constants.h,sha256=
|
|
53
|
+
nuitka/build/include/nuitka/constants.h,sha256=jZvJ-UBeJ_XvII-yurqA_ceVijwUOIy7bGA1SyKXAtE,8106
|
|
54
54
|
nuitka/build/include/nuitka/constants_blob.h,sha256=XYc-mECeFE9c0W5-FBFp6m4YsL5z9gEnTEAti_D-Huw,1345
|
|
55
|
+
nuitka/build/include/nuitka/debug_settings.h,sha256=1pj0B6BxgSsUro_eNk9LnmrZG-vjnIftPGTw5f9tuVA,1755
|
|
55
56
|
nuitka/build/include/nuitka/environment_variables.h,sha256=aOFTFH_mpvXvqaVM0AUdCeqY82-0M9N24KbP5JXXmUg,1187
|
|
56
57
|
nuitka/build/include/nuitka/environment_variables_system.h,sha256=OziVoDb9KyOtaRBNQ2ORWD-QwolPHc2raTLu21OE708,1872
|
|
57
58
|
nuitka/build/include/nuitka/exception_groups.h,sha256=10ZceXBM5yIRr3BJ00oUnVij3aP8xEabo1q6UEK1M18,5314
|
|
58
|
-
nuitka/build/include/nuitka/exceptions.h,sha256=
|
|
59
|
+
nuitka/build/include/nuitka/exceptions.h,sha256=MoxHxh9xn30QwRjRYb6K3QLBYaycQyrApbAIO660VUU,57566
|
|
59
60
|
nuitka/build/include/nuitka/filesystem_paths.h,sha256=paPi3W-a0Vr5-CKJM_e7MgqIdtushqTYTP6uPqfNsBY,3792
|
|
60
61
|
nuitka/build/include/nuitka/freelists.h,sha256=AOEbSqw8U7C3FAI-1iSnzdNPKSrUIM_h9vCfp1CpTQo,6774
|
|
61
62
|
nuitka/build/include/nuitka/hedley.h,sha256=HHRA7HwPkxD3WBynZVSXxTc3HKaDK6f35srMJC894fs,86326
|
|
62
|
-
nuitka/build/include/nuitka/helpers.h,sha256=
|
|
63
|
+
nuitka/build/include/nuitka/helpers.h,sha256=3OaWJ5GgTN2kvrrc4DeU3f1rgWa44ZLb9xDFmSsDxss,17699
|
|
63
64
|
nuitka/build/include/nuitka/importing.h,sha256=bY-c5SlSFmpQEeY6Q-dc8oHjefzvr2YYN8R9eWkk8gc,6268
|
|
64
65
|
nuitka/build/include/nuitka/incbin.h,sha256=TRcdv5KUprIKXyKr4SBYFvOVFdIKWm_dyfdlEYxqJMM,12979
|
|
65
66
|
nuitka/build/include/nuitka/jit_sources.h,sha256=DzJmqlSa-68fDQi7vFdZcNY64-Zv4SuvALrbVjvjheY,1086
|
|
66
|
-
nuitka/build/include/nuitka/prelude.h,sha256=
|
|
67
|
-
nuitka/build/include/nuitka/printing.h,sha256=
|
|
67
|
+
nuitka/build/include/nuitka/prelude.h,sha256=HaKXrVUmtZgcFIRQY3sVTg1OVx-bFwXRh32nwPMKCWY,17984
|
|
68
|
+
nuitka/build/include/nuitka/printing.h,sha256=VxJUrt2-A5DE_lfEml-Weg_RRld4lhKVOiB1qrZAMcg,3397
|
|
68
69
|
nuitka/build/include/nuitka/python_pgo.h,sha256=1gJNr_iGYPVCLWJ212GQJRuk_XreLysUXRd-anGwbNU,1811
|
|
69
70
|
nuitka/build/include/nuitka/safe_string_ops.h,sha256=b-PSnlG7cCk4sygpu4xq5glvHR9jWO0ct7891ixsNX0,2421
|
|
70
|
-
nuitka/build/include/nuitka/threading.h,sha256=
|
|
71
|
+
nuitka/build/include/nuitka/threading.h,sha256=h0fMLP3M3BRpwQcc4p2V0PkpNGbZUPTo0ZPmd1r-nsA,4240
|
|
71
72
|
nuitka/build/include/nuitka/tracing.h,sha256=CDlBOTJBNbA1V-1RyjoEbARg6UwBOfliR9pDfhcDxf8,3447
|
|
72
|
-
nuitka/build/include/nuitka/type_aliases.h,sha256=
|
|
73
|
+
nuitka/build/include/nuitka/type_aliases.h,sha256=XzxkJOTdNhwZ6UM4oSqLTh_NTYcKQ4mOioy74fHgE9c,1364
|
|
73
74
|
nuitka/build/include/nuitka/unfreezing.h,sha256=9SgdGb49u38PcAxJLrxuT77hX3vbhgiAmmfh_edy5E0,3350
|
|
74
|
-
nuitka/build/include/nuitka/helper/attributes.h,sha256=
|
|
75
|
+
nuitka/build/include/nuitka/helper/attributes.h,sha256=DHd2lEDsigqZ09VScT2T5fd8BbyEpT3h8jNPP0RZh-c,3665
|
|
75
76
|
nuitka/build/include/nuitka/helper/boolean.h,sha256=VQkjl4w12qL-6ch6xfg-Icn4byhmwSZaoENvFfPuS2A,2692
|
|
76
77
|
nuitka/build/include/nuitka/helper/bytearrays.h,sha256=nOWP8PCrM9j4DA0YHPDeBsnAB35tjhs42VQ3LxHtV6g,1233
|
|
77
78
|
nuitka/build/include/nuitka/helper/bytes.h,sha256=6fesOTL2r1rlBA7aVfmbMUFAYq7yB7StCNP2PYI483A,1164
|
|
78
|
-
nuitka/build/include/nuitka/helper/calling_generated.h,sha256=
|
|
79
|
+
nuitka/build/include/nuitka/helper/calling_generated.h,sha256=_RtvYiIUeQ6WLQw1hsLa2embNMEUzNMrjRKoKYJeACI,11966
|
|
80
|
+
nuitka/build/include/nuitka/helper/comparisons_dual_eq.h,sha256=A28i13X_bDCnW5S5L21pFgNvwWlXUS8zlxwYf-aDvzo,2464
|
|
81
|
+
nuitka/build/include/nuitka/helper/comparisons_dual_ge.h,sha256=RNQGEmAgXZHJvM6HR8npMshbW5-__a6xCulR99Uhb00,2014
|
|
82
|
+
nuitka/build/include/nuitka/helper/comparisons_dual_gt.h,sha256=8fve33zh2xehYqRV6MVZUtZWCD1NGT8GnYCOmGyeJfg,2013
|
|
83
|
+
nuitka/build/include/nuitka/helper/comparisons_dual_le.h,sha256=q1F9D9iYCjrOI_GizJxO8zofWQUoddRqCg5MDEOONpo,2464
|
|
84
|
+
nuitka/build/include/nuitka/helper/comparisons_dual_lt.h,sha256=0rP5ENqVenUha_gt1aWob3sKgQqXvuA9teqbHM5tf9M,2463
|
|
85
|
+
nuitka/build/include/nuitka/helper/comparisons_dual_ne.h,sha256=2DFTpmgIRq79Ca3Hzkvcy8zQpSve-d8YA_J8wlwjIr0,2014
|
|
79
86
|
nuitka/build/include/nuitka/helper/comparisons_eq.h,sha256=wUe3yOVTQDnid8sobv0SiFr-ijHvU7Lz7Goty2hqLy0,13169
|
|
80
87
|
nuitka/build/include/nuitka/helper/comparisons_ge.h,sha256=T_WBL3BXPw2hx7XsLipuccNjEn1QdhugfDHWVLH45R4,10645
|
|
81
88
|
nuitka/build/include/nuitka/helper/comparisons_gt.h,sha256=0-1I_cZ3IChXUUm2WHGN9WSOfE2M-ymgaFgQm4-dscA,10644
|
|
@@ -83,21 +90,22 @@ nuitka/build/include/nuitka/helper/comparisons_le.h,sha256=MoFrqZv5HC_xD9vaCqFwZ
|
|
|
83
90
|
nuitka/build/include/nuitka/helper/comparisons_lt.h,sha256=zX17DvHqBw3mg6QfukSwOxIt5rg4aPKzYxZxA4R2_dI,13168
|
|
84
91
|
nuitka/build/include/nuitka/helper/comparisons_ne.h,sha256=Upq1RN8b7ia32WkpKjv6lxSK8Vk7yoQyk4rt0qR6v0E,10645
|
|
85
92
|
nuitka/build/include/nuitka/helper/complex.h,sha256=m8QPtwfbFNMS7xL7YMGG-RnedCSDrk5bQxq6JP2k8YA,1834
|
|
86
|
-
nuitka/build/include/nuitka/helper/dictionaries.h,sha256=
|
|
93
|
+
nuitka/build/include/nuitka/helper/dictionaries.h,sha256=5ddXAAr6yAfOvJzyPDEYwLMcbL9aTYSVdaOXuzBDTYQ,15313
|
|
87
94
|
nuitka/build/include/nuitka/helper/floats.h,sha256=rX8nMviCcox-CJFnaxN-SH4iRl-Oj9i_Ti116Gh9_Qg,1235
|
|
88
95
|
nuitka/build/include/nuitka/helper/import_hard.h,sha256=VUanLlUDVe2Zbzg_KgJwUHmDhh-daSGFL6Xhb3W_-m8,4401
|
|
89
96
|
nuitka/build/include/nuitka/helper/indexes.h,sha256=UKZFHrE3DIuvINky2KFgILtNhA6BdtoG6g-C73J2-vM,1827
|
|
90
|
-
nuitka/build/include/nuitka/helper/ints.h,sha256=
|
|
91
|
-
nuitka/build/include/nuitka/helper/iterators.h,sha256=
|
|
97
|
+
nuitka/build/include/nuitka/helper/ints.h,sha256=sqLnDhvX8YYPQ5DxiHOQZ_FuXXdamVWRCRXVHxnRQlo,5918
|
|
98
|
+
nuitka/build/include/nuitka/helper/iterators.h,sha256=_5euqJwOciWAGLCqd5xWWQkPFqXmUl0EXmzQl3xLFqc,11950
|
|
92
99
|
nuitka/build/include/nuitka/helper/lists.h,sha256=oP1UKENZoQbLzyxnyimCMkDpuNjtDtiCYBjEgV9RQVw,3763
|
|
93
100
|
nuitka/build/include/nuitka/helper/lists_generated.h,sha256=hsSdtScg6-AsqrRGKV2UbvonzmwccZzM0mdp5MLAYgA,1938
|
|
94
101
|
nuitka/build/include/nuitka/helper/mappings.h,sha256=KtvoOxJSto5Lr-aAFEvbfPL3t-hWCPhe6KgCBDMpu1w,1386
|
|
95
|
-
nuitka/build/include/nuitka/helper/operations.h,sha256=
|
|
96
|
-
nuitka/build/include/nuitka/helper/operations_binary_add.h,sha256=
|
|
102
|
+
nuitka/build/include/nuitka/helper/operations.h,sha256=OdF55hS3h8zWTKmH_zYUvj3nLkIZvUWzLRhGbCqlang,4784
|
|
103
|
+
nuitka/build/include/nuitka/helper/operations_binary_add.h,sha256=9rlUX3u3rSTCD-NvF03azNTnQSY1A7m8Vo_BADYIosw,13129
|
|
97
104
|
nuitka/build/include/nuitka/helper/operations_binary_bitand.h,sha256=HXBDv-0xxkerYAhrH7elvcH_51ggQENaEvtB-9P_r5I,5692
|
|
98
105
|
nuitka/build/include/nuitka/helper/operations_binary_bitor.h,sha256=o40zGr6USSmWeruYZAV-Ld07m_vh920nUGs7uZkoewE,5670
|
|
99
106
|
nuitka/build/include/nuitka/helper/operations_binary_bitxor.h,sha256=2Rdu1x6GTlWKIWZAIijfSdwmlXw38-VrEMyJagr5cw4,5692
|
|
100
107
|
nuitka/build/include/nuitka/helper/operations_binary_divmod.h,sha256=yHrEAIJbZlpD8jv0jLuJT6pm5maNnDx8OB15RbGp_4w,5451
|
|
108
|
+
nuitka/build/include/nuitka/helper/operations_binary_dual_add.h,sha256=a5wd59UVzJxbzVP0slvsgNre679pb-QWoLLBO-fo34s,1692
|
|
101
109
|
nuitka/build/include/nuitka/helper/operations_binary_floordiv.h,sha256=EZhIjIsdf_dJ-9F0ICJfp2ehip7DJORBUStI6dsczTU,5489
|
|
102
110
|
nuitka/build/include/nuitka/helper/operations_binary_lshift.h,sha256=fokzzgMjHtWV6cJIaycnULzVhicnLOdMo0n8fWuu7Xg,5144
|
|
103
111
|
nuitka/build/include/nuitka/helper/operations_binary_matmult.h,sha256=Sty7tKtm3G6IToMaIb_Hq4_RC46DJiexEcBuWHwpyf4,2828
|
|
@@ -106,10 +114,10 @@ nuitka/build/include/nuitka/helper/operations_binary_mult.h,sha256=NyXCgGpjT-9OR
|
|
|
106
114
|
nuitka/build/include/nuitka/helper/operations_binary_olddiv.h,sha256=UJc1YYPDZGo0etAsF9gbs5LuAn5l_YeSUY1pB7Y5PI0,5820
|
|
107
115
|
nuitka/build/include/nuitka/helper/operations_binary_pow.h,sha256=3c-7DqC-R8ahyGkws2S734wqbLfVkKP--rAhFIJF-LE,4743
|
|
108
116
|
nuitka/build/include/nuitka/helper/operations_binary_rshift.h,sha256=fNewv2f_HFc54snSUvhJkrAkiX2xumkvjPCkckD0SL0,5144
|
|
109
|
-
nuitka/build/include/nuitka/helper/operations_binary_sub.h,sha256=
|
|
117
|
+
nuitka/build/include/nuitka/helper/operations_binary_sub.h,sha256=E2LjaxfTNP_ZaCFyCfCxhCZObng2Sa0eLCfAj755PPo,6267
|
|
110
118
|
nuitka/build/include/nuitka/helper/operations_binary_truediv.h,sha256=JaeP4OhwlcB5HqRrDJim2B6YZoAEbZtlmv-vf40aVRo,5467
|
|
111
119
|
nuitka/build/include/nuitka/helper/operations_builtin_types.h,sha256=YhNZljZwJ6YjH9lzZQ0Uv25MXiCQs1u8fQ0oDPDlj4I,20173
|
|
112
|
-
nuitka/build/include/nuitka/helper/operations_inplace_add.h,sha256=
|
|
120
|
+
nuitka/build/include/nuitka/helper/operations_inplace_add.h,sha256=LGmkIaxlccAiqNwRe9izX-DBDJRjp5ruLIDYYJ-D1KU,8896
|
|
113
121
|
nuitka/build/include/nuitka/helper/operations_inplace_bitand.h,sha256=qzuBLu8_TsxcrsBPoiIALC6AILm-FnexRvhnSCo-rvs,3796
|
|
114
122
|
nuitka/build/include/nuitka/helper/operations_inplace_bitor.h,sha256=XQMv0aDH1aLrHLFhRQ5wPh6kJxXPCt6JG3FjhhdjW84,3782
|
|
115
123
|
nuitka/build/include/nuitka/helper/operations_inplace_bitxor.h,sha256=CJxFGX3dKN8mKENNc3y0n0etRmL4jVR0V9NK5kdexpE,3796
|
|
@@ -121,17 +129,17 @@ nuitka/build/include/nuitka/helper/operations_inplace_mult.h,sha256=NB729XTGgw7_
|
|
|
121
129
|
nuitka/build/include/nuitka/helper/operations_inplace_olddiv.h,sha256=eQZ4s4etesF_O95f6mY9AaL2hBJNI-m24il5lNSL5uc,5176
|
|
122
130
|
nuitka/build/include/nuitka/helper/operations_inplace_pow.h,sha256=j4KreUvZYTsD_7DEThhVPqRQU4Eokt1LzbKYv-QzRBM,4378
|
|
123
131
|
nuitka/build/include/nuitka/helper/operations_inplace_rshift.h,sha256=68-1TPB3GcFzZVKq8Qw800BxtJZl9we6LNGuuHyksnI,3040
|
|
124
|
-
nuitka/build/include/nuitka/helper/operations_inplace_sub.h,sha256=
|
|
132
|
+
nuitka/build/include/nuitka/helper/operations_inplace_sub.h,sha256=75Q0eKHfe1VgUUTUIRPq3gJcnDZgqq-jEiKFBpxWY5s,5201
|
|
125
133
|
nuitka/build/include/nuitka/helper/operations_inplace_truediv.h,sha256=Ho4uiSNeia7kLTa20_vcVnHyE5C7fwwqgKB03-p9Kgo,4855
|
|
126
|
-
nuitka/build/include/nuitka/helper/raising.h,sha256=
|
|
134
|
+
nuitka/build/include/nuitka/helper/raising.h,sha256=tAyxHZwGTIi7SLqDKe0L2_9w5M-ErwGuKDOW8J-4tH8,4725
|
|
127
135
|
nuitka/build/include/nuitka/helper/rangeobjects.h,sha256=rXxZLOQMSw9nbg0rtlHztiG-_eXX8n7R2tUd-ssGMK4,2367
|
|
128
|
-
nuitka/build/include/nuitka/helper/richcomparisons.h,sha256=
|
|
136
|
+
nuitka/build/include/nuitka/helper/richcomparisons.h,sha256=X9Q0ZhhyPOCis5tHaLo0pOcE87Bh3gariSiuvrdSLZ0,1458
|
|
129
137
|
nuitka/build/include/nuitka/helper/sequences.h,sha256=CWNzfPHqdqpvWvET8h9dhYM9vZ1RHbFmZiJzY8y-tWs,1439
|
|
130
138
|
nuitka/build/include/nuitka/helper/sets.h,sha256=FaGK8nqWrRVraag_f9_g0ScUd_AA8XolcH3gQsFU734,1054
|
|
131
139
|
nuitka/build/include/nuitka/helper/slices.h,sha256=fuaj73F7RhdrH0VaVxLERLcpjiNcOyBlv7gXeTYVueE,9114
|
|
132
140
|
nuitka/build/include/nuitka/helper/strings.h,sha256=nK_lqZkoRprTBaUtUrPQLe9rAV4SiGOS43gg6bYty7k,1363
|
|
133
141
|
nuitka/build/include/nuitka/helper/subscripts.h,sha256=zDs83eXjH5YQng0Wj05DTdW9p5FCihoclAAr8grC19w,12844
|
|
134
|
-
nuitka/build/include/nuitka/helper/tuples.h,sha256=
|
|
142
|
+
nuitka/build/include/nuitka/helper/tuples.h,sha256=9bceEv6veE1hHOFLx1MdFmhq8cu-kJ9GhjGu1zFwm8s,7166
|
|
135
143
|
nuitka/build/inline_copy/appdirs/LICENSE.txt,sha256=Nt200KdFqTqyAyA9cZCBSxuJcn0lTK_0jHp6-71HAAs,1097
|
|
136
144
|
nuitka/build/inline_copy/appdirs/appdirs.py,sha256=i14Bgt4Rt1iL9mvq_wFlfLBxChZOQK7B8_GvU8cJpRM,24824
|
|
137
145
|
nuitka/build/inline_copy/atomicwrites/LICENSE,sha256=h4Mp8L2HitAVEpzovagvSB6G7C6Agx6QnA1nFx2SLnM,1069
|
|
@@ -350,6 +358,9 @@ nuitka/build/inline_copy/python_hacl/hacl_312/internal/Hacl_Hash_MD5.h,sha256=Nw
|
|
|
350
358
|
nuitka/build/inline_copy/python_hacl/hacl_312/internal/Hacl_Hash_SHA1.h,sha256=q1LGCSvbv8mIT4Qb9IJAFnkv-pYWdXfL4N8A3Zb1ajQ,1932
|
|
351
359
|
nuitka/build/inline_copy/python_hacl/hacl_312/internal/Hacl_Hash_SHA2.h,sha256=EOlZqSsyiKYWWkBMj64rvNf7AKmruuK3gJ-lXW_pBo0,6457
|
|
352
360
|
nuitka/build/inline_copy/python_hacl/hacl_312/internal/Hacl_Hash_SHA3.h,sha256=aFMSXeEND2Bem8Oj271yVHE3CemJPMP2mSnqjT8lSTQ,1959
|
|
361
|
+
nuitka/build/inline_copy/stubgen/astunparse.py,sha256=8tCYDp8bVwAZ8Ixyv1KbNWd5FuciN3OnUrr2y9z7kLk,27368
|
|
362
|
+
nuitka/build/inline_copy/stubgen/six.py,sha256=HGHXFQKoD2Qv80cmqih6xAwe3Y-SOc4uCU9v3tANANQ,34581
|
|
363
|
+
nuitka/build/inline_copy/stubgen/stubgen.py,sha256=sCkVhfBvYpQPR5mueJwQGWd2c1rkBx16Sz6CSURtWiU,13510
|
|
353
364
|
nuitka/build/inline_copy/tqdm/tqdm/__init__.py,sha256=tXNfVIBkYbXj2H-hT_n_1YktRNRzNAPUWYmNYe2N25E,1595
|
|
354
365
|
nuitka/build/inline_copy/tqdm/tqdm/_main.py,sha256=9ySvgmi_2Sw4CAo5UDW0Q2dxfTryboEWGHohfCJz0sA,283
|
|
355
366
|
nuitka/build/inline_copy/tqdm/tqdm/_monitor.py,sha256=dbTAN05CHpe9z7seX5FKeFEBrS_Z6luJf_yTXSduFfM,3777
|
|
@@ -415,258 +426,267 @@ nuitka/build/inline_copy/zstd/decompress/zstd_decompress.c,sha256=cucjOEFkR8einU
|
|
|
415
426
|
nuitka/build/inline_copy/zstd/decompress/zstd_decompress_block.c,sha256=GTPNi7v2muQAWd4LqS5-qyvu6n8qj73J59y6CtxwOVM,66784
|
|
416
427
|
nuitka/build/inline_copy/zstd/decompress/zstd_decompress_block.h,sha256=Tsd32XLgbI9ZHSqpEKmX2qLq83lLm8HnYQz6mjaClxg,2253
|
|
417
428
|
nuitka/build/inline_copy/zstd/decompress/zstd_decompress_internal.h,sha256=2Dw1AaKzodgE564IrcIIn4C8w_CE59iKLA4fUSuslBg,7906
|
|
418
|
-
nuitka/build/static_src/CompiledAsyncgenType.c,sha256=
|
|
419
|
-
nuitka/build/static_src/CompiledCellType.c,sha256
|
|
420
|
-
nuitka/build/static_src/CompiledCodeHelpers.c,sha256=
|
|
421
|
-
nuitka/build/static_src/CompiledCoroutineType.c,sha256=
|
|
422
|
-
nuitka/build/static_src/CompiledFrameType.c,sha256=
|
|
423
|
-
nuitka/build/static_src/CompiledFunctionType.c,sha256=
|
|
424
|
-
nuitka/build/static_src/CompiledGeneratorType.c,sha256=
|
|
425
|
-
nuitka/build/static_src/CompiledGeneratorTypeUncompiledIntegration.c,sha256=
|
|
426
|
-
nuitka/build/static_src/CompiledMethodType.c,sha256=
|
|
427
|
-
nuitka/build/static_src/HelpersAllocator.c,sha256=
|
|
428
|
-
nuitka/build/static_src/HelpersAttributes.c,sha256=
|
|
429
|
-
nuitka/build/static_src/HelpersBuiltin.c,sha256=
|
|
429
|
+
nuitka/build/static_src/CompiledAsyncgenType.c,sha256=ybTTdEnXM278Fk6gfheFc91KwSgL3lV0nodMMFODemE,84108
|
|
430
|
+
nuitka/build/static_src/CompiledCellType.c,sha256=-d1zroznVqvlV9xPzmGg-55F8AbfHwBAbcz88m9uzLs,9239
|
|
431
|
+
nuitka/build/static_src/CompiledCodeHelpers.c,sha256=NLRCnBP6Urc7SXX8C09GrYGs5LDUGUqI-76xinZnX0Q,61487
|
|
432
|
+
nuitka/build/static_src/CompiledCoroutineType.c,sha256=449cm5o_fh-lq31oIBKtlPiL__xq9vCWnkrXmBM8N6k,72867
|
|
433
|
+
nuitka/build/static_src/CompiledFrameType.c,sha256=R1V32zSQEILUSTX7yy0RWgDCDeW1Bprp_qTvNFfJXMg,43638
|
|
434
|
+
nuitka/build/static_src/CompiledFunctionType.c,sha256=BMZ--rES9ITBR0piMcD9DnWmEKdhwv9fKK3okUzz2dg,113715
|
|
435
|
+
nuitka/build/static_src/CompiledGeneratorType.c,sha256=uEPlYkPZ1WFUF2r5fbIRbWxexTiQcRNVmOd-gRftpEA,67924
|
|
436
|
+
nuitka/build/static_src/CompiledGeneratorTypeUncompiledIntegration.c,sha256=hvnUAGFCqu45BmF-xZvQ-Dk-WjuoKbmMyQcLqVdmP74,69760
|
|
437
|
+
nuitka/build/static_src/CompiledMethodType.c,sha256=rtCt3el6Y6ePMWGWEMpEj8jzsEms2hD87MP2wK443xg,22434
|
|
438
|
+
nuitka/build/static_src/HelpersAllocator.c,sha256=ZMjC5728AzaEP1tUf9g1NeRYq2MVzBT07qOlJDzVLJc,28013
|
|
439
|
+
nuitka/build/static_src/HelpersAttributes.c,sha256=vAFjx534gyT1HPsI4ekwW5B20CmeYvE4rzlBUGGoOUg,36936
|
|
440
|
+
nuitka/build/static_src/HelpersBuiltin.c,sha256=eFXcx3M7U0_d9Wm9oUN_8_Gv0jlFs6RgnWWtzk1pCuk,24437
|
|
430
441
|
nuitka/build/static_src/HelpersBuiltinTypeMethods.c,sha256=8KT1Naoot64WipECnnE9iGxFsy4QdEKlLRidJYcxrdI,114017
|
|
431
442
|
nuitka/build/static_src/HelpersBytes.c,sha256=dH8NhgJMch4qb09uKkm6KBhyVgPv72oXbGse7A-e9O4,3066
|
|
432
|
-
nuitka/build/static_src/HelpersCalling.c,sha256=
|
|
433
|
-
nuitka/build/static_src/HelpersCallingGenerated.c,sha256=
|
|
443
|
+
nuitka/build/static_src/HelpersCalling.c,sha256=4N_pffsUTCzgIXevh20fBLzLgdh5TGFNC1WzXI4Vtis,13587
|
|
444
|
+
nuitka/build/static_src/HelpersCallingGenerated.c,sha256=usQLplULK9jhftwx8bCAgkHrHc260Leg7MuFjXB1keQ,507463
|
|
434
445
|
nuitka/build/static_src/HelpersChecksumTools.c,sha256=DLJWSvRYuC-hU7coVPqU6r3EljoCh-rJNM8YecFUnbE,2065
|
|
435
446
|
nuitka/build/static_src/HelpersClasses.c,sha256=UiATEtqIy03LSG1PKpjfZjXdmxOOIE6FKcSJx_orw90,3051
|
|
436
|
-
nuitka/build/static_src/
|
|
447
|
+
nuitka/build/static_src/HelpersComparisonDualEq.c,sha256=k62e7ZDHaoJhUXK2zMi3O0gJmWzT2lXhc_s1B6b2HFM,6876
|
|
448
|
+
nuitka/build/static_src/HelpersComparisonDualGe.c,sha256=IehZ5Zy1gC154OfJNvYGAzGy2luN4T6YK6xYJIr7__o,4644
|
|
449
|
+
nuitka/build/static_src/HelpersComparisonDualGt.c,sha256=TS_YeeU8kk-W3AfO0HOC8KEpVWO319F3ZDDBiWhBUxw,4643
|
|
450
|
+
nuitka/build/static_src/HelpersComparisonDualLe.c,sha256=SvHFy0pFVu9br8xR-2MCz6LQHAL5BInFqmoLdc2xL1k,6876
|
|
451
|
+
nuitka/build/static_src/HelpersComparisonDualLt.c,sha256=Vpvyej5-6Ggr8f3NIVkq4nfXL7iLF6CSxhfLMlYOBoU,6873
|
|
452
|
+
nuitka/build/static_src/HelpersComparisonDualNe.c,sha256=nytrUH_EXQI5mJ8QcVt9e1sJDUQGnc4HBwfmfVicwcw,4644
|
|
453
|
+
nuitka/build/static_src/HelpersComparisonEq.c,sha256=tgkv3Ui1gbpykCs3CukIgNZMNDP3HXgBsuegfm5brqM,322444
|
|
437
454
|
nuitka/build/static_src/HelpersComparisonEqUtils.c,sha256=vLG_xfzyMKOziBUIdPT7IJOdvMm-08ej-iv5pUuOAaU,4864
|
|
438
|
-
nuitka/build/static_src/HelpersComparisonGe.c,sha256=
|
|
439
|
-
nuitka/build/static_src/HelpersComparisonGt.c,sha256=
|
|
440
|
-
nuitka/build/static_src/HelpersComparisonLe.c,sha256=
|
|
441
|
-
nuitka/build/static_src/HelpersComparisonLt.c,sha256=
|
|
442
|
-
nuitka/build/static_src/HelpersComparisonNe.c,sha256
|
|
443
|
-
nuitka/build/static_src/HelpersConsole.c,sha256=
|
|
444
|
-
nuitka/build/static_src/HelpersConstantsBlob.c,sha256=
|
|
445
|
-
nuitka/build/static_src/HelpersDeepcopy.c,sha256=
|
|
446
|
-
nuitka/build/static_src/HelpersDictionaries.c,sha256=
|
|
447
|
-
nuitka/build/static_src/HelpersDictionariesGenerated.c,sha256=
|
|
455
|
+
nuitka/build/static_src/HelpersComparisonGe.c,sha256=zS_hyKnCEGbBROYmounp6hE_Rhqjmuv9qahUxPk1_rU,317564
|
|
456
|
+
nuitka/build/static_src/HelpersComparisonGt.c,sha256=uCbPpDXnCQxORqHe_XOdtq7wu7_MHVoddPTmilyd7qg,316966
|
|
457
|
+
nuitka/build/static_src/HelpersComparisonLe.c,sha256=K4ZJgctiN9nuoUY3BdHujuqnUM2kCz5y0ctemZMBf7w,320778
|
|
458
|
+
nuitka/build/static_src/HelpersComparisonLt.c,sha256=gc-Puj_zTHRg0bVzuczGEcTA-e79CoCSbTQxdxHVPPM,320180
|
|
459
|
+
nuitka/build/static_src/HelpersComparisonNe.c,sha256=BePDyFzqWF5IKxz8Hp5sUsWTQCNMpyorlhEd4_JACu0,319192
|
|
460
|
+
nuitka/build/static_src/HelpersConsole.c,sha256=GGkCZvZLae7o0MxjqI-o14CEwimNH61WpPvjcIFZuXs,4741
|
|
461
|
+
nuitka/build/static_src/HelpersConstantsBlob.c,sha256=Vlaw_wn6Io09XjngrJ5HPwte34y3CmiiqlnSSKSgRMc,36120
|
|
462
|
+
nuitka/build/static_src/HelpersDeepcopy.c,sha256=TkX6lT-tuL9LDji-K4BFcJQihMcntbvHBBm0siBP2rI,20383
|
|
463
|
+
nuitka/build/static_src/HelpersDictionaries.c,sha256=9f-howpwgX_Jv014C20mGovx9exnYsWzWevWlT-oeJ8,45154
|
|
464
|
+
nuitka/build/static_src/HelpersDictionariesGenerated.c,sha256=le8RJSbpWFxgqN9wjFqjQudHyfmFABzY8kk-nOL4mNI,24991
|
|
448
465
|
nuitka/build/static_src/HelpersDumpBacktraces.c,sha256=YLLaUz69cqK1D6H-7WsN6bXgPiLZXvOfB2p8c-E0UjM,2066
|
|
449
466
|
nuitka/build/static_src/HelpersEnvironmentVariables.c,sha256=NFeGsWd6Z8TgvtbAWAITXK0fSOnoDPjbywjQpbo4j5k,2194
|
|
450
467
|
nuitka/build/static_src/HelpersEnvironmentVariablesSystem.c,sha256=gH3eizvT_9-hagDwFkHl5I2lxxIVa4G7GQkRJQSY7yY,2979
|
|
451
|
-
nuitka/build/static_src/HelpersExceptions.c,sha256=
|
|
452
|
-
nuitka/build/static_src/HelpersFiles.c,sha256=
|
|
468
|
+
nuitka/build/static_src/HelpersExceptions.c,sha256=lyPOvEl0rZQ19mLAnu4lb-wftSdTYOUtvioxkev6vtc,9859
|
|
469
|
+
nuitka/build/static_src/HelpersFiles.c,sha256=WN4nL72mTEDj__zkxX7sdzKE4R4m7RIWfHmjmaY9tDM,10292
|
|
453
470
|
nuitka/build/static_src/HelpersFilesystemPaths.c,sha256=rQ66z6vBrzktpOUoC3myQjLyOjMgUge5GbtW05qRz2Y,30635
|
|
454
471
|
nuitka/build/static_src/HelpersFloats.c,sha256=0Gq3_hD25Jsg7WClqsq1o0f0JSDg--ROBON9oKoUIoU,2719
|
|
455
472
|
nuitka/build/static_src/HelpersHeapStorage.c,sha256=UKucPIeZlW6sbzKnm2A9QKYTkKcv-jIJs2GDgsopsCc,1837
|
|
456
|
-
nuitka/build/static_src/HelpersImport.c,sha256
|
|
457
|
-
nuitka/build/static_src/HelpersImportHard.c,sha256=
|
|
473
|
+
nuitka/build/static_src/HelpersImport.c,sha256=32mrZvFgvL1vRwOJdVAR2JMT2b6dNXOW7APtOivGUx4,16186
|
|
474
|
+
nuitka/build/static_src/HelpersImportHard.c,sha256=UegmgJcG-jO5hAwZi8mp_uegwC4wzmuSYl_0yNDopAM,16590
|
|
458
475
|
nuitka/build/static_src/HelpersJitSources.c,sha256=0vNnbQYGnmSqE7Uj3SkLNbqKFDxY5vP-4piavQYlF1Y,1821
|
|
459
|
-
nuitka/build/static_src/HelpersLists.c,sha256=
|
|
476
|
+
nuitka/build/static_src/HelpersLists.c,sha256=8ns-XEeUnRr1AcOfFYgaRcJYhRXGH0tYfgnGSnskkVo,23981
|
|
460
477
|
nuitka/build/static_src/HelpersListsGenerated.c,sha256=6rbjOglwf_xlKEUgJOH-tC6mUHDhS-PV8fBikoohYwQ,14316
|
|
461
478
|
nuitka/build/static_src/HelpersMappings.c,sha256=f3s_pCQGKeMiWD7AmdZEXGgLRvT3r-Fzgos2Yr9Gqvg,1669
|
|
462
479
|
nuitka/build/static_src/HelpersMatching.c,sha256=G9CYDr609bFe4EKNw8el14AxRggXeCTQMSY0cwyr81E,6235
|
|
463
|
-
nuitka/build/static_src/HelpersOperationBinaryAdd.c,sha256=
|
|
464
|
-
nuitka/build/static_src/HelpersOperationBinaryAddUtils.c,sha256=
|
|
465
|
-
nuitka/build/static_src/HelpersOperationBinaryBitand.c,sha256=
|
|
466
|
-
nuitka/build/static_src/HelpersOperationBinaryBitor.c,sha256=
|
|
467
|
-
nuitka/build/static_src/HelpersOperationBinaryBitxor.c,sha256=
|
|
468
|
-
nuitka/build/static_src/HelpersOperationBinaryDivmod.c,sha256=
|
|
480
|
+
nuitka/build/static_src/HelpersOperationBinaryAdd.c,sha256=k8WmBklFIX3U-IB8VJtQmgI768XocLuQxwJDET4Ozzc,190664
|
|
481
|
+
nuitka/build/static_src/HelpersOperationBinaryAddUtils.c,sha256=G5MAR_meOzTFwOPA2URID-dGdFqkZ6rghyMaOaohXEw,20065
|
|
482
|
+
nuitka/build/static_src/HelpersOperationBinaryBitand.c,sha256=dzr6Qgs06gRsX79O6r13ZbIfYVVQnJsKdADPgRs7YR0,78304
|
|
483
|
+
nuitka/build/static_src/HelpersOperationBinaryBitor.c,sha256=2o5pgMd1U5jbiZXaEDuGzJquT-H8eouyJgHXyefHtwM,78143
|
|
484
|
+
nuitka/build/static_src/HelpersOperationBinaryBitxor.c,sha256=nHBixwXmNq2JF6YbWwAvpfQ_ZQYN_AlT5EF09zrMqQI,78304
|
|
485
|
+
nuitka/build/static_src/HelpersOperationBinaryDivmod.c,sha256=dPU6gaOQaS_bsnUS7RWchD6_Im3glYVhXhEam3-Ggv0,68454
|
|
469
486
|
nuitka/build/static_src/HelpersOperationBinaryDivmodUtils.c,sha256=H0togrj6_-JEux7U9a-g_bWm8XHmIPOX2eBdB_f7b9Q,1265
|
|
470
|
-
nuitka/build/static_src/
|
|
487
|
+
nuitka/build/static_src/HelpersOperationBinaryDualAdd.c,sha256=lwS1xPP-bl6gRY-V8b4zEJou9_KzW3qoQ1hHbms7yvU,5919
|
|
488
|
+
nuitka/build/static_src/HelpersOperationBinaryFloordiv.c,sha256=ZhoWhC2YNbgT9Cvl-1BSqDluJpOn4VLLdYu-EXj43IA,69757
|
|
471
489
|
nuitka/build/static_src/HelpersOperationBinaryInplaceAdd.c,sha256=wRi0M1LUNXFWdIy1d9yIf-meC5wfxrqwvRWty4D5xr8,6300
|
|
472
|
-
nuitka/build/static_src/HelpersOperationBinaryLshift.c,sha256=
|
|
473
|
-
nuitka/build/static_src/HelpersOperationBinaryMatmult.c,sha256=
|
|
474
|
-
nuitka/build/static_src/HelpersOperationBinaryMod.c,sha256=
|
|
475
|
-
nuitka/build/static_src/HelpersOperationBinaryMult.c,sha256=
|
|
490
|
+
nuitka/build/static_src/HelpersOperationBinaryLshift.c,sha256=zNkxc4EMJ-4MrIk9ZU6P5dQjInv-KMz5rI6-i0V33Ms,84476
|
|
491
|
+
nuitka/build/static_src/HelpersOperationBinaryMatmult.c,sha256=IuR_azvdhxOCYq3pqmsC0GHeymy2Lk0CSisD9sZ3oMY,13869
|
|
492
|
+
nuitka/build/static_src/HelpersOperationBinaryMod.c,sha256=zYiqI_lcI9gaCgHkP6jOG7CZf7rfTNYqSFKmT5TtLCs,184759
|
|
493
|
+
nuitka/build/static_src/HelpersOperationBinaryMult.c,sha256=CPohhVmlCCfuOI9LJ6E5MlMMCY1nqsjly6e91LtVrKM,189094
|
|
476
494
|
nuitka/build/static_src/HelpersOperationBinaryMultUtils.c,sha256=SUZRIotlIBa2_4Q2SetErAhbc2MyscL_2JN1x8at0WE,3593
|
|
477
|
-
nuitka/build/static_src/HelpersOperationBinaryOlddiv.c,sha256=
|
|
478
|
-
nuitka/build/static_src/HelpersOperationBinaryPow.c,sha256=
|
|
495
|
+
nuitka/build/static_src/HelpersOperationBinaryOlddiv.c,sha256=pb9pJf9KidXAeqbefhRq-qYfuJYq1ZCcaefM1UmyOTY,67462
|
|
496
|
+
nuitka/build/static_src/HelpersOperationBinaryPow.c,sha256=xikNbGfsDqJPwaO-_t1qJkLGnNV_atEWUx4Td5vO0mE,79895
|
|
479
497
|
nuitka/build/static_src/HelpersOperationBinaryPowUtils.c,sha256=GL_yV91j1avSy6eepOdF8ptWn6MD2zRJT7pZ3PmOe1Y,1052
|
|
480
|
-
nuitka/build/static_src/HelpersOperationBinaryRshift.c,sha256
|
|
481
|
-
nuitka/build/static_src/HelpersOperationBinarySub.c,sha256=
|
|
482
|
-
nuitka/build/static_src/HelpersOperationBinaryTruediv.c,sha256=
|
|
483
|
-
nuitka/build/static_src/HelpersOperationInplaceAdd.c,sha256=
|
|
498
|
+
nuitka/build/static_src/HelpersOperationBinaryRshift.c,sha256=GPeA6GVqPQGzXf-A6-KuF9T6wdSalINYYWXRI_0gAjg,78152
|
|
499
|
+
nuitka/build/static_src/HelpersOperationBinarySub.c,sha256=nHuHPqZv_pbu2bEgzAlNKnY_q__xNcWz0D0WjvlK2X0,77912
|
|
500
|
+
nuitka/build/static_src/HelpersOperationBinaryTruediv.c,sha256=t6EefanERpyMuXosp3OPx2vdwD_dSHKq4NWIDm3xAb0,68972
|
|
501
|
+
nuitka/build/static_src/HelpersOperationInplaceAdd.c,sha256=xUcj2xQCdAxp9GjKKDXYdiCB3x11rSxSCpnQgBF54Gw,157134
|
|
484
502
|
nuitka/build/static_src/HelpersOperationInplaceAddUtils.c,sha256=aNJ8-JEcQFgWpSds4XlbPKGJhjxzxbWrf74mX34LOlM,4267
|
|
485
|
-
nuitka/build/static_src/HelpersOperationInplaceBitand.c,sha256=
|
|
486
|
-
nuitka/build/static_src/HelpersOperationInplaceBitor.c,sha256=
|
|
487
|
-
nuitka/build/static_src/HelpersOperationInplaceBitxor.c,sha256=
|
|
488
|
-
nuitka/build/static_src/HelpersOperationInplaceFloordiv.c,sha256=
|
|
489
|
-
nuitka/build/static_src/HelpersOperationInplaceLshift.c,sha256=
|
|
490
|
-
nuitka/build/static_src/HelpersOperationInplaceMatmult.c,sha256=
|
|
491
|
-
nuitka/build/static_src/HelpersOperationInplaceMod.c,sha256=
|
|
492
|
-
nuitka/build/static_src/HelpersOperationInplaceMult.c,sha256=
|
|
493
|
-
nuitka/build/static_src/HelpersOperationInplaceOlddiv.c,sha256=
|
|
494
|
-
nuitka/build/static_src/HelpersOperationInplacePow.c,sha256=
|
|
495
|
-
nuitka/build/static_src/HelpersOperationInplaceRshift.c,sha256=
|
|
496
|
-
nuitka/build/static_src/HelpersOperationInplaceSub.c,sha256=
|
|
497
|
-
nuitka/build/static_src/HelpersOperationInplaceTruediv.c,sha256=
|
|
498
|
-
nuitka/build/static_src/HelpersProfiling.c,sha256=
|
|
503
|
+
nuitka/build/static_src/HelpersOperationInplaceBitand.c,sha256=qFWvnqpZpC5Tf7ev7irhZzAJjeEoILtgagBamj4laFA,53524
|
|
504
|
+
nuitka/build/static_src/HelpersOperationInplaceBitor.c,sha256=cOtYlL8yyqFUJVI2q2UPb1ARuCQT0WVG1qOQO6xdH-g,53422
|
|
505
|
+
nuitka/build/static_src/HelpersOperationInplaceBitxor.c,sha256=XcJE5Xmyu7jSNNVxJwgbp1sRlmBZ3Cp7Zi9YyrVsnco,53524
|
|
506
|
+
nuitka/build/static_src/HelpersOperationInplaceFloordiv.c,sha256=5D8lo9xl-V5M2ML5vWOXL3AXqVIXu4dMrlZUHYtVRDg,77435
|
|
507
|
+
nuitka/build/static_src/HelpersOperationInplaceLshift.c,sha256=oZLIY0sdSeuQ7eAz7p5pWZX_Rh5hPEEx_RVt-v8GQQQ,48168
|
|
508
|
+
nuitka/build/static_src/HelpersOperationInplaceMatmult.c,sha256=bOHNG0pI7BZOFSBXK0DlKEpYqfNBbddoo8S4HwbBh4k,17872
|
|
509
|
+
nuitka/build/static_src/HelpersOperationInplaceMod.c,sha256=s2VqaSeOPmM-WQ7az9eF_tIAIgiobXsvClZPoCa4A4E,137109
|
|
510
|
+
nuitka/build/static_src/HelpersOperationInplaceMult.c,sha256=62vRBfskU8lpImhPt-XH5l205C-XNGw4xqAzKVy__gM,142612
|
|
511
|
+
nuitka/build/static_src/HelpersOperationInplaceOlddiv.c,sha256=sU29oaLY1L5dqKU2DCXLcNnTQmhyR557lQWQHL2lyyk,75065
|
|
512
|
+
nuitka/build/static_src/HelpersOperationInplacePow.c,sha256=K3UDj8wNhaEUBp_K3tca_UXPHI0OKicY0shq4xbhkmg,83518
|
|
513
|
+
nuitka/build/static_src/HelpersOperationInplaceRshift.c,sha256=7NEFKxfAMsk5L8rZNqBv1mo31jlyV6E8RzR-1un4ZPY,45540
|
|
514
|
+
nuitka/build/static_src/HelpersOperationInplaceSub.c,sha256=yHnHtMaqYuYp1fQzoq0MpHfxFQ1cScK-91nuWl_Src4,88490
|
|
515
|
+
nuitka/build/static_src/HelpersOperationInplaceTruediv.c,sha256=3e5dRQZmIHgX_XfN-Ivt0CdmyadZdKFe4bSgYt8-Hwc,77231
|
|
516
|
+
nuitka/build/static_src/HelpersProfiling.c,sha256=cVfdf9KXcASx6WIH-iNH0fA9ODEbycatFgHD8Sbrbl4,3301
|
|
499
517
|
nuitka/build/static_src/HelpersPythonPgo.c,sha256=knEuVNnJg-H8oXQbvu_9YqVg0uIA1rkWKi4Ebk6WvJ8,3840
|
|
500
|
-
nuitka/build/static_src/HelpersRaising.c,sha256=
|
|
518
|
+
nuitka/build/static_src/HelpersRaising.c,sha256=uwn0lM4_j1kKRJhpVUJnLq5uP3RpDuBoqrqdpyGgsQA,18791
|
|
501
519
|
nuitka/build/static_src/HelpersSafeStrings.c,sha256=F2WzY-50zwzMhAGYWzVT_NgA_pPcFBCEKK77uUqZSIs,4049
|
|
502
520
|
nuitka/build/static_src/HelpersSequences.c,sha256=tOnjrArZHPfQMcjrRDuRukDNtPl-Ohb-XH67BA0X8bg,3766
|
|
503
521
|
nuitka/build/static_src/HelpersSlices.c,sha256=cNCJUMPMY9BnEhK8fTSNnuSaf0NXnrSHo2c_B_5tGeg,2233
|
|
504
|
-
nuitka/build/static_src/HelpersStrings.c,sha256
|
|
505
|
-
nuitka/build/static_src/HelpersTuples.c,sha256=
|
|
506
|
-
nuitka/build/static_src/HelpersTypes.c,sha256=
|
|
522
|
+
nuitka/build/static_src/HelpersStrings.c,sha256=m5jHLSe3uVs_LIpXSih5jrcY7UZKE6BVs46gbJg4Yro,32308
|
|
523
|
+
nuitka/build/static_src/HelpersTuples.c,sha256=r_OYbne_74ZfuO6ECKRhb82lvkCjs3enqdKwIrUgUac,4484
|
|
524
|
+
nuitka/build/static_src/HelpersTypes.c,sha256=a6OTAlXhapuhZVjXF0Pu4iF8TGhmusg28Dkd03WBiCg,9956
|
|
507
525
|
nuitka/build/static_src/InspectPatcher.c,sha256=mQ0U_CyOC8I06X7DJ4qeDimFEljb2WHngB-Kf-qDwQ0,14752
|
|
508
|
-
nuitka/build/static_src/MainProgram.c,sha256=
|
|
509
|
-
nuitka/build/static_src/MetaPathBasedLoader.c,sha256=
|
|
526
|
+
nuitka/build/static_src/MainProgram.c,sha256=pYw8MWXJqZ2AlA5n98FIhffPiRv88NF4SlOSQqCz1zI,61275
|
|
527
|
+
nuitka/build/static_src/MetaPathBasedLoader.c,sha256=ySWRGooFul7qCRlB7wW3yY9BTqsDipPpm4z3-65SJXQ,66888
|
|
510
528
|
nuitka/build/static_src/MetaPathBasedLoaderImportlibMetadataDistribution.c,sha256=Ja17tBwGgt6jVF8Hr8Wvhx0NKarqJ6IL7d149latRR0,5082
|
|
511
529
|
nuitka/build/static_src/MetaPathBasedLoaderResourceReader.c,sha256=K5zaC-z7r47DZiQbn4-aYvmm0AEYd3hCAeXw8Xtw9ew,6651
|
|
512
|
-
nuitka/build/static_src/MetaPathBasedLoaderResourceReaderFiles.c,sha256
|
|
513
|
-
nuitka/build/static_src/OnefileBootstrap.c,sha256=
|
|
530
|
+
nuitka/build/static_src/MetaPathBasedLoaderResourceReaderFiles.c,sha256=Gfq7sQEJCSylka4Av75b49uXm1whTH0bek67QCKy3_M,27056
|
|
531
|
+
nuitka/build/static_src/OnefileBootstrap.c,sha256=1m3KrqirTzhNS0SNSvCuxi9CggpxRMNmzZSB0a-guFA,40278
|
|
514
532
|
nuitka/build/static_src/OnefileSplashScreen.cpp,sha256=WMJ8kWaFpsooTcHt2fJE3ztfVCXL-dpSwKB-ePJHdtc,9138
|
|
515
|
-
nuitka/code_generation/AsyncgenCodes.py,sha256=
|
|
533
|
+
nuitka/code_generation/AsyncgenCodes.py,sha256=NK7VjclzO2ma6GMTZFZtKRisjIRXkFz07GQnLLu9SPc,6364
|
|
516
534
|
nuitka/code_generation/AttributeCodes.py,sha256=9rp8iBP4lV33xde5eJmomF2rfmGddR3LRqTjAT8WHu0,10948
|
|
517
|
-
nuitka/code_generation/BinaryOperationHelperDefinitions.py,sha256=
|
|
535
|
+
nuitka/code_generation/BinaryOperationHelperDefinitions.py,sha256=XKHz0RMF4mJ4gcPTgglpTWt78alynSIuzo3aIBmY1TY,25109
|
|
518
536
|
nuitka/code_generation/BranchCodes.py,sha256=rWY_iE94DOWRTp7oh2It23dmzyC_dlLrbkW-ZP3KYmg,2371
|
|
519
|
-
nuitka/code_generation/BuiltinCodes.py,sha256=
|
|
520
|
-
nuitka/code_generation/CallCodes.py,sha256=
|
|
537
|
+
nuitka/code_generation/BuiltinCodes.py,sha256=bsVistZwuDWLI28NvocRMdykPsFvDKiKIyrK0MawhdU,17144
|
|
538
|
+
nuitka/code_generation/CallCodes.py,sha256=BvAHAOhChp7G7gi87cdeSsnIuMOLJ6PhVQjPojGZ90M,36125
|
|
521
539
|
nuitka/code_generation/ClassCodes.py,sha256=vljc0K1dbR1idOLBQUvszFP343RXq78mwQ8zu0L2T80,4958
|
|
522
|
-
nuitka/code_generation/CodeGeneration.py,sha256=
|
|
523
|
-
nuitka/code_generation/CodeHelperSelection.py,sha256=
|
|
524
|
-
nuitka/code_generation/CodeHelpers.py,sha256=
|
|
525
|
-
nuitka/code_generation/CodeObjectCodes.py,sha256=
|
|
526
|
-
nuitka/code_generation/ComparisonCodes.py,sha256=
|
|
527
|
-
nuitka/code_generation/ComparisonHelperDefinitions.py,sha256=
|
|
540
|
+
nuitka/code_generation/CodeGeneration.py,sha256=UqsPpO5WgOHUKs9IobwhNXbm3BfiRyM4Z6VemDiRTmk,54113
|
|
541
|
+
nuitka/code_generation/CodeHelperSelection.py,sha256=1zb0I540z9Weo_vzqr1zWoH1zoG4NvAV7EYhIY6Rsuk,2418
|
|
542
|
+
nuitka/code_generation/CodeHelpers.py,sha256=LxxnJ-NE6a4SJOegCtSe7zuqc3MySX9cWoT4GZWv-j8,14380
|
|
543
|
+
nuitka/code_generation/CodeObjectCodes.py,sha256=R4q1-G1AOAkQkLdltpeeueOvEFI6LUq6jZptMpIbYfk,5157
|
|
544
|
+
nuitka/code_generation/ComparisonCodes.py,sha256=KiNW6gw5UY4j5LtNMUBoELM8y-ocMIQtZKNGsA4ZIcE,18261
|
|
545
|
+
nuitka/code_generation/ComparisonHelperDefinitions.py,sha256=hzLFd63_NHsBRTJ3JFbpUCl7NH7TlTytacLYA2o78ak,5301
|
|
528
546
|
nuitka/code_generation/ConditionalCodes.py,sha256=KQy8QbKtL0w_4n5AotILlI8EC9Xlh_Gozh5r5T9IPhk,7368
|
|
529
547
|
nuitka/code_generation/ConstantCodes.py,sha256=QAVp7d3jgERgzpWPylkhsLoWfePn6usYZ7e6IRJiHDw,8122
|
|
530
|
-
nuitka/code_generation/Contexts.py,sha256=
|
|
531
|
-
nuitka/code_generation/CoroutineCodes.py,sha256=
|
|
548
|
+
nuitka/code_generation/Contexts.py,sha256=QqRO-TaEgsKiWP0M2_iFvYblDCKlLvW6ImGCu27e2FI,34811
|
|
549
|
+
nuitka/code_generation/CoroutineCodes.py,sha256=IHXt4cdpPzFjhERy3shDEoMpliBXInVimDblyoqykiM,8462
|
|
532
550
|
nuitka/code_generation/CtypesCodes.py,sha256=xHzHupSa4fei5uEq6dMhDYPFNTel5xVvLcGpDHfHDMo,1607
|
|
533
|
-
nuitka/code_generation/DictCodes.py,sha256=
|
|
551
|
+
nuitka/code_generation/DictCodes.py,sha256=_3bPU5xvKU-ZIbY9_hHDNzZrakM3aBbWCENQ2Ikh5G8,28939
|
|
534
552
|
nuitka/code_generation/Emission.py,sha256=ZVrcUo8IE7Kfpv2vEqBkPycJq8Yngen8Nm6YD0cAS4s,2159
|
|
535
|
-
nuitka/code_generation/ErrorCodes.py,sha256=
|
|
553
|
+
nuitka/code_generation/ErrorCodes.py,sha256=t49J4LZ7zZSO7MJ9xJpfVgW3r17QWZig3dGCLvcfSOg,8682
|
|
536
554
|
nuitka/code_generation/EvalCodes.py,sha256=kgc_A5fDJVlonDYmVhpVfX3iw5bRqwZj0EI_1_2LRc8,12983
|
|
537
|
-
nuitka/code_generation/ExceptionCodes.py,sha256=
|
|
538
|
-
nuitka/code_generation/ExpressionCTypeSelectionHelpers.py,sha256=
|
|
555
|
+
nuitka/code_generation/ExceptionCodes.py,sha256=Xb_ruAIZj9-ib2YzFJ-XD7giXOCYZYI1aB-gGuT599k,11075
|
|
556
|
+
nuitka/code_generation/ExpressionCTypeSelectionHelpers.py,sha256=wgzHZscN1VwH8f_vPlyoubwWLZ_bdZVSglPo1d5i8Fo,8074
|
|
539
557
|
nuitka/code_generation/ExpressionCodes.py,sha256=XEngo5BLKaV8I_h0nnFCbjl1mNDeuST1WEhJYuX5BqA,2126
|
|
540
|
-
nuitka/code_generation/FrameCodes.py,sha256=
|
|
541
|
-
nuitka/code_generation/FunctionCodes.py,sha256=
|
|
542
|
-
nuitka/code_generation/GeneratorCodes.py,sha256=
|
|
543
|
-
nuitka/code_generation/GlobalConstants.py,sha256=
|
|
544
|
-
nuitka/code_generation/GlobalsLocalsCodes.py,sha256=
|
|
558
|
+
nuitka/code_generation/FrameCodes.py,sha256=34eXAhbW8vH9V0Mb7ESwUdIEMXrf52sOjc6C4H9JGsE,17625
|
|
559
|
+
nuitka/code_generation/FunctionCodes.py,sha256=bk736g62WEavekNEMLtm2mse_OMQ9o7O0QQxbCIKaUg,28209
|
|
560
|
+
nuitka/code_generation/GeneratorCodes.py,sha256=h0WnO_Kt0hgIysqp9Ye18ijsuAoqaGxQ_atoWwI9eAI,7709
|
|
561
|
+
nuitka/code_generation/GlobalConstants.py,sha256=JR012xz4soJCNFGpkcUwL4p8_464lkmkWo5hoEluBx4,6552
|
|
562
|
+
nuitka/code_generation/GlobalsLocalsCodes.py,sha256=d3CrXychfb7d5ucIqQ1hi--Qqs3Boz_3rCZS4-a_Qek,7015
|
|
545
563
|
nuitka/code_generation/IdCodes.py,sha256=kCjuVPNEXHTZRJ3ztopxfQHH2aTjKG9WxQ3lemCE7Us,1870
|
|
546
564
|
nuitka/code_generation/ImportCodes.py,sha256=WCOqoqb2oNhOiuajFShaCa3QwpZa_OSHuzUO0-nvzVk,14727
|
|
547
565
|
nuitka/code_generation/Indentation.py,sha256=4YXz4LUfWKuZVE4rUDEcSPyAe144t0ouV2BHhhEq4wE,1409
|
|
548
566
|
nuitka/code_generation/IndexCodes.py,sha256=0vK-o0bC7hTZOfRw6lbc5CMxfBHtQxLZCFJyGSgl-MQ,1574
|
|
549
567
|
nuitka/code_generation/InjectCCodes.py,sha256=EqJ6-OCOQ6NhrHmDZKLHqZVymXv-pu0v4qFUZlKTs1k,1066
|
|
550
568
|
nuitka/code_generation/IntegerCodes.py,sha256=mZMWhwv3V-MIeV5qDstO9FtUyN8xLvn4Tyo7eMU_Dts,3567
|
|
551
|
-
nuitka/code_generation/IteratorCodes.py,sha256=
|
|
569
|
+
nuitka/code_generation/IteratorCodes.py,sha256=w5td5JzRfyO3CxwPem9rUiCN7w3snUjoKNbrXS_cgqs,12203
|
|
552
570
|
nuitka/code_generation/JitCodes.py,sha256=Etxu6PYxPyZKLG-RLINtIezoBlGitVrNNKd9mhbXqm0,1620
|
|
553
571
|
nuitka/code_generation/LabelCodes.py,sha256=53aDcH6YJPLbr2CYvRMoSbcCc9qyIXy0aq5oPjEd2cg,2055
|
|
554
|
-
nuitka/code_generation/LineNumberCodes.py,sha256=
|
|
572
|
+
nuitka/code_generation/LineNumberCodes.py,sha256=e4RMFCdQUFRLGpxzkqJE2EkMC3ix6zWs17mTHF-7GRc,2597
|
|
555
573
|
nuitka/code_generation/ListCodes.py,sha256=KLfCN91Owq2pbsnJ_5DImmXBhl2WAJe2kiYR76Y9F0w,15865
|
|
556
574
|
nuitka/code_generation/LoaderCodes.py,sha256=9tAMRrEQGeWRfCKCvLZOAKZ02FgAL3JU5jNt4thb0qE,6753
|
|
557
575
|
nuitka/code_generation/LocalsDictCodes.py,sha256=w6yiRbuVwJE2EmMasWZNYF2dsbv4owDkzn9O7xvHjS0,10792
|
|
558
576
|
nuitka/code_generation/LoopCodes.py,sha256=eGXAoz6aXR-buzVz2MfAdphAkbBW4vur2bDTA2C835Y,3174
|
|
559
577
|
nuitka/code_generation/MatchCodes.py,sha256=UiV2O7O-blu-wE0ZjzhotyAfR8Wa3ciZfRwaO8o2N24,2210
|
|
560
|
-
nuitka/code_generation/ModuleCodes.py,sha256=
|
|
578
|
+
nuitka/code_generation/ModuleCodes.py,sha256=zXaPTHbNV_lUdwEhL7WvnvIXXt0XJyJMs93BaIwXyJk,7926
|
|
561
579
|
nuitka/code_generation/Namify.py,sha256=XoCzDL49VRrhPfaHdFokuSE1LH7dbla9sEbSgZKvyws,8336
|
|
562
580
|
nuitka/code_generation/NetworkxCodes.py,sha256=W_Zd_JOpwg7yJ6NCguhOzsA3dD-F92sU7HvK3zeRw7E,1860
|
|
563
|
-
nuitka/code_generation/OperationCodes.py,sha256=
|
|
564
|
-
nuitka/code_generation/PackageResourceCodes.py,sha256=
|
|
581
|
+
nuitka/code_generation/OperationCodes.py,sha256=yGgcsakzjT4rzI03HBCOCWXvPie1sP71jYF2ZzOJ6OM,13856
|
|
582
|
+
nuitka/code_generation/PackageResourceCodes.py,sha256=4z_01vFJyT0KaPgPQxqBifGivLio-ttjEkvw0JFkNVs,31981
|
|
565
583
|
nuitka/code_generation/PrintCodes.py,sha256=7lKWmNJ9M-7HoakW2Hgpegb9GKgP97nJ3wPWx7MnC6I,3054
|
|
566
584
|
nuitka/code_generation/PythonAPICodes.py,sha256=bGfCWeJwRksEs41K7_1z8fvZAv3wCoFnXwxTJdJO-ME,5670
|
|
567
|
-
nuitka/code_generation/RaisingCodes.py,sha256=
|
|
568
|
-
nuitka/code_generation/Reports.py,sha256=
|
|
569
|
-
nuitka/code_generation/ReturnCodes.py,sha256=
|
|
585
|
+
nuitka/code_generation/RaisingCodes.py,sha256=vJH7Bwrtbj2x5AzGNTtdEUZsrSfzjfiDIdE3w1z7_90,16167
|
|
586
|
+
nuitka/code_generation/Reports.py,sha256=5WpbECxUajqkwXTPbhjClvwMz43xjbp4KZmpkcykxmc,3799
|
|
587
|
+
nuitka/code_generation/ReturnCodes.py,sha256=yCwcxKAdvLD7yryZvRz2OZRNxg-TWxWZfaKMbS_yIlA,4699
|
|
570
588
|
nuitka/code_generation/SetCodes.py,sha256=-py0hOdzyPzWOuWISUXw7TspW_jNw5PyHtb5sAp7lC0,6591
|
|
571
589
|
nuitka/code_generation/SliceCodes.py,sha256=5MFU2bgoTl1kc3PQiI86q4JeK0j2sDwzY4qRxOpSf1E,14029
|
|
572
590
|
nuitka/code_generation/StringCodes.py,sha256=tz6L8Ux4nP00HO9lqYrhzihWzzxGmpXIWFhm0CFAeEY,10087
|
|
573
591
|
nuitka/code_generation/SubscriptCodes.py,sha256=L5W-yKYF-7SMBkQdZi2jUdgpBtRMhIoStYipPgXEVMU,8018
|
|
574
592
|
nuitka/code_generation/TensorflowCodes.py,sha256=LIYk-IeCjL7n3regbrNT3XK8ZNOqYzv3ZkCljSiPAyw,1939
|
|
575
|
-
nuitka/code_generation/TryCodes.py,sha256=
|
|
593
|
+
nuitka/code_generation/TryCodes.py,sha256=NWWOdzU2-nEkmBhnE3h_DHLWDeS_jhxkIAbqD541pZU,10841
|
|
576
594
|
nuitka/code_generation/TupleCodes.py,sha256=_oBtNHVubORSAaznzSWI3lZ2bTSxWKt5jgoWsbB-qQI,3848
|
|
577
|
-
nuitka/code_generation/TypeAliasCodes.py,sha256=
|
|
578
|
-
nuitka/code_generation/VariableCodes.py,sha256=
|
|
579
|
-
nuitka/code_generation/VariableDeclarations.py,sha256=
|
|
580
|
-
nuitka/code_generation/YieldCodes.py,sha256=
|
|
595
|
+
nuitka/code_generation/TypeAliasCodes.py,sha256=PIieX1JQlaqxq7OLylMKW_GkIuk7aS2iSWaUf0Rrd-U,3666
|
|
596
|
+
nuitka/code_generation/VariableCodes.py,sha256=E7LZrpPP2Krf1de5FJwVKrJWInkoJBnhUo-RaT5Nn3A,16774
|
|
597
|
+
nuitka/code_generation/VariableDeclarations.py,sha256=8540fSVkoSwnvgdN8vS5vheWaVGuie3e2OPLEEhx8f4,9036
|
|
598
|
+
nuitka/code_generation/YieldCodes.py,sha256=VbEC_gw5jo6tyKBl2vs_zPIW1TnuLPJLCCnp---nv2A,8117
|
|
581
599
|
nuitka/code_generation/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
582
|
-
nuitka/code_generation/c_types/CTypeBases.py,sha256=
|
|
600
|
+
nuitka/code_generation/c_types/CTypeBases.py,sha256=qoPrjk_6M2cIrr17ZsMSY6Bfg13Vv9XXfpvyjXC8T2o,6248
|
|
583
601
|
nuitka/code_generation/c_types/CTypeBooleans.py,sha256=1U2siJAEnR2qSR-FKWdeqR35ZgD1hTisDiOps1rsOl8,3432
|
|
584
602
|
nuitka/code_generation/c_types/CTypeCFloats.py,sha256=tTYbPC_dOwRWiFlOgAHzQ-ktdlv30CpzHGZIBYIu0Mc,1837
|
|
585
603
|
nuitka/code_generation/c_types/CTypeCLongs.py,sha256=mQfFKfH_Owo5wPc4YcuWRhlnZNaXyMSlIX1DdxFhIkA,1410
|
|
586
|
-
nuitka/code_generation/c_types/CTypeModuleDictVariables.py,sha256=
|
|
587
|
-
nuitka/code_generation/c_types/CTypeNuitkaBooleans.py,sha256=
|
|
588
|
-
nuitka/code_generation/c_types/CTypeNuitkaInts.py,sha256=
|
|
589
|
-
nuitka/code_generation/c_types/CTypeNuitkaVoids.py,sha256=
|
|
590
|
-
nuitka/code_generation/c_types/CTypePyObjectPointers.py,sha256=
|
|
604
|
+
nuitka/code_generation/c_types/CTypeModuleDictVariables.py,sha256=e0Rfo0TYaDssbU165j_P0JeYq5FDg8EgSA9NhsVpsDs,3725
|
|
605
|
+
nuitka/code_generation/c_types/CTypeNuitkaBooleans.py,sha256=MWxvfMQ18pbRv_xF4yFea7lnQ0XH59bPHKuwgXKWbyA,5083
|
|
606
|
+
nuitka/code_generation/c_types/CTypeNuitkaInts.py,sha256=eSxYGDvcPn7S9skPJu5uf7kzTlv1m0eX9Puttf5do9E,6523
|
|
607
|
+
nuitka/code_generation/c_types/CTypeNuitkaVoids.py,sha256=lUT372wbSld58Q2_XS3F3CL9v1XrQBD6FdsK4joVP7c,3988
|
|
608
|
+
nuitka/code_generation/c_types/CTypePyObjectPointers.py,sha256=KTBZlsOrN5B8CJcEAsnuYZUtj4ZFVnO6jDYYmWvglLU,19997
|
|
591
609
|
nuitka/code_generation/c_types/CTypeVoids.py,sha256=oVHEa-7GVjp6bZEycei9j_cSkEt9p4PnkESxF2meA-c,2886
|
|
592
610
|
nuitka/code_generation/c_types/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
593
|
-
nuitka/code_generation/templates/CodeTemplatesAsyncgens.py,sha256=
|
|
594
|
-
nuitka/code_generation/templates/CodeTemplatesConstants.py,sha256=
|
|
595
|
-
nuitka/code_generation/templates/CodeTemplatesCoroutines.py,sha256=
|
|
596
|
-
nuitka/code_generation/templates/CodeTemplatesExceptions.py,sha256=
|
|
597
|
-
nuitka/code_generation/templates/CodeTemplatesFrames.py,sha256=
|
|
598
|
-
nuitka/code_generation/templates/CodeTemplatesFunction.py,sha256=
|
|
599
|
-
nuitka/code_generation/templates/CodeTemplatesGeneratorFunction.py,sha256=
|
|
600
|
-
nuitka/code_generation/templates/CodeTemplatesIterators.py,sha256=
|
|
611
|
+
nuitka/code_generation/templates/CodeTemplatesAsyncgens.py,sha256=qmy-va0H2upvYynKpTqlMDiX_lOvtG3iblSo_q1jPNA,2944
|
|
612
|
+
nuitka/code_generation/templates/CodeTemplatesConstants.py,sha256=_OUqGy4iNQsLZlO7PpBjU24n0OhwOGq4_qffqAhujqc,10471
|
|
613
|
+
nuitka/code_generation/templates/CodeTemplatesCoroutines.py,sha256=We0vFJEixI6uCZB3SJuC2qMGoFqmE9cP_EDFVVXoetU,3036
|
|
614
|
+
nuitka/code_generation/templates/CodeTemplatesExceptions.py,sha256=RJbCK2t_FQ8UwK0ND76jHbZLfUugNL34RGjgNEOD5Uw,2438
|
|
615
|
+
nuitka/code_generation/templates/CodeTemplatesFrames.py,sha256=dpwmL6mQTKCM2pLQImG3qk_wWET7fJrehp0ZJYc-zaE,7015
|
|
616
|
+
nuitka/code_generation/templates/CodeTemplatesFunction.py,sha256=hQqc4KGOu1ExUziRfvMIHFGd9t-GPV1qVMLDaeyOb3Q,3456
|
|
617
|
+
nuitka/code_generation/templates/CodeTemplatesGeneratorFunction.py,sha256=fQzX4t9Deku1wOXCbnr_D_V-9yCaRF9ENY3WR2lp89o,3386
|
|
618
|
+
nuitka/code_generation/templates/CodeTemplatesIterators.py,sha256=pxuPB5eanNMDAmu9O2Z31hodG3QeXf3iQ1ALTlBZXvE,1322
|
|
601
619
|
nuitka/code_generation/templates/CodeTemplatesLoader.py,sha256=W19mYZeYH-i-09A-_lgTomBPSVEr78D0JnTHo8cRm5c,4565
|
|
602
|
-
nuitka/code_generation/templates/CodeTemplatesModules.py,sha256=
|
|
603
|
-
nuitka/code_generation/templates/CodeTemplatesVariables.py,sha256=
|
|
620
|
+
nuitka/code_generation/templates/CodeTemplatesModules.py,sha256=ZcLn4qZcqvTVer9P1Dp76PIbG2x0h23IC3DtBKRaFdo,24451
|
|
621
|
+
nuitka/code_generation/templates/CodeTemplatesVariables.py,sha256=xHuifeMcPej36LlpsaaCVQUDDISR3MC0RHDNp6me7M4,9711
|
|
604
622
|
nuitka/code_generation/templates/TemplateDebugWrapper.py,sha256=aeOpufKeOR3iMo63-FK_akKVwb_aNEo_I9ASB2GLmhs,2507
|
|
605
623
|
nuitka/code_generation/templates/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
606
624
|
nuitka/code_generation/templates_c/CodeTemplateCallsMethodPositional.c.j2,sha256=IGHjZbG7zOBxvtJcONdUGl0K3ac78z-dOVausmXBoV8,11328
|
|
607
|
-
nuitka/code_generation/templates_c/CodeTemplateCallsMixed.c.j2,sha256=
|
|
608
|
-
nuitka/code_generation/templates_c/CodeTemplateCallsPositional.c.j2,sha256=
|
|
625
|
+
nuitka/code_generation/templates_c/CodeTemplateCallsMixed.c.j2,sha256=vo9O6w9rkc7DQ5e3yDBQ4cxMXibLDKYY9DgqerDc06Q,5841
|
|
626
|
+
nuitka/code_generation/templates_c/CodeTemplateCallsPositional.c.j2,sha256=SyIk617CBle0KSaahIYZrwxSr0xTyUpLNghRT_YR5DM,25594
|
|
609
627
|
nuitka/code_generation/templates_c/CodeTemplateCallsPositionalMethodDescr.c.j2,sha256=s8ecWXcMJGaR0MzxVA57CpRoExoJHa1MWJndIw361QM,5478
|
|
610
628
|
nuitka/code_generation/templates_c/CodeTemplateMakeListHinted.c.j2,sha256=LMuXCksYKYkUMtQFQIXgWsGLbaQtd411eGGgoEQo_VE,1786
|
|
611
629
|
nuitka/code_generation/templates_c/CodeTemplateMakeListSmall.c.j2,sha256=wmRgvJovR7wcMi8SKs28Y02zBdzD0K7JCH5NGPxXsGc,1723
|
|
612
630
|
nuitka/code_generation/templates_c/HelperBuiltinMethodOperation.c.j2,sha256=fgZJV0AO6OHstHYHhTB5tNn8j5qKkh3z-CG0JbkJgzI,2706
|
|
613
|
-
nuitka/code_generation/templates_c/HelperDictionaryCopy.c.j2,sha256=
|
|
614
|
-
nuitka/code_generation/templates_c/HelperImportHard.c.j2,sha256=
|
|
615
|
-
nuitka/code_generation/templates_c/HelperLongTools.c.j2,sha256=
|
|
631
|
+
nuitka/code_generation/templates_c/HelperDictionaryCopy.c.j2,sha256=5rTC1ehA3MJx_QdQh0hPWF-_zMy_VWv6spsSh071bQI,11700
|
|
632
|
+
nuitka/code_generation/templates_c/HelperImportHard.c.j2,sha256=6-Y6etGWI0DARqYkTKWdo6vorultjIc10cC6AxxhRuk,1885
|
|
633
|
+
nuitka/code_generation/templates_c/HelperLongTools.c.j2,sha256=IFnaVk2aVTcLxrQ_e1pULHu2BqqE96MRNseiUy4HjyA,2639
|
|
616
634
|
nuitka/code_generation/templates_c/HelperObjectTools.c.j2,sha256=o2IUY-5CvKBQsktuf4yMhhg8GWQaAwP20oPPVrSKFeE,1394
|
|
617
635
|
nuitka/code_generation/templates_c/HelperOperationBinary.c.j2,sha256=0qa5TLR-XXccoOcpgGvaJxms0FCiURAxbK8ggM8TQEU,7064
|
|
636
|
+
nuitka/code_generation/templates_c/HelperOperationBinaryDual.c.j2,sha256=rxSVr6gYVEyCj1XFZz1x-sw-mk4AC37EMBuvemI6TbI,6177
|
|
618
637
|
nuitka/code_generation/templates_c/HelperOperationComparison.c.j2,sha256=MqDylY4Qd_jm2fN0WsiPULy3GDaFTGJgAYYiMJTDP5A,12860
|
|
619
|
-
nuitka/code_generation/templates_c/HelperOperationComparisonBytes.c.j2,sha256=
|
|
620
|
-
nuitka/code_generation/templates_c/
|
|
621
|
-
nuitka/code_generation/templates_c/
|
|
622
|
-
nuitka/code_generation/templates_c/
|
|
623
|
-
nuitka/code_generation/templates_c/
|
|
624
|
-
nuitka/code_generation/templates_c/
|
|
625
|
-
nuitka/code_generation/templates_c/
|
|
626
|
-
nuitka/code_generation/templates_c/
|
|
638
|
+
nuitka/code_generation/templates_c/HelperOperationComparisonBytes.c.j2,sha256=aFDC18wXJ7VpwxJMruDpI9Jzhkp1m6UQJiU44II_0Lo,4244
|
|
639
|
+
nuitka/code_generation/templates_c/HelperOperationComparisonDual.c.j2,sha256=_L10raPYivQSS84COuSPrOv64cGSceR4wygX51n_YLs,5282
|
|
640
|
+
nuitka/code_generation/templates_c/HelperOperationComparisonFloat.c.j2,sha256=60b067B5_SjTa4tHI2j9LF02HsT9s9jMmdrngPMKq-w,1960
|
|
641
|
+
nuitka/code_generation/templates_c/HelperOperationComparisonInt.c.j2,sha256=vojMbRGfLy3zq2yfGFjpDwVicd9Aj3NP1P6Ko8ZgsIg,1990
|
|
642
|
+
nuitka/code_generation/templates_c/HelperOperationComparisonList.c.j2,sha256=WRjfV10ZuXtaP9dNuh0zepvCLbqRMKacVSDiyDyZ4bw,4149
|
|
643
|
+
nuitka/code_generation/templates_c/HelperOperationComparisonLong.c.j2,sha256=WpdUjGgi_r4SGih0ZBxwcO9nbW2EdmWJP3tWVRMeJiU,7286
|
|
644
|
+
nuitka/code_generation/templates_c/HelperOperationComparisonStr.c.j2,sha256=GL3GK9QVlePN1RNLVntcdtCNPTsj_tz8MjrRgu9g_Ho,4248
|
|
645
|
+
nuitka/code_generation/templates_c/HelperOperationComparisonTuple.c.j2,sha256=Vt9jQG-iQKaO5pE3CLrxpYKys084lleQyMsP0LZ_lzc,3776
|
|
646
|
+
nuitka/code_generation/templates_c/HelperOperationComparisonUnicode.c.j2,sha256=MPGv942qh4dSAcUvSNFhJ3qIi8b76Eo-mZx4hzBfjxw,4538
|
|
627
647
|
nuitka/code_generation/templates_c/HelperOperationInplace.c.j2,sha256=QQM7oEDi4bO8-LzESfAoo408x8ruXGGSyk7hP9KVpjc,11773
|
|
628
|
-
nuitka/code_generation/templates_c/HelperSlotsBinary.c.j2,sha256=
|
|
648
|
+
nuitka/code_generation/templates_c/HelperSlotsBinary.c.j2,sha256=nPDC1ZhoGngacd_lTuUnD25XAhDUmPDB3RwOwN4RrgE,19304
|
|
629
649
|
nuitka/code_generation/templates_c/HelperSlotsBytes.c.j2,sha256=5fc9CAdTNwDpxxlf1mZlqQJNEouNyGjFts7vF2RUIvk,2693
|
|
630
650
|
nuitka/code_generation/templates_c/HelperSlotsCommon.c.j2,sha256=R4fpCSy6FwMsNggAcANQsGJaPe-efTxvMLfHLe8fu7E,3485
|
|
631
651
|
nuitka/code_generation/templates_c/HelperSlotsFloat.c.j2,sha256=eKYBRGIiqED-XjOXQ7rpksjkhx4wJQetJpA_H0qLCBw,11336
|
|
632
|
-
nuitka/code_generation/templates_c/HelperSlotsInt.c.j2,sha256=
|
|
652
|
+
nuitka/code_generation/templates_c/HelperSlotsInt.c.j2,sha256=GUfrdUXlYbyoKL4qfOT3XlMHX5kJGJELwQtp88sZD2o,15712
|
|
633
653
|
nuitka/code_generation/templates_c/HelperSlotsList.c.j2,sha256=-T1l72yejglOfMJ2q47uN4KYV6oR35z9CQriTuKUhJU,2934
|
|
634
|
-
nuitka/code_generation/templates_c/HelperSlotsLong.c.j2,sha256=
|
|
654
|
+
nuitka/code_generation/templates_c/HelperSlotsLong.c.j2,sha256=mTDrANJxR2aPUFDVuW5PqTgWzfEXQ43Wyv603HAo_kc,10402
|
|
635
655
|
nuitka/code_generation/templates_c/HelperSlotsSet.c.j2,sha256=SNJ5q0vUYDdmrlqQj9QVnph7QzBaBP7OKa0gxkzIPzM,2407
|
|
636
656
|
nuitka/code_generation/templates_c/HelperSlotsStr.c.j2,sha256=34_qzL0-rybzH440LlY-dejdEDWlhYoHlaKR_YeO_74,2870
|
|
637
657
|
nuitka/code_generation/templates_c/HelperSlotsTuple.c.j2,sha256=kIAdOKfl3WsbOBh924Dp2POUchx8CljJtdTwCMhbW3s,2939
|
|
638
658
|
nuitka/code_generation/templates_c/HelperSlotsUnicode.c.j2,sha256=eTGkWRvc_U7pDkVrBkJPq0xw36IRAnsTnlirOYabBDU,3128
|
|
639
|
-
nuitka/containers/Namedtuples.py,sha256=
|
|
659
|
+
nuitka/containers/Namedtuples.py,sha256=HqnGdZO-iw57o2Dl79pcpSWNOHNsBpU6HpgubtcoKw0,1627
|
|
640
660
|
nuitka/containers/OrderedDicts.py,sha256=TybLc9JTe9ZfMh08T69mQe3kPQMUMQTV4ly6i9npzDM,6553
|
|
641
|
-
nuitka/containers/OrderedSets.py,sha256=
|
|
661
|
+
nuitka/containers/OrderedSets.py,sha256=lQDVplvjVRlgT3rJqdlPNRnMjErhaucUJ7A6IJ1H0YQ,3272
|
|
642
662
|
nuitka/containers/OrderedSetsFallback.py,sha256=yY5XDDdfN0XfBUm4nxhQsY9fToYnbwNb0IHuNkhlHh8,4430
|
|
643
663
|
nuitka/containers/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
644
|
-
nuitka/distutils/Build.py,sha256=
|
|
645
|
-
nuitka/distutils/DistutilCommands.py,sha256=
|
|
664
|
+
nuitka/distutils/Build.py,sha256=gBitgERtkTSydqOzDHiJyDp1H_HUv8cK45k8GXoS-nk,2934
|
|
665
|
+
nuitka/distutils/DistutilCommands.py,sha256=dre2kUpPj2hoADMAluJYYvbcd9iR3Uh0TjmAi2_2GuM,16383
|
|
646
666
|
nuitka/distutils/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
647
|
-
nuitka/finalizations/Finalization.py,sha256=
|
|
648
|
-
nuitka/finalizations/FinalizeMarkups.py,sha256=
|
|
667
|
+
nuitka/finalizations/Finalization.py,sha256=0kZIk9CFY_U6X-PEuyv5auSqqZvKGiyssmDCRM6lXi4,1268
|
|
668
|
+
nuitka/finalizations/FinalizeMarkups.py,sha256=PQi0k9j9r9QGyTooyBIbey2Yg1JpLgnOFEaVANqguxY,5245
|
|
649
669
|
nuitka/finalizations/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
650
|
-
nuitka/freezer/DependsExe.py,sha256=
|
|
670
|
+
nuitka/freezer/DependsExe.py,sha256=XWAm_q6VsHKUq0nV7NVbidyjPC9-W8wt4Q_iaaL1ctI,8408
|
|
651
671
|
nuitka/freezer/DllDependenciesCommon.py,sha256=uZkJ4tpvzZ_vHDud0sOuI-GiqWu0R-Y0w64uqKrmgxE,3268
|
|
652
|
-
nuitka/freezer/DllDependenciesMacOS.py,sha256=
|
|
672
|
+
nuitka/freezer/DllDependenciesMacOS.py,sha256=iICdzQhTwW31qCzr7VZLmItM13NCYp547Y6m8xFk21c,16063
|
|
653
673
|
nuitka/freezer/DllDependenciesPosix.py,sha256=FKzKDuVAViqI00CfADzqgYAJZqB416VaSS-MtApjjJs,7468
|
|
654
|
-
nuitka/freezer/DllDependenciesWin32.py,sha256=
|
|
655
|
-
nuitka/freezer/ImportDetection.py,sha256=
|
|
656
|
-
nuitka/freezer/IncludedDataFiles.py,sha256=
|
|
674
|
+
nuitka/freezer/DllDependenciesWin32.py,sha256=mc36rhnpGvPnwZRNTi5otD_mCowB2EtSQZsint5w0hM,7217
|
|
675
|
+
nuitka/freezer/ImportDetection.py,sha256=Dt1sholb8bHod-rGpFe2TLtdlbvq3Yxjs5G-Cpt8IVU,12342
|
|
676
|
+
nuitka/freezer/IncludedDataFiles.py,sha256=VXN9bxNcios-jsJTPzYDj3DczrjnCJM0Zs16fDC2cWE,20903
|
|
657
677
|
nuitka/freezer/IncludedEntryPoints.py,sha256=6BtJZt-olpVCtw9Jdg1mu2-UsfZcqWgrCSbr5UWxa3I,12162
|
|
658
|
-
nuitka/freezer/Onefile.py,sha256=
|
|
659
|
-
nuitka/freezer/Standalone.py,sha256=
|
|
678
|
+
nuitka/freezer/Onefile.py,sha256=0u9pdzgNeLea9JLEHaEIA8fyyD0ejWov4BP2EJY7kwc,10588
|
|
679
|
+
nuitka/freezer/Standalone.py,sha256=y3cWFqrONh8MqPX-7m-lfO0PuPmIXTTAxsNesokEqJs,15109
|
|
660
680
|
nuitka/freezer/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
661
681
|
nuitka/importing/IgnoreListing.py,sha256=sDR37R5N1zgqA92G0GxcXJf_b-H4eLMeinYpUu1c4Qs,11040
|
|
662
682
|
nuitka/importing/ImportCache.py,sha256=qyg3yHj6lepcy1hgLpZTWL7CUpDvMlsp2XoZxwgTI3Y,2989
|
|
663
683
|
nuitka/importing/ImportResolving.py,sha256=ptblxaLqlDm-YRmi3w2UaCsdtnhtsuxNdaR103UtqfA,7957
|
|
664
|
-
nuitka/importing/Importing.py,sha256=
|
|
684
|
+
nuitka/importing/Importing.py,sha256=EUnxXwpjvP5b34oN17Y5PYGLrKLegZ1KU5_ixxf4Bs0,34594
|
|
665
685
|
nuitka/importing/PreloadedPackages.py,sha256=VHlzoXRgWHu1tOX-06mNa_qXW-llkPSz4ZQZnU1UDo4,4869
|
|
666
|
-
nuitka/importing/Recursion.py,sha256=
|
|
667
|
-
nuitka/importing/StandardLibrary.py,sha256=
|
|
686
|
+
nuitka/importing/Recursion.py,sha256=CxjORsiGkxYxrNX1aCgv-1EchyC07xaNHkM3HQAGiOc,19453
|
|
687
|
+
nuitka/importing/StandardLibrary.py,sha256=cvz_8KftUWE_8AhRzF4KCiPFrt8UTwncoOEBvU2b42k,13002
|
|
668
688
|
nuitka/importing/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
669
|
-
nuitka/nodes/AsyncgenNodes.py,sha256=
|
|
689
|
+
nuitka/nodes/AsyncgenNodes.py,sha256=VeiuoQd02Q9SkKeKz7J6DmBDG_CGOcUAmHxaxK8X-50,3519
|
|
670
690
|
nuitka/nodes/AttributeLookupNodes.py,sha256=77rebSoLbV6LeKBffsE-dn1NQd902UQ4OHnUcng6rIk,4115
|
|
671
691
|
nuitka/nodes/AttributeNodes.py,sha256=BwnciMfxnLkC8a0jv-41NUFlqwTxVzizCuuh7DUBmkQ,13255
|
|
672
692
|
nuitka/nodes/AttributeNodesGenerated.py,sha256=rY86Z1Zr4wI1vFgB5acYCxY7vrVm4gVsQ3321vnzJME,379907
|
|
@@ -680,44 +700,44 @@ nuitka/nodes/BuiltinFormatNodes.py,sha256=aBkjrDU7PC2cncrIZ6k_7yze2HmaX3lYNcqlTC
|
|
|
680
700
|
nuitka/nodes/BuiltinHashNodes.py,sha256=XNpk9gKJaiBd7T0CCQcjsNecj5YYSKeyAudZC_HHeXw,2275
|
|
681
701
|
nuitka/nodes/BuiltinInputNodes.py,sha256=pVsu7ZCgwEC9yMeEdPGoNmt2bA9PuZ5jlSESBpCfLls,1457
|
|
682
702
|
nuitka/nodes/BuiltinIntegerNodes.py,sha256=3ylD9G5EvIYs_Eee1d5rTZt6Jyar_ncyC3uLdMSfhCs,5367
|
|
683
|
-
nuitka/nodes/BuiltinIteratorNodes.py,sha256=
|
|
703
|
+
nuitka/nodes/BuiltinIteratorNodes.py,sha256=pHZp888vRqe9SbQ9MYpIguSFyIJsFXdVV7jXTnwR5_w,12813
|
|
684
704
|
nuitka/nodes/BuiltinLenNodes.py,sha256=MwitzTIMQNIsi6UZPqUFufcn_b1xrDGTRrPlH5K5vww,2029
|
|
685
705
|
nuitka/nodes/BuiltinNextNodes.py,sha256=92XhgEq7XDI_nhR-YXmeNG4GZ_BJCFrdG9fM6MIsSzA,3639
|
|
686
706
|
nuitka/nodes/BuiltinOpenNodes.py,sha256=QNd6NpSPtl0_dMd7aHUyuzLpawjY7ndCG10CoW_YtqI,3981
|
|
687
707
|
nuitka/nodes/BuiltinOperationNodeBasesGenerated.py,sha256=EegzZlQ8K-2LYv8hQvJC81hHgbrrsICuYP3fvPMN7lY,246322
|
|
688
708
|
nuitka/nodes/BuiltinRangeNodes.py,sha256=Hf7hsVm0dIqid-nB_ZuDr90Kt_OBzm2GwM8HWZmVCLM,18648
|
|
689
|
-
nuitka/nodes/BuiltinRefNodes.py,sha256=
|
|
709
|
+
nuitka/nodes/BuiltinRefNodes.py,sha256=csEUUn3B_XbmdDxIjoaCArmZzCT9vhPofyhW_16jmPE,9754
|
|
690
710
|
nuitka/nodes/BuiltinSumNodes.py,sha256=FJK3s2C6-dF4MSRifsZYgpMm_7p_fai0U4kc45nzLKE,3353
|
|
691
711
|
nuitka/nodes/BuiltinTypeNodes.py,sha256=DaiLxfAjIHSBd6dw_4rm0FSU-vlc44sgJZOmeKIBFCM,13576
|
|
692
712
|
nuitka/nodes/BuiltinVarsNodes.py,sha256=jkeTXkYYZhX-OHHqxaW0CTlcESAxnilr60j85-OlgZY,1605
|
|
693
713
|
nuitka/nodes/BytesNodes.py,sha256=JYrm3F11R1fQVRtT8-eV2QJakKuEuRVBxuKvURrF01Y,26146
|
|
694
714
|
nuitka/nodes/CallNodes.py,sha256=S-SvC_IVCoXVLk2HLvdkHoecB03LxyZONLY8-e5S4nc,6511
|
|
695
715
|
nuitka/nodes/Checkers.py,sha256=i4FL0EcahEtf169sHDZkpxzNQIXINpkK6EbTdaQR_Bw,1583
|
|
696
|
-
nuitka/nodes/ChildrenHavingMixins.py,sha256=
|
|
716
|
+
nuitka/nodes/ChildrenHavingMixins.py,sha256=amhN-Af_WOpvpuc087YWRmwra5tTmUGj1stSVZlB-y4,653008
|
|
697
717
|
nuitka/nodes/ClassNodes.py,sha256=48jHymovhNvO0gcB4zdtWk3VkeUpkeHS164PMyQyxsk,9039
|
|
698
718
|
nuitka/nodes/CodeObjectSpecs.py,sha256=1JqYyzYrZZMuwCThrQpwvyD5lfq_bvlq6e94-iuO3fA,6876
|
|
699
719
|
nuitka/nodes/ComparisonNodes.py,sha256=JQEDvKGxrJqesdRnOap4ebKnEuy4ilU3MuPEKglsDjE,21716
|
|
700
|
-
nuitka/nodes/ConditionalNodes.py,sha256=
|
|
720
|
+
nuitka/nodes/ConditionalNodes.py,sha256=ltrEKHuxvFoqa1Fd8L6IrihxW2MXRFc7gA-YGFnngps,30227
|
|
701
721
|
nuitka/nodes/ConstantRefNodes.py,sha256=104XOmvlLPwYjl5OUnJ3hHbIWaQIMfFUwXeZSv4v-d8,47737
|
|
702
722
|
nuitka/nodes/ContainerMakingNodes.py,sha256=0vec76vzLoQE4t7Q6BuCWptWVLq2RcU4dfbFitv102I,12246
|
|
703
723
|
nuitka/nodes/ContainerOperationNodes.py,sha256=-GNRu6pLects-xx4tc8v38xYh4jXHurcZQvk6a9aU6I,2867
|
|
704
|
-
nuitka/nodes/CoroutineNodes.py,sha256=
|
|
724
|
+
nuitka/nodes/CoroutineNodes.py,sha256=FFUTWalFFYj56VyyP8Q6duiEk_SYS9wRV4_OwAsro0o,4463
|
|
705
725
|
nuitka/nodes/CtypesNodes.py,sha256=h-oLM7GYTikgrD62-v_FIl11FnFkrELphRspaf4_SM8,1746
|
|
706
|
-
nuitka/nodes/DictionaryNodes.py,sha256=
|
|
707
|
-
nuitka/nodes/ExceptionNodes.py,sha256=
|
|
726
|
+
nuitka/nodes/DictionaryNodes.py,sha256=QVG7DplQV9zBXa60aOFgjrAhDx3FYuDYFeTiXF3PrN4,51053
|
|
727
|
+
nuitka/nodes/ExceptionNodes.py,sha256=mGMGeQkcSgYjL8pk6cpySH74MN1fLucLJK8H4vOOX9I,10416
|
|
708
728
|
nuitka/nodes/ExecEvalNodes.py,sha256=jjCVPUG53FHr8i46tyPtrlTBbe-gvbitkFpPn40Xu2A,7408
|
|
709
729
|
nuitka/nodes/ExpressionBases.py,sha256=hC1JxpZ4Q3jodvpPl8N2__1k1aezgUf4e1Da02KSav4,45046
|
|
710
|
-
nuitka/nodes/ExpressionBasesGenerated.py,sha256=
|
|
730
|
+
nuitka/nodes/ExpressionBasesGenerated.py,sha256=v8s1epPawXYyk8eTMgzgvYZtYG7iqEOKR7tmH1F47RE,64092
|
|
711
731
|
nuitka/nodes/ExpressionShapeMixins.py,sha256=sgOiMvUCGrjvApWJnl0IsncfGOcILV7udcUigVQGAWM,21311
|
|
712
|
-
nuitka/nodes/FrameNodes.py,sha256=
|
|
732
|
+
nuitka/nodes/FrameNodes.py,sha256=JMfIZZ52D1E7T5NXz0iYzlgH1L-vMxia7CMTdSNuVEg,12291
|
|
713
733
|
nuitka/nodes/FunctionAttributeNodes.py,sha256=Q5BROMSb1ocqf3c858NEo7CsgyAL3N6n7wbaaqZUC0I,3577
|
|
714
|
-
nuitka/nodes/FunctionNodes.py,sha256=
|
|
734
|
+
nuitka/nodes/FunctionNodes.py,sha256=5r5LBapVL_EIeCN0jQ_sEPQ0ADuehyCqstnAa3aTy20,41171
|
|
715
735
|
nuitka/nodes/FutureSpecs.py,sha256=xHamElRhsxmQjmVTZJnu3WDriTBvwlyHF49nP1Y_nZw,6065
|
|
716
|
-
nuitka/nodes/GeneratorNodes.py,sha256=
|
|
736
|
+
nuitka/nodes/GeneratorNodes.py,sha256=gTSnUaMZVyf0z6PBZvNcKFhbt1JzKsKqbQBs0XnKI5s,6137
|
|
717
737
|
nuitka/nodes/GlobalsLocalsNodes.py,sha256=ttjStbCFlPVEJ9GGybvSTVt9ghZqQFWANgE6jJlF8T8,6961
|
|
718
|
-
nuitka/nodes/HardImportNodesGenerated.py,sha256=
|
|
738
|
+
nuitka/nodes/HardImportNodesGenerated.py,sha256=PMnxGtvKxg6T9cFtMj9KM_u4cBz-npGbTX9VBuydwdw,101813
|
|
719
739
|
nuitka/nodes/ImportHardNodes.py,sha256=3DbGKCkkgnS0VVims6nSXCYEuTAkWUWhntT_A22xSSE,5631
|
|
720
|
-
nuitka/nodes/ImportNodes.py,sha256=
|
|
740
|
+
nuitka/nodes/ImportNodes.py,sha256=ZT7rRN2ZqfaN1-krO1q5oJJ59aFOG5a3TO2WFnCg3Eg,48288
|
|
721
741
|
nuitka/nodes/IndicatorMixins.py,sha256=yBNs3ncL27fBu3g-w6YUo-fHwumUTq8wGXKGUNc_MgA,2766
|
|
722
742
|
nuitka/nodes/InjectCNodes.py,sha256=MKAVYpI1aByoHveNJG0TLPNXjOjhgh-OC_fdVrSBmr8,1533
|
|
723
743
|
nuitka/nodes/IterationHandles.py,sha256=VD-oRXuGf_oEJPuqGoETJ3k27AL3SzMO0cCU-Zg45Fc,11519
|
|
@@ -730,41 +750,42 @@ nuitka/nodes/MatchNodes.py,sha256=jisKU-Vs3rGrPTr9k2BZQ_50mvRpMKAjdbqC68l4njU,20
|
|
|
730
750
|
nuitka/nodes/ModuleAttributeNodes.py,sha256=gL5pwzdOr8ZRJZ68LPzVLbwSlOd8LjFpV8zXIy_xvts,6044
|
|
731
751
|
nuitka/nodes/ModuleNodes.py,sha256=fZavBbT27VYbMssxjrX3qYgiaDojDfhekk-nN_DuGiE,33494
|
|
732
752
|
nuitka/nodes/NetworkxNodes.py,sha256=prS8Hr3n0CEca2KqZ-T55GNcn2JGjye1p31iekPvurU,1759
|
|
733
|
-
nuitka/nodes/NodeBases.py,sha256=
|
|
734
|
-
nuitka/nodes/NodeMakingHelpers.py,sha256=
|
|
753
|
+
nuitka/nodes/NodeBases.py,sha256=b7iDcwLdlCgvrGzRaCC1x7I0LbM1_ExcJtlfUvDAu_E,25252
|
|
754
|
+
nuitka/nodes/NodeMakingHelpers.py,sha256=g9QLDem5W0IoGkRnGCVSlj6hxRyAm3W2-6GJhz3C3Ro,15359
|
|
735
755
|
nuitka/nodes/NodeMetaClasses.py,sha256=hQVO4fZvDAu9vq6Cq7UX1-wI_fiBgRMshdz_1A3MudY,5884
|
|
736
756
|
nuitka/nodes/OperatorNodes.py,sha256=gTlSJT-badBDVMPR3xUFZ1ADf6Q9WcEHaMqMFA6bsMo,31948
|
|
737
|
-
nuitka/nodes/OperatorNodesUnary.py,sha256=
|
|
738
|
-
nuitka/nodes/OsSysNodes.py,sha256=
|
|
739
|
-
nuitka/nodes/OutlineNodes.py,sha256=
|
|
757
|
+
nuitka/nodes/OperatorNodesUnary.py,sha256=CRmbuPMEvMw5_nIxA9PS-_DZMP0u1dq-fIZyWXcdctE,13164
|
|
758
|
+
nuitka/nodes/OsSysNodes.py,sha256=ebzj8J64PwaQ6dVrcDcNPQ3yKGBb7HfSrv80kjoifJM,6343
|
|
759
|
+
nuitka/nodes/OutlineNodes.py,sha256=mQJvgtoW6Pvxge502Y2aZ024oI9PAepAWbbpVxhKymE,12490
|
|
740
760
|
nuitka/nodes/PackageMetadataNodes.py,sha256=H_Kv8HYQT76RZDJA3O6dfqeqtxkyponaWi9wtRSckE8,34735
|
|
741
761
|
nuitka/nodes/PackageResourceNodes.py,sha256=MPv3i15kGWY3NOHFK2d-XongeFmsY6d3CBqphGRzwUw,12289
|
|
742
762
|
nuitka/nodes/PrintNodes.py,sha256=Vn5-oQxUb8BNmamFRpBfqKgJ4EPZzrkz_YDo18P1AlM,3440
|
|
743
763
|
nuitka/nodes/ReturnNodes.py,sha256=7E0G7rPWSquF9dEEiTEx9HVTrQfmkp44cJi1TVxIgTo,6806
|
|
744
764
|
nuitka/nodes/SideEffectNodes.py,sha256=x9HimstJZf7Vie-JZ3A9KUffuDV3-VjzqGGqM0Q5XPw,4748
|
|
745
765
|
nuitka/nodes/SliceNodes.py,sha256=xOqP0N3z5GsUhtK6RD0ze_BmHbs7Tci0rzFg5fVekE4,12547
|
|
746
|
-
nuitka/nodes/StatementBasesGenerated.py,sha256=
|
|
747
|
-
nuitka/nodes/StatementNodes.py,sha256=
|
|
766
|
+
nuitka/nodes/StatementBasesGenerated.py,sha256=jhq7R4RshCl6gZxhWBOP_x_fUfKXktrUR5dm2jkPtYY,98567
|
|
767
|
+
nuitka/nodes/StatementNodes.py,sha256=Ml4H_ISN7_CdbaXzAXkmuILWIBwWX0swGL8YNGcurms,9327
|
|
748
768
|
nuitka/nodes/StrNodes.py,sha256=zScT6_FWO3TwYcysnbMuAjwdF_IIjzFNWYqJ48XurV8,28691
|
|
749
769
|
nuitka/nodes/StringConcatenationNodes.py,sha256=EzbhUI9vuwSAjZW7bBTVDgcCwRhKFftei2opWlTH7jU,3538
|
|
750
|
-
nuitka/nodes/SubscriptNodes.py,sha256=
|
|
770
|
+
nuitka/nodes/SubscriptNodes.py,sha256=HnyOz0fl24s8ruz6_8MQxSqMA2VVjNXzihdUb2S5yvc,8445
|
|
751
771
|
nuitka/nodes/TensorflowNodes.py,sha256=9nqpqGh3BQeKW0o0ubwM5jOvK0qklv32ry0TRhhTt8A,1411
|
|
752
772
|
nuitka/nodes/TryNodes.py,sha256=K0ZQih6oGDKMBlZbWHNX-jsZyEUEkw3lakVmpm_aULU,17886
|
|
753
773
|
nuitka/nodes/TypeMatchNodes.py,sha256=6nl888S-7v_A2TGsDa3bAjkNi8IKd9RXwwbSTH7o2Ys,2438
|
|
754
|
-
nuitka/nodes/TypeNodes.py,sha256=
|
|
755
|
-
nuitka/nodes/VariableAssignNodes.py,sha256=
|
|
774
|
+
nuitka/nodes/TypeNodes.py,sha256=T4MBVx8wWtZ5FUnocrEMCjcrjfLjcGnBiWYG-MGAVFA,12500
|
|
775
|
+
nuitka/nodes/VariableAssignNodes.py,sha256=7OlfAVdT4qg3AQr-2tZKE9RHdqwn5N7nn1gL3BZ1tco,42431
|
|
756
776
|
nuitka/nodes/VariableDelNodes.py,sha256=Gzi5kbvL36VQ1M59atKcrbasYWMt6tpjROLfaa9kKTc,10779
|
|
757
777
|
nuitka/nodes/VariableNameNodes.py,sha256=PYVvq_tN9uQkVWjpFt3K6GC6lhUzu4ATLDnh1eAJg90,4607
|
|
758
778
|
nuitka/nodes/VariableRefNodes.py,sha256=rxh1jeO9Cj009Ln_wy63smMVHql3FZ6Vk1msAnSRTZ4,32437
|
|
759
779
|
nuitka/nodes/VariableReleaseNodes.py,sha256=lFO13L9bmucaAsnlsn7h5kIrehVOBdZPPssBWSPPCLQ,4781
|
|
760
780
|
nuitka/nodes/YieldNodes.py,sha256=5IKeM-RjIx-EDUzXJfhJpb7aQ9qFX4tw9O1Rho1JRpI,3937
|
|
761
781
|
nuitka/nodes/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
762
|
-
nuitka/nodes/shapes/BuiltinTypeShapes.py,sha256=
|
|
782
|
+
nuitka/nodes/shapes/BuiltinTypeShapes.py,sha256=vm5Yip-CQg45Sg_mdKARYrkOncLhUJWOw8iXFYUc3_Q,158411
|
|
763
783
|
nuitka/nodes/shapes/ControlFlowDescriptions.py,sha256=N_xKi3qvgY5TGXi96Ou7FmLbnMVxc_YAdBDomADow20,4420
|
|
764
|
-
nuitka/nodes/shapes/
|
|
765
|
-
nuitka/nodes/shapes/
|
|
784
|
+
nuitka/nodes/shapes/IteratorShapes.py,sha256=8s9FZeK0fNbnWahBYYNI6FL5V4-1wCyRMNY_fNsPtzY,2072
|
|
785
|
+
nuitka/nodes/shapes/ShapeMixins.py,sha256=C-4U0gi9CCrbBZomodnWYv-WzUxP4CrXM0Tswes5cdU,5667
|
|
786
|
+
nuitka/nodes/shapes/StandardShapes.py,sha256=_I4OvHmq5DpZ8i-fRZEr0ogyUqqqKaYORm9AiK0BNSs,43007
|
|
766
787
|
nuitka/nodes/shapes/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
767
|
-
nuitka/optimizations/BytecodeDemotion.py,sha256
|
|
788
|
+
nuitka/optimizations/BytecodeDemotion.py,sha256=-Uc17r6FslDtrJadEyqEkkxuUndsyC7t9KJQxtH42SQ,3435
|
|
768
789
|
nuitka/optimizations/FunctionInlining.py,sha256=vglkD0QLVFM76w5KOFIkP3A873X6_tYrfVhEIUKu2RM,3790
|
|
769
790
|
nuitka/optimizations/Graphs.py,sha256=l4OmjKu1pBwvjU7Bj8M2bFrnl-my6P5TgXbafGvq2AE,2177
|
|
770
791
|
nuitka/optimizations/Optimization.py,sha256=HiIuBf36ZtwFgybD2xe-7zc3d-C_jVvx8tsUCa-REFY,11036
|
|
@@ -775,58 +796,59 @@ nuitka/optimizations/ValueTraces.py,sha256=nKK_cR-fq-V6IKyBMxQAuKNEALNTonA7vB3hT
|
|
|
775
796
|
nuitka/optimizations/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
776
797
|
nuitka/pgo/PGO.py,sha256=9oSnX1hXeuECPOujz4vadlGI6-wFYICWjdTBrE04G9c,4932
|
|
777
798
|
nuitka/pgo/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
778
|
-
nuitka/plugins/PluginBase.py,sha256=
|
|
779
|
-
nuitka/plugins/Plugins.py,sha256=
|
|
799
|
+
nuitka/plugins/PluginBase.py,sha256=j7JgkYp9lt7OrrEN8QWi8MT8eb1s1JWa_S9sgl7u2yc,59073
|
|
800
|
+
nuitka/plugins/Plugins.py,sha256=774QqcJJg_3yddo18LzXj0F591qa2s79Pw2yG55YMeQ,64340
|
|
780
801
|
nuitka/plugins/YamlPluginBase.py,sha256=chUVAyth-W19CMBlypK66Jxk_DSZLHYx5hbdP3DBaPk,4215
|
|
781
802
|
nuitka/plugins/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
782
|
-
nuitka/plugins/standard/AntiBloatPlugin.py,sha256=
|
|
803
|
+
nuitka/plugins/standard/AntiBloatPlugin.py,sha256=6kaYPecvHxqJxnniqN-DfptrfgQC1OBgxfNX-kQl850,33942
|
|
783
804
|
nuitka/plugins/standard/ConsiderPyLintAnnotationsPlugin.py,sha256=IigSPpfjml4nm8A6plOj7rSshWTalqj2J0svlFvvi2c,3509
|
|
784
805
|
nuitka/plugins/standard/DataFilesPlugin.py,sha256=is3OmRcIbu_OsHkMM4y4DjS24BZDPRnz1CHdGzF1ZU4,11857
|
|
785
806
|
nuitka/plugins/standard/DelvewheelPlugin.py,sha256=1CJH47bsUm6mPhapRn25fqNMJHIL35uWo7rmxpQRzCE,5211
|
|
786
807
|
nuitka/plugins/standard/DillPlugin.py,sha256=HPWPBqwi6pHtoSndsTub77dq95rKrXpfkEYTpYFLZck,2679
|
|
787
|
-
nuitka/plugins/standard/DllFilesPlugin.py,sha256=
|
|
808
|
+
nuitka/plugins/standard/DllFilesPlugin.py,sha256=xPQQpzvNSLBdjvzNSwv30GDcznVrVj_1l4ewHKLMOcY,19027
|
|
788
809
|
nuitka/plugins/standard/EnumPlugin.py,sha256=pkaKlKdshT9SEXS_V25SYG-NLq-76jhsQLtcFYW8WUw,2095
|
|
789
810
|
nuitka/plugins/standard/EventletPlugin.py,sha256=Wj3YDAior_de5-d7-X7L-aE4-aTk5CX3D_TVsjZwojc,1938
|
|
790
811
|
nuitka/plugins/standard/GeventPlugin.py,sha256=_cKREOuAXiKCYpjH5fcRfRT6lHhfz0JgcYhOzMOiw2Y,1913
|
|
791
812
|
nuitka/plugins/standard/GiPlugin.py,sha256=K65v6ic34flduZZ76zP_oTX6JPmmYHS8g2_kPSEL_4o,4018
|
|
792
813
|
nuitka/plugins/standard/GlfwPlugin.py,sha256=DaWEfMhLdxzd12IqLTi4qb6R2sCAu_aQjI0cfuneZ8c,4854
|
|
793
|
-
nuitka/plugins/standard/ImplicitImports.py,sha256=
|
|
794
|
-
nuitka/plugins/standard/KivyPlugin.py,sha256=
|
|
795
|
-
nuitka/plugins/standard/MatplotlibPlugin.py,sha256=
|
|
796
|
-
nuitka/plugins/standard/MultiprocessingPlugin.py,sha256=
|
|
814
|
+
nuitka/plugins/standard/ImplicitImports.py,sha256=Mo8BTIUCCah6o2U5v6kQaRJBqJCijo8clQSkHoaX9n4,32518
|
|
815
|
+
nuitka/plugins/standard/KivyPlugin.py,sha256=ArwcQ8pkXjk7Ns2YHZ6iA6bUNUS08z2sD3gc7vDo0_M,5084
|
|
816
|
+
nuitka/plugins/standard/MatplotlibPlugin.py,sha256=fJdJNcI-7VBZG7zQyZzwoKV7jYWWLh1KFRLUiFc8G-Q,9419
|
|
817
|
+
nuitka/plugins/standard/MultiprocessingPlugin.py,sha256=3YstpQ6ropHudSrHQA8gn3ZqKfobbS3JrReJx1IbWK8,6650
|
|
797
818
|
nuitka/plugins/standard/NumpyPlugin.py,sha256=mAzhziM_7o-SKxnKtGp7CBhWV86Jvs5OLMbHTQNFJoE,1220
|
|
798
|
-
nuitka/plugins/standard/OptionsNannyPlugin.py,sha256=
|
|
819
|
+
nuitka/plugins/standard/OptionsNannyPlugin.py,sha256=iNgMNAD3qNuYWz4kMvNJPhlkW8plLmZFeelvXJH1QBo,6108
|
|
799
820
|
nuitka/plugins/standard/PbrPlugin.py,sha256=RtLGO3_35qrecTadPVm_IqdBmd0mNylLoMKvXD0MTx0,1940
|
|
800
821
|
nuitka/plugins/standard/PkgResourcesPlugin.py,sha256=tbW41HouryYBNcgQvdY-2P04i-rtcGhzRtYjDhQ_2OY,5144
|
|
822
|
+
nuitka/plugins/standard/PlaywrightPlugin.py,sha256=-0dPuH1Mc2ZSK96BP2yx_bsJsN47ddLwhD5vFkT5C2o,6635
|
|
801
823
|
nuitka/plugins/standard/PmwPlugin.py,sha256=dUB2le_M9e50CSZJ1hvQwzDFM8FNgR2-cx_4mULQwhc,7216
|
|
802
|
-
nuitka/plugins/standard/PySidePyQtPlugin.py,sha256=
|
|
824
|
+
nuitka/plugins/standard/PySidePyQtPlugin.py,sha256=EYUGTHX6zk4UwjNWHyseHCw89daixhxlmmm06QYQ32A,52278
|
|
803
825
|
nuitka/plugins/standard/PywebViewPlugin.py,sha256=CjFFrY0OxYGd845S7xA6Imy46Jk21SZlnwO0NBJKFVQ,3020
|
|
804
826
|
nuitka/plugins/standard/SpacyPlugin.py,sha256=aVek-cDsAMX__qVrJpCsx-zdc1-MSf5TJWfJ0G9ZLFw,5173
|
|
805
827
|
nuitka/plugins/standard/TensorflowPlugin.py,sha256=MPcLVye9_gDiU_lWnhNdYIeKkUGjYzjCjc5UV_XNP3E,1194
|
|
806
|
-
nuitka/plugins/standard/TkinterPlugin.py,sha256=
|
|
828
|
+
nuitka/plugins/standard/TkinterPlugin.py,sha256=B2rARI183lFpFG5xjhQdh5V910p7K4lgDn8kAO-Ey2M,12562
|
|
807
829
|
nuitka/plugins/standard/TorchPlugin.py,sha256=oFyDyz5qfWwRl6JUS-7WAReDF4TazgQQH52xq2J7zj8,1174
|
|
808
|
-
nuitka/plugins/standard/TransformersPlugin.py,sha256=
|
|
830
|
+
nuitka/plugins/standard/TransformersPlugin.py,sha256=H1WPYUcyNMZoGfBUHw4dsKvS-g6IC-ne5metbYZCJXs,4683
|
|
809
831
|
nuitka/plugins/standard/TrioPlugin.py,sha256=fIz_UTQfwBnl6MY4-XI4eKHPPsMeksPWYjnJU10mOb8,1107
|
|
810
832
|
nuitka/plugins/standard/UpxPlugin.py,sha256=1I3WouiEmKQAvTkzhgmJ2FRjDKHC0oH9onENntmFphg,5668
|
|
811
833
|
nuitka/plugins/standard/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
812
|
-
nuitka/plugins/standard/standard.nuitka-package.config.yml,sha256=
|
|
834
|
+
nuitka/plugins/standard/standard.nuitka-package.config.yml,sha256=bvYn57_yLyYUJxEOIKR_dODTN23xFCJKEJGCydQXwQs,273693
|
|
813
835
|
nuitka/plugins/standard/stdlib2.nuitka-package.config.yml,sha256=DRazC20zLXbc71ZMRu9kEA8N4Xe8Iry2sHNsUlbx4FE,2357
|
|
814
|
-
nuitka/plugins/standard/stdlib3.nuitka-package.config.yml,sha256=
|
|
836
|
+
nuitka/plugins/standard/stdlib3.nuitka-package.config.yml,sha256=EeEuyFZpqYb0qXv5xvjB20HFuH3oPyKHHujzIssBHjs,14812
|
|
815
837
|
nuitka/plugins/standard/DillPlugin/DillPlugin.c,sha256=RbyX_UPvVZ00nN2bnIBVFoZ8xSZZ5YFJqVB6Qwg9GSo,1688
|
|
816
838
|
nuitka/plugins/standard/DillPlugin/dill-postLoad.py,sha256=WICFdsvx5ZZKqgfX-GuYWqsuL7avFDqxlFk6UA3qihk,9826
|
|
817
|
-
nuitka/reports/CompilationReportReader.py,sha256=
|
|
839
|
+
nuitka/reports/CompilationReportReader.py,sha256=Z1hyt7fyg0zMGW2-wC_aj7_aAHLY9G5Ej6i-6OhMIjA,2657
|
|
818
840
|
nuitka/reports/LicenseReport.rst.j2,sha256=CPxGcCfBlYXRDHUOOuzVs-bcVj8IQ5kA4GAn5ayRIzc,2089
|
|
819
|
-
nuitka/reports/Reports.py,sha256=
|
|
841
|
+
nuitka/reports/Reports.py,sha256=OXcRKZ0InmRIGgewkbosKJHMGjN67F4nTwMm2g3u9bc,31098
|
|
820
842
|
nuitka/reports/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
821
843
|
nuitka/specs/BuiltinBytesOperationSpecs.py,sha256=IHSeni5fD47sh2mlPOlFRIBU5BYYgB8jRIDATtLse0I,5943
|
|
822
844
|
nuitka/specs/BuiltinDictOperationSpecs.py,sha256=QY7acLh6R9HgWhiAc82qWB1LULJ4DQF5-SdsCIV98wE,2818
|
|
823
845
|
nuitka/specs/BuiltinListOperationSpecs.py,sha256=heT-VlRTzIxDKO9lQcd_2G_QaCJV0PvGQn0VY0K3uIU,2573
|
|
824
|
-
nuitka/specs/BuiltinParameterSpecs.py,sha256=
|
|
846
|
+
nuitka/specs/BuiltinParameterSpecs.py,sha256=JWYkHiy8EJIgSCMY-e0aga2MJQQGF3pVJsgmpE0Ap-8,27253
|
|
825
847
|
nuitka/specs/BuiltinStrOperationSpecs.py,sha256=sNZOb_56WIuL9w0X02--loqaMnnjYxyEJpS9UCA-eRc,6098
|
|
826
848
|
nuitka/specs/BuiltinTypeOperationSpecs.py,sha256=W7AH2DnnZ2211vQqZkPVxYXb3vZ0Ru0cs0tcIdkV0xE,1190
|
|
827
849
|
nuitka/specs/BuiltinUnicodeOperationSpecs.py,sha256=p5a85dVfXss-L6T6RT-TZVDaLEXHGrzM3dcMFdYKlCA,4834
|
|
828
|
-
nuitka/specs/HardImportSpecs.py,sha256=
|
|
829
|
-
nuitka/specs/ParameterSpecs.py,sha256=
|
|
850
|
+
nuitka/specs/HardImportSpecs.py,sha256=eBVT971FQa996zSLqi_uhlqFPnEoxEbaZrOZrjMbtxE,7261
|
|
851
|
+
nuitka/specs/ParameterSpecs.py,sha256=Yi7Ztf3kQBGsHYhJ12oxWffMb5TRqiQwD_gjBrXr8eM,19440
|
|
830
852
|
nuitka/specs/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
831
853
|
nuitka/tools/Basics.py,sha256=eMdww3pftA7TqRA5NGfn-_ys-Uha08rsuzRjrelrB2Y,1631
|
|
832
854
|
nuitka/tools/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
@@ -835,30 +857,30 @@ nuitka/tools/data_composer/DataComposer.py,sha256=1yKd35p08isVCQEzMB1j2EGME-ZXfP
|
|
|
835
857
|
nuitka/tools/data_composer/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
836
858
|
nuitka/tools/data_composer/__main__.py,sha256=8u-EQrjZuptJkJ8xleoHb2nhnM6s6unqMXWtUTYbbko,1338
|
|
837
859
|
nuitka/tools/environments/CreateEnvironment.py,sha256=JeZmUIK_J1UrKGlNnyia8LwSJiAhhO0WNZSiwRq4wmg,2510
|
|
838
|
-
nuitka/tools/environments/Virtualenv.py,sha256=
|
|
860
|
+
nuitka/tools/environments/Virtualenv.py,sha256=1jcoCp0yBEHiI05dTy1HqQrKx-pIPK39CxpYUmRXWWM,4822
|
|
839
861
|
nuitka/tools/environments/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
840
862
|
nuitka/tools/general/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
841
863
|
nuitka/tools/general/dll_report/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
842
|
-
nuitka/tools/general/dll_report/__main__.py,sha256=
|
|
864
|
+
nuitka/tools/general/dll_report/__main__.py,sha256=q804ShhOqDb4A9WAWS1QocRuf4J-gAcXJTnu9In8PFY,2590
|
|
843
865
|
nuitka/tools/general/find_module/FindModuleCode.py,sha256=uv1UTmeBHcY01_rWhs3CXcGoOWSwZgDzSqxDTjC28Y4,4294
|
|
844
866
|
nuitka/tools/general/find_module/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
845
|
-
nuitka/tools/onefile_compressor/OnefileCompressor.py,sha256=
|
|
867
|
+
nuitka/tools/onefile_compressor/OnefileCompressor.py,sha256=vMnHaG7gseTD75Nmm26PcA9G84d08dhvQTDMhiFM0Hw,12982
|
|
846
868
|
nuitka/tools/onefile_compressor/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
847
869
|
nuitka/tools/onefile_compressor/__main__.py,sha256=0CpkELG_fCZcycpayg-QurtU2k4VzNVMi0LbhstfOeg,1343
|
|
848
870
|
nuitka/tools/podman/Podman.py,sha256=a8h7QQXUhM3IrZ2lU6htsO5wjHfod5nWXYVv04HvYbE,1905
|
|
849
871
|
nuitka/tools/podman/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
850
|
-
nuitka/tools/podman/__main__.py,sha256=
|
|
872
|
+
nuitka/tools/podman/__main__.py,sha256=qLTEbRrYtChnD8YLN_Y8lRBwjzPkDrMXXhpCF2gPWE8,11705
|
|
851
873
|
nuitka/tools/profiler/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
852
874
|
nuitka/tools/profiler/__main__.py,sha256=ZsT2pcKTVskyl-kUxVk4stG5AwZElMM-J229iGr6Zr8,2561
|
|
853
875
|
nuitka/tools/scanning/DisplayPackageDLLs.py,sha256=unC5TCdnt0K6qOWME_iVSTkPZR-_S2TZiDhxCcfE7dk,4001
|
|
854
876
|
nuitka/tools/scanning/DisplayPackageData.py,sha256=nMXk-JHXeBjijUVS8U6CAT7rWAXQtv0FhZBAUSUYte4,2314
|
|
855
877
|
nuitka/tools/scanning/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
856
|
-
nuitka/tools/specialize/CTypeDescriptions.py,sha256=
|
|
878
|
+
nuitka/tools/specialize/CTypeDescriptions.py,sha256=B34zRUJ90XdZqlviTV_4Kwk6P4jewCOzjstdmnLuleE,56390
|
|
857
879
|
nuitka/tools/specialize/Common.py,sha256=HFjFyVl1rwOwM9pfyA7Ns76t-v3zkIThgOHhkbb5KnU,7717
|
|
858
|
-
nuitka/tools/specialize/SpecializeC.py,sha256=
|
|
880
|
+
nuitka/tools/specialize/SpecializeC.py,sha256=QpzIXmsBnsEEaoyAwSIneNSJZdQgKOHMOnkVEYOemks,44719
|
|
859
881
|
nuitka/tools/specialize/SpecializePython.py,sha256=KVQzBx7fpeWG_TtgVLgvLL1QOwRriee0X1kwlb4B-U4,37080
|
|
860
882
|
nuitka/tools/specialize/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
861
|
-
nuitka/tools/testing/Common.py,sha256=
|
|
883
|
+
nuitka/tools/testing/Common.py,sha256=e4UzSrTzmUoRdFqEJvTLaYua8bxVrN3nFXdg4euex1k,57992
|
|
862
884
|
nuitka/tools/testing/Constructs.py,sha256=zHyVi7g3Gn3kLKvZW_OGFrskf5OIvCf7nK1GX2sJXy4,1516
|
|
863
885
|
nuitka/tools/testing/OutputComparison.py,sha256=WquPChaxgx1wyuP_9nB0v4_zH1QnEtZEb0k40f5s60k,10129
|
|
864
886
|
nuitka/tools/testing/Pythons.py,sha256=ydchEs7aFNwYq9KT8ni1S3y55IRUSMqGOCriwkuacw4,1310
|
|
@@ -869,37 +891,37 @@ nuitka/tools/testing/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSk
|
|
|
869
891
|
nuitka/tools/testing/check_reference_counts/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
870
892
|
nuitka/tools/testing/check_reference_counts/__main__.py,sha256=QG69C5qsuPsXSGmFCYHyzNr_rPdhSvZasUygRm_SbLI,3094
|
|
871
893
|
nuitka/tools/testing/compare_with_cpython/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
872
|
-
nuitka/tools/testing/compare_with_cpython/__main__.py,sha256=
|
|
894
|
+
nuitka/tools/testing/compare_with_cpython/__main__.py,sha256=8I5P6-rVe8fGXk0obS66D-xfoKaWU08SewYBs7lSbV8,29716
|
|
873
895
|
nuitka/tools/testing/find_sxs_modules/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
874
896
|
nuitka/tools/testing/find_sxs_modules/__main__.py,sha256=jVsvcMDNryxzJQbx4Eb8mkWlcOCtXoYZyFRUof2L1D4,1980
|
|
875
897
|
nuitka/tools/testing/measure_construct_performance/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
876
|
-
nuitka/tools/testing/measure_construct_performance/__main__.py,sha256=
|
|
898
|
+
nuitka/tools/testing/measure_construct_performance/__main__.py,sha256=Deq5eASl-uol5GK6Q7M6pyaES553OrU55VAWRAPzM_E,8554
|
|
877
899
|
nuitka/tools/testing/run_nuitka_tests/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
878
|
-
nuitka/tools/testing/run_nuitka_tests/__main__.py,sha256=
|
|
879
|
-
nuitka/tools/watch/AutoStage.py,sha256=
|
|
900
|
+
nuitka/tools/testing/run_nuitka_tests/__main__.py,sha256=JPdMClG1J0LcYkXlWT5j1ceRQhDZWPNCScDVomYb7ks,38497
|
|
901
|
+
nuitka/tools/watch/AutoStage.py,sha256=ToE0aIAIGMKbs4yS94PXAACXJ71UQA2DOgSGYZ7QKGE,4366
|
|
880
902
|
nuitka/tools/watch/GitHub.py,sha256=KXkJ1eodkZKI2G42XXDWrIn9EsqJxqv9Z1fly32mGfA,3417
|
|
881
903
|
nuitka/tools/watch/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
882
904
|
nuitka/tools/watch/__main__.py,sha256=AoZmYTS3Me-tqDAk2pskp4Yzt3N2jpiWI6fayhRw78g,22842
|
|
883
|
-
nuitka/tree/Building.py,sha256=
|
|
884
|
-
nuitka/tree/ComplexCallHelperFunctions.py,sha256=
|
|
905
|
+
nuitka/tree/Building.py,sha256=rumNgfOo2HBZThiOqiKWc5Gcd1JtWZA7yUrneWbtL8o,49360
|
|
906
|
+
nuitka/tree/ComplexCallHelperFunctions.py,sha256=kHgU0p5CULKvmYrhOpU0IbVTR2cI3SKF9bI8h7V96fY,74846
|
|
885
907
|
nuitka/tree/Extractions.py,sha256=2PYl4fX-OxIoVZ78F1fc4b6gviLjJ_naGeP86jYNFZs,1733
|
|
886
908
|
nuitka/tree/InternalModule.py,sha256=pmLER8UtQikwCOmmvoxfH4f3F9NVurNVM0SmlBneDeY,2844
|
|
887
909
|
nuitka/tree/Operations.py,sha256=5_fbWucqHvrBRmgQc8moNGU90vaEgQ6bEMKreYQLD9A,1544
|
|
888
|
-
nuitka/tree/ReformulationAssertStatements.py,sha256=
|
|
889
|
-
nuitka/tree/ReformulationAssignmentStatements.py,sha256=
|
|
910
|
+
nuitka/tree/ReformulationAssertStatements.py,sha256=q-aicIBLmeX7gGOrxwaMSsPsRQ7GU7RazvZzlvSz_kI,3436
|
|
911
|
+
nuitka/tree/ReformulationAssignmentStatements.py,sha256=rkXrJXOuUlga0t8VU_bMWPyWXdM6zKEflU7EZ9BLC-I,43026
|
|
890
912
|
nuitka/tree/ReformulationBooleanExpressions.py,sha256=CDr39t7MMCapxVOi7K1KMZ15ixfK3yeylVffZpCuHOI,2981
|
|
891
913
|
nuitka/tree/ReformulationCallExpressions.py,sha256=dLZl54nxTaliwwbz1PhUUutUqCMsfDCkl83Qcl9ClBQ,11746
|
|
892
914
|
nuitka/tree/ReformulationClasses.py,sha256=UEkdR3knEgktmWqgJH8FBwrt-lJK6Q3bp8eq9-aDBq0,15166
|
|
893
|
-
nuitka/tree/ReformulationClasses3.py,sha256=
|
|
915
|
+
nuitka/tree/ReformulationClasses3.py,sha256=3vbvcPmG2Gfpbpvecr5_qbDmllDiNK8g3cZs3NrLnxs,41033
|
|
894
916
|
nuitka/tree/ReformulationComparisonExpressions.py,sha256=dB_36HKfWTZLaWA_XgVxfsl-ZiRWa2wylgzF141jOI8,6219
|
|
895
917
|
nuitka/tree/ReformulationContractionExpressions.py,sha256=GM1yZZUo5FYv2LnpR6v74mQ2XCciOz0_NiG8i6uGKBc,21986
|
|
896
|
-
nuitka/tree/ReformulationDictionaryCreation.py,sha256=
|
|
918
|
+
nuitka/tree/ReformulationDictionaryCreation.py,sha256=YbMVCjiS31Va4SBwCRwka7ezJZGv2xNiwE0v4lQU3aY,11095
|
|
897
919
|
nuitka/tree/ReformulationExecStatements.py,sha256=wuDveCkO6KhFfkAcC1ov8A5WSblJBWPvW4o7mW-AYxI,14741
|
|
898
920
|
nuitka/tree/ReformulationForLoopStatements.py,sha256=b31k9ajjY9k8ILLxzHTDyC1qD6L2wYEcnoAQA9ehths,7510
|
|
899
|
-
nuitka/tree/ReformulationFunctionStatements.py,sha256=
|
|
921
|
+
nuitka/tree/ReformulationFunctionStatements.py,sha256=30zUcjDCAaWT8Y_rFFKRCxLxCqw9R08Ilj_N2L-Mvzk,30512
|
|
900
922
|
nuitka/tree/ReformulationImportStatements.py,sha256=2EKSbkcKaEJiGt6iOWAh3JGUuBnHDOZAaZvn1ya24JE,13998
|
|
901
923
|
nuitka/tree/ReformulationLambdaExpressions.py,sha256=iajqhaetw8VV1mIF_DLXRBcRxWOW3N2lbukUl8_j19U,6476
|
|
902
|
-
nuitka/tree/ReformulationMatchStatements.py,sha256=
|
|
924
|
+
nuitka/tree/ReformulationMatchStatements.py,sha256=ZJcp2PotbutMQEq3JuOxmqD2mFBv2JGrhvEkv6wrf40,26339
|
|
903
925
|
nuitka/tree/ReformulationMultidist.py,sha256=JD98EImufQ54wmsGuFMFi-5Lg-v0Ycoc2lAweYvN0w0,2479
|
|
904
926
|
nuitka/tree/ReformulationNamespacePackages.py,sha256=-w4g864pls6xRhBDXz5HBuTRD5LvpMp0gru3omf-OvY,7629
|
|
905
927
|
nuitka/tree/ReformulationPrintStatements.py,sha256=7RohvCAmxYz0ifWaBQRp-QgFfnQdb6wA2Q7GHBRYhxs,4557
|
|
@@ -909,7 +931,7 @@ nuitka/tree/ReformulationTryExceptStatements.py,sha256=86nYgNcE-vRTYuLLTSJIg6m_v
|
|
|
909
931
|
nuitka/tree/ReformulationTryFinallyStatements.py,sha256=p5agDmBt5lXoTejNDrpwbYGNQQ1aWXP7piMRNWUo04E,7449
|
|
910
932
|
nuitka/tree/ReformulationWhileLoopStatements.py,sha256=glgMVBAqPlE9StLkbiztGkxLYy7GE6tfVcrS_sZYLqs,5707
|
|
911
933
|
nuitka/tree/ReformulationWithStatements.py,sha256=TPePwTcl1GaNBH5PAIIqrZrscX-DfZzNT2_0Nyx5q90,14108
|
|
912
|
-
nuitka/tree/ReformulationYieldExpressions.py,sha256=
|
|
934
|
+
nuitka/tree/ReformulationYieldExpressions.py,sha256=YE78CLZoCzxsbJlli1xoHDh9iJg5_WPJIa1JoYjvR6E,4325
|
|
913
935
|
nuitka/tree/SourceHandling.py,sha256=5LoBdrhXeXd90KMCXS3KuJtffpqsjyzulvYqQ_5iovo,13877
|
|
914
936
|
nuitka/tree/SyntaxErrors.py,sha256=tCliyBaI4Obd1-pHVBosvmlNWnCgQWfyGwA5ygIc4nc,3790
|
|
915
937
|
nuitka/tree/TreeHelpers.py,sha256=oIQN6ZWwddhH6AcfINfdLPm_3rnq2M4T0OBOqvrW52s,23423
|
|
@@ -917,38 +939,40 @@ nuitka/tree/VariableClosure.py,sha256=__5uNIE-nZcII9Z7CTDKOyFV_KE1J-eNOuj3WbAVYE
|
|
|
917
939
|
nuitka/tree/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
918
940
|
nuitka/utils/AppDirs.py,sha256=YKbtYu9NXrHPe3rN0kzUQc6WTXf5jM7LneUMCKVWjTY,3140
|
|
919
941
|
nuitka/utils/CStrings.py,sha256=Gv3cmgagoyX780cfferP1GK7gPH8sok5k0wRbbN04JE,4314
|
|
920
|
-
nuitka/utils/CommandLineOptions.py,sha256=
|
|
942
|
+
nuitka/utils/CommandLineOptions.py,sha256=EmlOqsarM5jFMNRW2E1I_-fpvyXxheMd0K8Yn2U514o,7102
|
|
921
943
|
nuitka/utils/Distributions.py,sha256=FLe2NgLElmU1Y2sUP6E3l0EjrKZ6KB3qahq6vFOXEVM,16874
|
|
922
|
-
nuitka/utils/Download.py,sha256=
|
|
923
|
-
nuitka/utils/Execution.py,sha256=
|
|
924
|
-
nuitka/utils/FileOperations.py,sha256=
|
|
925
|
-
nuitka/utils/Hashing.py,sha256=
|
|
944
|
+
nuitka/utils/Download.py,sha256=GEksOtorR6p6xJeKhT5nx0e0XsG_dIGeiVXvOGnYLZg,6724
|
|
945
|
+
nuitka/utils/Execution.py,sha256=IIdspfj5Sv8gr23GjWP9kBgy_F4H3Q8fVPTF1wP2M1A,13792
|
|
946
|
+
nuitka/utils/FileOperations.py,sha256=yT9gGSMPNtTwtUwNxA5l0t6cz53jFOQs7qJe_Ko7LcQ,44206
|
|
947
|
+
nuitka/utils/Hashing.py,sha256=jWaB0x47heOpRJcJ5UvyDM7x-MtuMWqWPYXelDn73A8,3870
|
|
926
948
|
nuitka/utils/Images.py,sha256=HitRj3qvpRXs2hV3V20cavcc2YZZNiyo5KawtcUCMTs,2547
|
|
927
|
-
nuitka/utils/Importing.py,sha256=
|
|
928
|
-
nuitka/utils/
|
|
949
|
+
nuitka/utils/Importing.py,sha256=riETdzHidTfi1_9hmKMbMYKbMdeDKeh0OFJOAKiH1y0,10466
|
|
950
|
+
nuitka/utils/InlineCopies.py,sha256=tX14U0lc1dm5dbVkX4UIHr2WqzI_MrK9wuHtZ_c9jYQ,1774
|
|
951
|
+
nuitka/utils/InstalledPythons.py,sha256=EsY7UKo6DNrbmFgxsMl5eGN3_P4OBRtRFhD1bfE7E0Q,8023
|
|
929
952
|
nuitka/utils/InstanceCounters.py,sha256=FzCHvrlNWQrUMC0fcAWMHmNVSp2_DmFlAmJ-OEvd1mI,2258
|
|
930
953
|
nuitka/utils/Jinja2.py,sha256=IitTCo5DDy4U9z-yV1B_aHxGhTp5zMZYOnDX_9yWtqc,4586
|
|
931
|
-
nuitka/utils/Json.py,sha256=
|
|
954
|
+
nuitka/utils/Json.py,sha256=8kyq_iIVacO-5znk_flIX7UXJMhyLWA5VWPD2PMtnMQ,1296
|
|
932
955
|
nuitka/utils/MacOSApp.py,sha256=inxl2TSFBtM9tCKHcea04v-WOqAQETpdwCulj0G1XPc,4478
|
|
933
956
|
nuitka/utils/MemoryUsage.py,sha256=QeanxAep9aOvtYvhL4viCHrlRqN3i9OcgfmcV0dhq1c,5092
|
|
934
957
|
nuitka/utils/ModuleNames.py,sha256=h6gjzhKTr5u641BACjFckF6xnC-Xx3Xkoa3E6c1Hogs,10025
|
|
958
|
+
nuitka/utils/PackageResources.py,sha256=V2bcBM-baCszGgnOpL8tDPqRjgAOzQ0X4bWmg8H9z9Y,1573
|
|
935
959
|
nuitka/utils/ReExecute.py,sha256=6ALIkqKCt1D39CbAPF9N4seUaRN8hybtJW1DkluK-D4,5121
|
|
936
960
|
nuitka/utils/Rest.py,sha256=zP9jjG6pOSuLKVuZbbj_Wwq1CLZ6hk16wdhHkR_m2oE,1889
|
|
937
|
-
nuitka/utils/SharedLibraries.py,sha256=
|
|
961
|
+
nuitka/utils/SharedLibraries.py,sha256=ztA_EdjVKmeM7ilzC2MuHoGj7-5mCCE9oho0DkYCDgY,25779
|
|
938
962
|
nuitka/utils/Shebang.py,sha256=6NXzMiY9gF16Pvw4FrboM3pmQPgOH5fcEdbt_5mt2Og,3698
|
|
939
|
-
nuitka/utils/Signing.py,sha256=
|
|
963
|
+
nuitka/utils/Signing.py,sha256=dxdHpbb-LzrMNun9W_1umP0ZH-NbabOy1veUm9UCgrw,3958
|
|
940
964
|
nuitka/utils/SlotMetaClasses.py,sha256=lVJokq-0XqDaNHTt9rfE_khZCQSi_BWMfDDwdwudwt8,2084
|
|
941
965
|
nuitka/utils/StaticLibraries.py,sha256=KPSm7zcFljGThkPpAykTfaeqIouBD8kexAKVR2gIiuM,6582
|
|
942
966
|
nuitka/utils/ThreadedExecutor.py,sha256=MeByXD8Rn56zdFHta8gYfn7vAgvv13R1vYsJQUAhEGY,2634
|
|
943
967
|
nuitka/utils/Timing.py,sha256=-2IKhHHg-zoW76ue71SuItJO3NUncDuZABdNO1pllIc,2816
|
|
944
|
-
nuitka/utils/Utils.py,sha256=
|
|
968
|
+
nuitka/utils/Utils.py,sha256=_zO9fk-4ujfdE_7Hk9eZDsQ1VF01lQQlp0w2lDKU0FY,13727
|
|
945
969
|
nuitka/utils/WindowsFileUsage.py,sha256=S6zm_4JQzaSyVmOoLdZDEq--SObR-CHofH4cvs__fsc,10642
|
|
946
970
|
nuitka/utils/WindowsResources.py,sha256=npt3jbcTgh1M5G6jyEv6uFqiZIf84XEea3wXQ_sXGdM,19837
|
|
947
971
|
nuitka/utils/Yaml.py,sha256=osd2K6G4XxSpzzTA-KzYoN8n2OF11zgB-4QxgJOig8M,7206
|
|
948
972
|
nuitka/utils/__init__.py,sha256=TkW50aBd9haxBi-DXHM71oVA31d5oPeL06ZwuBSkPqo,865
|
|
949
|
-
Nuitka_winsvc-2.
|
|
950
|
-
Nuitka_winsvc-2.
|
|
951
|
-
Nuitka_winsvc-2.
|
|
952
|
-
Nuitka_winsvc-2.
|
|
953
|
-
Nuitka_winsvc-2.
|
|
954
|
-
Nuitka_winsvc-2.
|
|
973
|
+
Nuitka_winsvc-2.5.6.dist-info/LICENSE.txt,sha256=ZWq74m8T3pVbRFjCBu74q_4GyW11rCqtYB_1vZ4rQ88,11348
|
|
974
|
+
Nuitka_winsvc-2.5.6.dist-info/METADATA,sha256=Z0f2QiVi-gfiFefqE_JSMrgNKNB6mwpHQqAOnL5Tgi8,4957
|
|
975
|
+
Nuitka_winsvc-2.5.6.dist-info/WHEEL,sha256=nkBcd8Ko0v5sEcSagm2-x_RVrb8gBSkTa8VFFZ0Mr1o,101
|
|
976
|
+
Nuitka_winsvc-2.5.6.dist-info/entry_points.txt,sha256=jeBnijqxZ4U0WpNEdtaogpNMNlv5jw8H7yMOsf2isFc,308
|
|
977
|
+
Nuitka_winsvc-2.5.6.dist-info/top_level.txt,sha256=TRrfKxSYukbo1yzTGfwyH7wVzhDpKlwQsLjhIr15yqY,7
|
|
978
|
+
Nuitka_winsvc-2.5.6.dist-info/RECORD,,
|