Nuitka-winsvc 2.2.3__tar.gz → 2.3.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of Nuitka-winsvc might be problematic. Click here for more details.

Files changed (1823) hide show
  1. nuitka_winsvc-2.3.2/Developer_Manual.rst +4669 -0
  2. nuitka_winsvc-2.3.2/Nuitka_winsvc.egg-info/PKG-INFO +97 -0
  3. nuitka_winsvc-2.3.2/Nuitka_winsvc.egg-info/SOURCES.txt +1618 -0
  4. nuitka_winsvc-2.3.2/PKG-INFO +97 -0
  5. nuitka_winsvc-2.3.2/README.rst +1882 -0
  6. nuitka_winsvc-2.3.2/doc/nuitka-run.1 +888 -0
  7. nuitka_winsvc-2.3.2/doc/nuitka.1 +888 -0
  8. nuitka_winsvc-2.3.2/nuitka/Bytecodes.py +109 -0
  9. nuitka_winsvc-2.3.2/nuitka/HardImportRegistry.py +372 -0
  10. nuitka_winsvc-2.3.2/nuitka/MainControl.py +1161 -0
  11. nuitka_winsvc-2.3.2/nuitka/ModuleRegistry.py +326 -0
  12. nuitka_winsvc-2.3.2/nuitka/OptionParsing.py +2232 -0
  13. nuitka_winsvc-2.3.2/nuitka/Options.py +2522 -0
  14. nuitka_winsvc-2.3.2/nuitka/PostProcessing.py +451 -0
  15. nuitka_winsvc-2.3.2/nuitka/PythonVersions.py +488 -0
  16. nuitka_winsvc-2.3.2/nuitka/Serialization.py +289 -0
  17. nuitka_winsvc-2.3.2/nuitka/Version.py +88 -0
  18. nuitka_winsvc-2.3.2/nuitka/build/Backend.scons +1109 -0
  19. nuitka_winsvc-2.3.2/nuitka/build/CCompilerVersion.scons +273 -0
  20. nuitka_winsvc-2.3.2/nuitka/build/Onefile.scons +560 -0
  21. nuitka_winsvc-2.3.2/nuitka/build/SconsCaching.py +438 -0
  22. nuitka_winsvc-2.3.2/nuitka/build/SconsCompilerSettings.py +1055 -0
  23. nuitka_winsvc-2.3.2/nuitka/build/SconsInterface.py +614 -0
  24. nuitka_winsvc-2.3.2/nuitka/build/SconsUtils.py +862 -0
  25. nuitka_winsvc-2.3.2/nuitka/build/include/nuitka/allocator.h +303 -0
  26. nuitka_winsvc-2.3.2/nuitka/build/include/nuitka/compiled_frame.h +508 -0
  27. nuitka_winsvc-2.3.2/nuitka/build/include/nuitka/compiled_function.h +170 -0
  28. nuitka_winsvc-2.3.2/nuitka/build/include/nuitka/constants.h +239 -0
  29. nuitka_winsvc-2.3.2/nuitka/build/include/nuitka/exception_groups.h +169 -0
  30. nuitka_winsvc-2.3.2/nuitka/build/include/nuitka/exceptions.h +1315 -0
  31. nuitka_winsvc-2.3.2/nuitka/build/include/nuitka/freelists.h +92 -0
  32. nuitka_winsvc-2.3.2/nuitka/build/include/nuitka/helper/dictionaries.h +432 -0
  33. nuitka_winsvc-2.3.2/nuitka/build/include/nuitka/helper/lists.h +94 -0
  34. nuitka_winsvc-2.3.2/nuitka/build/include/nuitka/helper/lists_generated.h +36 -0
  35. nuitka_winsvc-2.3.2/nuitka/build/include/nuitka/helper/sequences.h +33 -0
  36. nuitka_winsvc-2.3.2/nuitka/build/include/nuitka/helper/slices.h +314 -0
  37. nuitka_winsvc-2.3.2/nuitka/build/include/nuitka/helper/subscripts.h +390 -0
  38. nuitka_winsvc-2.3.2/nuitka/build/include/nuitka/helper/tuples.h +175 -0
  39. nuitka_winsvc-2.3.2/nuitka/build/include/nuitka/importing.h +149 -0
  40. nuitka_winsvc-2.3.2/nuitka/build/include/nuitka/prelude.h +584 -0
  41. nuitka_winsvc-2.3.2/nuitka/build/include/nuitka/safe_string_ops.h +52 -0
  42. nuitka_winsvc-2.3.2/nuitka/build/include/nuitka/threading.h +128 -0
  43. nuitka_winsvc-2.3.2/nuitka/build/static_src/CompiledAsyncgenType.c +2209 -0
  44. nuitka_winsvc-2.3.2/nuitka/build/static_src/CompiledCellType.c +297 -0
  45. nuitka_winsvc-2.3.2/nuitka/build/static_src/CompiledCodeHelpers.c +2135 -0
  46. nuitka_winsvc-2.3.2/nuitka/build/static_src/CompiledCoroutineType.c +1950 -0
  47. nuitka_winsvc-2.3.2/nuitka/build/static_src/CompiledFrameType.c +1224 -0
  48. nuitka_winsvc-2.3.2/nuitka/build/static_src/CompiledFunctionType.c +3145 -0
  49. nuitka_winsvc-2.3.2/nuitka/build/static_src/CompiledGeneratorType.c +1832 -0
  50. nuitka_winsvc-2.3.2/nuitka/build/static_src/CompiledGeneratorTypeUncompiledIntegration.c +1730 -0
  51. nuitka_winsvc-2.3.2/nuitka/build/static_src/CompiledMethodType.c +609 -0
  52. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersAllocator.c +703 -0
  53. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersAttributes.c +1261 -0
  54. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersBuiltin.c +881 -0
  55. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersBytes.c +107 -0
  56. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersCalling.c +397 -0
  57. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersCallingGenerated.c +14371 -0
  58. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersComparisonEq.c +12056 -0
  59. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersComparisonEqUtils.c +168 -0
  60. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersComparisonGe.c +11857 -0
  61. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersComparisonGt.c +11841 -0
  62. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersComparisonLe.c +11943 -0
  63. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersComparisonLt.c +11927 -0
  64. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersComparisonNe.c +11965 -0
  65. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersConsole.c +96 -0
  66. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersConstantsBlob.c +1323 -0
  67. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersDeepcopy.c +633 -0
  68. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersDictionaries.c +1459 -0
  69. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersDictionariesGenerated.c +840 -0
  70. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersExceptions.c +324 -0
  71. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersFilesystemPaths.c +1054 -0
  72. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersFloats.c +92 -0
  73. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersImport.c +502 -0
  74. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersJitSources.c +46 -0
  75. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersLists.c +805 -0
  76. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersListsGenerated.c +564 -0
  77. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersMatching.c +132 -0
  78. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationBinaryAdd.c +6259 -0
  79. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationBinaryAddUtils.c +700 -0
  80. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationBinaryBitand.c +2738 -0
  81. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationBinaryBitor.c +2738 -0
  82. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationBinaryBitxor.c +2738 -0
  83. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationBinaryDivmod.c +2400 -0
  84. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationBinaryFloordiv.c +2416 -0
  85. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationBinaryLshift.c +2846 -0
  86. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationBinaryMatmult.c +452 -0
  87. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationBinaryMod.c +6537 -0
  88. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationBinaryMult.c +6428 -0
  89. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationBinaryOlddiv.c +2349 -0
  90. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationBinaryPow.c +2743 -0
  91. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationBinaryRshift.c +2706 -0
  92. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationBinarySub.c +2428 -0
  93. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationBinaryTruediv.c +2409 -0
  94. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationInplaceAdd.c +5059 -0
  95. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationInplaceBitand.c +1826 -0
  96. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationInplaceBitor.c +1826 -0
  97. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationInplaceBitxor.c +1826 -0
  98. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationInplaceFloordiv.c +2600 -0
  99. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationInplaceLshift.c +1594 -0
  100. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationInplaceMatmult.c +602 -0
  101. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationInplaceMod.c +4757 -0
  102. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationInplaceMult.c +4684 -0
  103. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationInplaceOlddiv.c +2548 -0
  104. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationInplacePow.c +2807 -0
  105. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationInplaceRshift.c +1534 -0
  106. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationInplaceSub.c +2741 -0
  107. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersOperationInplaceTruediv.c +2607 -0
  108. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersRaising.c +504 -0
  109. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersSafeStrings.c +150 -0
  110. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersSlices.c +73 -0
  111. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersStrings.c +998 -0
  112. nuitka_winsvc-2.3.2/nuitka/build/static_src/HelpersTuples.c +148 -0
  113. nuitka_winsvc-2.3.2/nuitka/build/static_src/InspectPatcher.c +423 -0
  114. nuitka_winsvc-2.3.2/nuitka/build/static_src/MainProgram.c +1772 -0
  115. nuitka_winsvc-2.3.2/nuitka/build/static_src/MetaPathBasedLoader.c +2047 -0
  116. nuitka_winsvc-2.3.2/nuitka/build/static_src/MetaPathBasedLoaderResourceReaderFiles.c +620 -0
  117. nuitka_winsvc-2.3.2/nuitka/build/static_src/OnefileBootstrap.c +1350 -0
  118. nuitka_winsvc-2.3.2/nuitka/code_generation/CodeGeneration.py +1061 -0
  119. nuitka_winsvc-2.3.2/nuitka/code_generation/ConstantCodes.py +200 -0
  120. nuitka_winsvc-2.3.2/nuitka/code_generation/DictCodes.py +918 -0
  121. nuitka_winsvc-2.3.2/nuitka/code_generation/GlobalConstants.py +241 -0
  122. nuitka_winsvc-2.3.2/nuitka/code_generation/GlobalsLocalsCodes.py +211 -0
  123. nuitka_winsvc-2.3.2/nuitka/code_generation/ListCodes.py +502 -0
  124. nuitka_winsvc-2.3.2/nuitka/code_generation/LocalsDictCodes.py +331 -0
  125. nuitka_winsvc-2.3.2/nuitka/code_generation/ModuleCodes.py +203 -0
  126. nuitka_winsvc-2.3.2/nuitka/code_generation/PackageResourceCodes.py +951 -0
  127. nuitka_winsvc-2.3.2/nuitka/code_generation/SliceCodes.py +465 -0
  128. nuitka_winsvc-2.3.2/nuitka/code_generation/SubscriptCodes.py +263 -0
  129. nuitka_winsvc-2.3.2/nuitka/code_generation/TupleCodes.py +115 -0
  130. nuitka_winsvc-2.3.2/nuitka/code_generation/c_types/CTypePyObjectPointers.py +562 -0
  131. nuitka_winsvc-2.3.2/nuitka/code_generation/templates/CodeTemplatesConstants.py +279 -0
  132. nuitka_winsvc-2.3.2/nuitka/code_generation/templates/CodeTemplatesLoader.py +157 -0
  133. nuitka_winsvc-2.3.2/nuitka/code_generation/templates/CodeTemplatesModules.py +726 -0
  134. nuitka_winsvc-2.3.2/nuitka/code_generation/templates_c/CodeTemplateCallsMixed.c.j2 +143 -0
  135. nuitka_winsvc-2.3.2/nuitka/code_generation/templates_c/CodeTemplateCallsPositional.c.j2 +677 -0
  136. nuitka_winsvc-2.3.2/nuitka/code_generation/templates_c/CodeTemplateCallsPositionalMethodDescr.c.j2 +145 -0
  137. nuitka_winsvc-2.3.2/nuitka/code_generation/templates_c/CodeTemplateMakeListHinted.c.j2 +38 -0
  138. nuitka_winsvc-2.3.2/nuitka/code_generation/templates_c/CodeTemplateMakeListSmall.c.j2 +41 -0
  139. nuitka_winsvc-2.3.2/nuitka/code_generation/templates_c/HelperDictionaryCopy.c.j2 +481 -0
  140. nuitka_winsvc-2.3.2/nuitka/code_generation/templates_c/HelperImportHard.c.j2 +38 -0
  141. nuitka_winsvc-2.3.2/nuitka/code_generation/templates_c/HelperOperationBinary.c.j2 +148 -0
  142. nuitka_winsvc-2.3.2/nuitka/code_generation/templates_c/HelperOperationComparison.c.j2 +352 -0
  143. nuitka_winsvc-2.3.2/nuitka/code_generation/templates_c/HelperOperationComparisonBytes.c.j2 +115 -0
  144. nuitka_winsvc-2.3.2/nuitka/code_generation/templates_c/HelperOperationComparisonFloat.c.j2 +31 -0
  145. nuitka_winsvc-2.3.2/nuitka/code_generation/templates_c/HelperOperationComparisonInt.c.j2 +32 -0
  146. nuitka_winsvc-2.3.2/nuitka/code_generation/templates_c/HelperOperationComparisonList.c.j2 +112 -0
  147. nuitka_winsvc-2.3.2/nuitka/code_generation/templates_c/HelperOperationComparisonLong.c.j2 +157 -0
  148. nuitka_winsvc-2.3.2/nuitka/code_generation/templates_c/HelperOperationComparisonStr.c.j2 +115 -0
  149. nuitka_winsvc-2.3.2/nuitka/code_generation/templates_c/HelperOperationComparisonTuple.c.j2 +99 -0
  150. nuitka_winsvc-2.3.2/nuitka/code_generation/templates_c/HelperOperationComparisonUnicode.c.j2 +115 -0
  151. nuitka_winsvc-2.3.2/nuitka/code_generation/templates_c/HelperOperationInplace.c.j2 +281 -0
  152. nuitka_winsvc-2.3.2/nuitka/code_generation/templates_c/HelperSlotsBinary.c.j2 +420 -0
  153. nuitka_winsvc-2.3.2/nuitka/code_generation/templates_c/HelperSlotsList.c.j2 +59 -0
  154. nuitka_winsvc-2.3.2/nuitka/code_generation/templates_c/HelperSlotsTuple.c.j2 +58 -0
  155. nuitka_winsvc-2.3.2/nuitka/finalizations/FinalizeMarkups.py +140 -0
  156. nuitka_winsvc-2.3.2/nuitka/freezer/DependsExe.py +244 -0
  157. nuitka_winsvc-2.3.2/nuitka/freezer/DllDependenciesMacOS.py +395 -0
  158. nuitka_winsvc-2.3.2/nuitka/freezer/DllDependenciesWin32.py +209 -0
  159. nuitka_winsvc-2.3.2/nuitka/freezer/ImportDetection.py +353 -0
  160. nuitka_winsvc-2.3.2/nuitka/freezer/IncludedDataFiles.py +638 -0
  161. nuitka_winsvc-2.3.2/nuitka/freezer/IncludedEntryPoints.py +361 -0
  162. nuitka_winsvc-2.3.2/nuitka/freezer/Onefile.py +292 -0
  163. nuitka_winsvc-2.3.2/nuitka/freezer/Standalone.py +363 -0
  164. nuitka_winsvc-2.3.2/nuitka/importing/ImportCache.py +95 -0
  165. nuitka_winsvc-2.3.2/nuitka/importing/Importing.py +1055 -0
  166. nuitka_winsvc-2.3.2/nuitka/importing/StandardLibrary.py +431 -0
  167. nuitka_winsvc-2.3.2/nuitka/nodes/ChildrenHavingMixins.py +21171 -0
  168. nuitka_winsvc-2.3.2/nuitka/nodes/ExpressionBasesGenerated.py +1819 -0
  169. nuitka_winsvc-2.3.2/nuitka/nodes/HardImportNodesGenerated.py +3456 -0
  170. nuitka_winsvc-2.3.2/nuitka/nodes/ModuleNodes.py +1102 -0
  171. nuitka_winsvc-2.3.2/nuitka/nodes/OsSysNodes.py +184 -0
  172. nuitka_winsvc-2.3.2/nuitka/nodes/SubscriptNodes.py +245 -0
  173. nuitka_winsvc-2.3.2/nuitka/plugins/PluginBase.py +1758 -0
  174. nuitka_winsvc-2.3.2/nuitka/plugins/standard/DataFilesPlugin.py +302 -0
  175. nuitka_winsvc-2.3.2/nuitka/plugins/standard/DillPlugin/DillPlugin.c +37 -0
  176. nuitka_winsvc-2.3.2/nuitka/plugins/standard/ImplicitImports.py +791 -0
  177. nuitka_winsvc-2.3.2/nuitka/plugins/standard/OptionsNannyPlugin.py +157 -0
  178. nuitka_winsvc-2.3.2/nuitka/plugins/standard/PkgResourcesPlugin.py +156 -0
  179. nuitka_winsvc-2.3.2/nuitka/plugins/standard/PySidePyQtPlugin.py +1479 -0
  180. nuitka_winsvc-2.3.2/nuitka/plugins/standard/standard.nuitka-package.config.yml +7648 -0
  181. nuitka_winsvc-2.3.2/nuitka/plugins/standard/stdlib2.nuitka-package.config.yml +78 -0
  182. nuitka_winsvc-2.3.2/nuitka/plugins/standard/stdlib3.nuitka-package.config.yml +393 -0
  183. nuitka_winsvc-2.3.2/nuitka/specs/HardImportSpecs.py +227 -0
  184. nuitka_winsvc-2.3.2/nuitka/specs/ParameterSpecs.py +615 -0
  185. nuitka_winsvc-2.3.2/nuitka/tools/general/find_module/FindModuleCode.py +114 -0
  186. nuitka_winsvc-2.3.2/nuitka/tools/specialize/CTypeDescriptions.py +1773 -0
  187. nuitka_winsvc-2.3.2/nuitka/tools/testing/Common.py +1958 -0
  188. nuitka_winsvc-2.3.2/nuitka/tools/testing/SearchModes.py +208 -0
  189. nuitka_winsvc-2.3.2/nuitka/tools/testing/run_nuitka_tests/__main__.py +1045 -0
  190. nuitka_winsvc-2.3.2/nuitka/tools/watch/GitHub.py +113 -0
  191. nuitka_winsvc-2.3.2/nuitka/tree/Building.py +1489 -0
  192. nuitka_winsvc-2.3.2/nuitka/tree/ReformulationMatchStatements.py +689 -0
  193. nuitka_winsvc-2.3.2/nuitka/tree/TreeHelpers.py +706 -0
  194. nuitka_winsvc-2.3.2/nuitka/utils/CStrings.py +168 -0
  195. nuitka_winsvc-2.3.2/nuitka/utils/Execution.py +471 -0
  196. nuitka_winsvc-2.3.2/nuitka/utils/FileOperations.py +1485 -0
  197. nuitka_winsvc-2.3.2/nuitka/utils/Importing.py +347 -0
  198. nuitka_winsvc-2.3.2/nuitka/utils/ReExecute.py +148 -0
  199. nuitka_winsvc-2.3.2/nuitka/utils/SharedLibraries.py +855 -0
  200. nuitka_winsvc-2.3.2/nuitka/utils/Yaml.py +247 -0
  201. nuitka_winsvc-2.3.2/setup.py +483 -0
  202. nuitka_winsvc-2.3.2/tests/plugins/parameters/ParametersMain.py +33 -0
  203. nuitka_winsvc-2.3.2/tests/plugins/run_all.py +113 -0
  204. nuitka_winsvc-2.3.2/tests/standalone/PandasUsing.py +44 -0
  205. nuitka_winsvc-2.2.3/Developer_Manual.rst +0 -4663
  206. nuitka_winsvc-2.2.3/Nuitka_winsvc.egg-info/PKG-INFO +0 -96
  207. nuitka_winsvc-2.2.3/Nuitka_winsvc.egg-info/SOURCES.txt +0 -1617
  208. nuitka_winsvc-2.2.3/PKG-INFO +0 -96
  209. nuitka_winsvc-2.2.3/README.rst +0 -1886
  210. nuitka_winsvc-2.2.3/doc/nuitka-run.1 +0 -886
  211. nuitka_winsvc-2.2.3/doc/nuitka.1 +0 -886
  212. nuitka_winsvc-2.2.3/nuitka/Bytecodes.py +0 -107
  213. nuitka_winsvc-2.2.3/nuitka/HardImportRegistry.py +0 -371
  214. nuitka_winsvc-2.2.3/nuitka/MainControl.py +0 -1155
  215. nuitka_winsvc-2.2.3/nuitka/ModuleRegistry.py +0 -311
  216. nuitka_winsvc-2.2.3/nuitka/OptionParsing.py +0 -2210
  217. nuitka_winsvc-2.2.3/nuitka/Options.py +0 -2461
  218. nuitka_winsvc-2.2.3/nuitka/PostProcessing.py +0 -450
  219. nuitka_winsvc-2.2.3/nuitka/PythonVersions.py +0 -487
  220. nuitka_winsvc-2.2.3/nuitka/Serialization.py +0 -272
  221. nuitka_winsvc-2.2.3/nuitka/Version.py +0 -88
  222. nuitka_winsvc-2.2.3/nuitka/build/Backend.scons +0 -1082
  223. nuitka_winsvc-2.2.3/nuitka/build/CCompilerVersion.scons +0 -273
  224. nuitka_winsvc-2.2.3/nuitka/build/Onefile.scons +0 -560
  225. nuitka_winsvc-2.2.3/nuitka/build/SconsCaching.py +0 -437
  226. nuitka_winsvc-2.2.3/nuitka/build/SconsCompilerSettings.py +0 -1043
  227. nuitka_winsvc-2.2.3/nuitka/build/SconsInterface.py +0 -594
  228. nuitka_winsvc-2.2.3/nuitka/build/SconsUtils.py +0 -854
  229. nuitka_winsvc-2.2.3/nuitka/build/include/nuitka/allocator.h +0 -247
  230. nuitka_winsvc-2.2.3/nuitka/build/include/nuitka/compiled_frame.h +0 -473
  231. nuitka_winsvc-2.2.3/nuitka/build/include/nuitka/compiled_function.h +0 -166
  232. nuitka_winsvc-2.2.3/nuitka/build/include/nuitka/constants.h +0 -233
  233. nuitka_winsvc-2.2.3/nuitka/build/include/nuitka/exception_groups.h +0 -169
  234. nuitka_winsvc-2.2.3/nuitka/build/include/nuitka/exceptions.h +0 -1315
  235. nuitka_winsvc-2.2.3/nuitka/build/include/nuitka/freelists.h +0 -81
  236. nuitka_winsvc-2.2.3/nuitka/build/include/nuitka/helper/dictionaries.h +0 -431
  237. nuitka_winsvc-2.2.3/nuitka/build/include/nuitka/helper/lists.h +0 -94
  238. nuitka_winsvc-2.2.3/nuitka/build/include/nuitka/helper/lists_generated.h +0 -36
  239. nuitka_winsvc-2.2.3/nuitka/build/include/nuitka/helper/sequences.h +0 -27
  240. nuitka_winsvc-2.2.3/nuitka/build/include/nuitka/helper/slices.h +0 -308
  241. nuitka_winsvc-2.2.3/nuitka/build/include/nuitka/helper/subscripts.h +0 -573
  242. nuitka_winsvc-2.2.3/nuitka/build/include/nuitka/helper/tuples.h +0 -166
  243. nuitka_winsvc-2.2.3/nuitka/build/include/nuitka/importing.h +0 -144
  244. nuitka_winsvc-2.2.3/nuitka/build/include/nuitka/prelude.h +0 -540
  245. nuitka_winsvc-2.2.3/nuitka/build/include/nuitka/safe_string_ops.h +0 -51
  246. nuitka_winsvc-2.2.3/nuitka/build/include/nuitka/threading.h +0 -125
  247. nuitka_winsvc-2.2.3/nuitka/build/static_src/CompiledAsyncgenType.c +0 -2198
  248. nuitka_winsvc-2.2.3/nuitka/build/static_src/CompiledCellType.c +0 -297
  249. nuitka_winsvc-2.2.3/nuitka/build/static_src/CompiledCodeHelpers.c +0 -2133
  250. nuitka_winsvc-2.2.3/nuitka/build/static_src/CompiledCoroutineType.c +0 -1946
  251. nuitka_winsvc-2.2.3/nuitka/build/static_src/CompiledFrameType.c +0 -1212
  252. nuitka_winsvc-2.2.3/nuitka/build/static_src/CompiledFunctionType.c +0 -3124
  253. nuitka_winsvc-2.2.3/nuitka/build/static_src/CompiledGeneratorType.c +0 -1830
  254. nuitka_winsvc-2.2.3/nuitka/build/static_src/CompiledGeneratorTypeUncompiledIntegration.c +0 -1733
  255. nuitka_winsvc-2.2.3/nuitka/build/static_src/CompiledMethodType.c +0 -611
  256. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersAllocator.c +0 -632
  257. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersAttributes.c +0 -1261
  258. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersBuiltin.c +0 -881
  259. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersBytes.c +0 -107
  260. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersCalling.c +0 -394
  261. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersCallingGenerated.c +0 -13552
  262. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersComparisonEq.c +0 -12056
  263. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersComparisonEqUtils.c +0 -166
  264. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersComparisonGe.c +0 -11857
  265. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersComparisonGt.c +0 -11841
  266. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersComparisonLe.c +0 -11943
  267. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersComparisonLt.c +0 -11927
  268. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersComparisonNe.c +0 -11965
  269. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersConstantsBlob.c +0 -1319
  270. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersDeepcopy.c +0 -631
  271. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersDictionaries.c +0 -1453
  272. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersDictionariesGenerated.c +0 -804
  273. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersExceptions.c +0 -226
  274. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersFilesystemPaths.c +0 -994
  275. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersFloats.c +0 -86
  276. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersImport.c +0 -502
  277. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersJitSources.c +0 -46
  278. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersLists.c +0 -795
  279. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersListsGenerated.c +0 -564
  280. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersMatching.c +0 -105
  281. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationBinaryAdd.c +0 -6232
  282. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationBinaryAddUtils.c +0 -700
  283. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationBinaryBitand.c +0 -2738
  284. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationBinaryBitor.c +0 -2738
  285. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationBinaryBitxor.c +0 -2738
  286. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationBinaryDivmod.c +0 -2400
  287. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationBinaryFloordiv.c +0 -2416
  288. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationBinaryLshift.c +0 -2846
  289. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationBinaryMatmult.c +0 -452
  290. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationBinaryMod.c +0 -6537
  291. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationBinaryMult.c +0 -6422
  292. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationBinaryOlddiv.c +0 -2349
  293. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationBinaryPow.c +0 -2743
  294. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationBinaryRshift.c +0 -2706
  295. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationBinarySub.c +0 -2428
  296. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationBinaryTruediv.c +0 -2409
  297. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationInplaceAdd.c +0 -5041
  298. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationInplaceBitand.c +0 -1826
  299. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationInplaceBitor.c +0 -1826
  300. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationInplaceBitxor.c +0 -1826
  301. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationInplaceFloordiv.c +0 -2600
  302. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationInplaceLshift.c +0 -1594
  303. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationInplaceMatmult.c +0 -602
  304. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationInplaceMod.c +0 -4757
  305. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationInplaceMult.c +0 -4684
  306. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationInplaceOlddiv.c +0 -2548
  307. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationInplacePow.c +0 -2807
  308. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationInplaceRshift.c +0 -1534
  309. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationInplaceSub.c +0 -2741
  310. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersOperationInplaceTruediv.c +0 -2607
  311. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersRaising.c +0 -497
  312. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersSafeStrings.c +0 -140
  313. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersSlices.c +0 -66
  314. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersStrings.c +0 -998
  315. nuitka_winsvc-2.2.3/nuitka/build/static_src/HelpersTuples.c +0 -143
  316. nuitka_winsvc-2.2.3/nuitka/build/static_src/InspectPatcher.c +0 -355
  317. nuitka_winsvc-2.2.3/nuitka/build/static_src/MainProgram.c +0 -1707
  318. nuitka_winsvc-2.2.3/nuitka/build/static_src/MetaPathBasedLoader.c +0 -2011
  319. nuitka_winsvc-2.2.3/nuitka/build/static_src/MetaPathBasedLoaderResourceReaderFiles.c +0 -620
  320. nuitka_winsvc-2.2.3/nuitka/build/static_src/OnefileBootstrap.c +0 -1351
  321. nuitka_winsvc-2.2.3/nuitka/code_generation/CodeGeneration.py +0 -1058
  322. nuitka_winsvc-2.2.3/nuitka/code_generation/ConstantCodes.py +0 -200
  323. nuitka_winsvc-2.2.3/nuitka/code_generation/DictCodes.py +0 -918
  324. nuitka_winsvc-2.2.3/nuitka/code_generation/GlobalConstants.py +0 -236
  325. nuitka_winsvc-2.2.3/nuitka/code_generation/GlobalsLocalsCodes.py +0 -211
  326. nuitka_winsvc-2.2.3/nuitka/code_generation/ListCodes.py +0 -502
  327. nuitka_winsvc-2.2.3/nuitka/code_generation/LocalsDictCodes.py +0 -331
  328. nuitka_winsvc-2.2.3/nuitka/code_generation/ModuleCodes.py +0 -184
  329. nuitka_winsvc-2.2.3/nuitka/code_generation/PackageResourceCodes.py +0 -937
  330. nuitka_winsvc-2.2.3/nuitka/code_generation/SliceCodes.py +0 -465
  331. nuitka_winsvc-2.2.3/nuitka/code_generation/SubscriptCodes.py +0 -271
  332. nuitka_winsvc-2.2.3/nuitka/code_generation/TupleCodes.py +0 -115
  333. nuitka_winsvc-2.2.3/nuitka/code_generation/c_types/CTypePyObjectPointers.py +0 -562
  334. nuitka_winsvc-2.2.3/nuitka/code_generation/templates/CodeTemplatesConstants.py +0 -277
  335. nuitka_winsvc-2.2.3/nuitka/code_generation/templates/CodeTemplatesLoader.py +0 -155
  336. nuitka_winsvc-2.2.3/nuitka/code_generation/templates/CodeTemplatesModules.py +0 -700
  337. nuitka_winsvc-2.2.3/nuitka/code_generation/templates_c/CodeTemplateCallsMixed.c.j2 +0 -143
  338. nuitka_winsvc-2.2.3/nuitka/code_generation/templates_c/CodeTemplateCallsPositional.c.j2 +0 -626
  339. nuitka_winsvc-2.2.3/nuitka/code_generation/templates_c/CodeTemplateCallsPositionalMethodDescr.c.j2 +0 -145
  340. nuitka_winsvc-2.2.3/nuitka/code_generation/templates_c/CodeTemplateMakeListHinted.c.j2 +0 -38
  341. nuitka_winsvc-2.2.3/nuitka/code_generation/templates_c/CodeTemplateMakeListSmall.c.j2 +0 -41
  342. nuitka_winsvc-2.2.3/nuitka/code_generation/templates_c/HelperDictionaryCopy.c.j2 +0 -445
  343. nuitka_winsvc-2.2.3/nuitka/code_generation/templates_c/HelperImportHard.c.j2 +0 -38
  344. nuitka_winsvc-2.2.3/nuitka/code_generation/templates_c/HelperOperationBinary.c.j2 +0 -148
  345. nuitka_winsvc-2.2.3/nuitka/code_generation/templates_c/HelperOperationComparison.c.j2 +0 -352
  346. nuitka_winsvc-2.2.3/nuitka/code_generation/templates_c/HelperOperationComparisonBytes.c.j2 +0 -115
  347. nuitka_winsvc-2.2.3/nuitka/code_generation/templates_c/HelperOperationComparisonFloat.c.j2 +0 -31
  348. nuitka_winsvc-2.2.3/nuitka/code_generation/templates_c/HelperOperationComparisonInt.c.j2 +0 -32
  349. nuitka_winsvc-2.2.3/nuitka/code_generation/templates_c/HelperOperationComparisonList.c.j2 +0 -112
  350. nuitka_winsvc-2.2.3/nuitka/code_generation/templates_c/HelperOperationComparisonLong.c.j2 +0 -157
  351. nuitka_winsvc-2.2.3/nuitka/code_generation/templates_c/HelperOperationComparisonStr.c.j2 +0 -115
  352. nuitka_winsvc-2.2.3/nuitka/code_generation/templates_c/HelperOperationComparisonTuple.c.j2 +0 -99
  353. nuitka_winsvc-2.2.3/nuitka/code_generation/templates_c/HelperOperationComparisonUnicode.c.j2 +0 -115
  354. nuitka_winsvc-2.2.3/nuitka/code_generation/templates_c/HelperOperationInplace.c.j2 +0 -281
  355. nuitka_winsvc-2.2.3/nuitka/code_generation/templates_c/HelperSlotsBinary.c.j2 +0 -420
  356. nuitka_winsvc-2.2.3/nuitka/code_generation/templates_c/HelperSlotsList.c.j2 +0 -56
  357. nuitka_winsvc-2.2.3/nuitka/code_generation/templates_c/HelperSlotsTuple.c.j2 +0 -55
  358. nuitka_winsvc-2.2.3/nuitka/finalizations/FinalizeMarkups.py +0 -158
  359. nuitka_winsvc-2.2.3/nuitka/freezer/DependsExe.py +0 -239
  360. nuitka_winsvc-2.2.3/nuitka/freezer/DllDependenciesMacOS.py +0 -395
  361. nuitka_winsvc-2.2.3/nuitka/freezer/DllDependenciesWin32.py +0 -209
  362. nuitka_winsvc-2.2.3/nuitka/freezer/ImportDetection.py +0 -352
  363. nuitka_winsvc-2.2.3/nuitka/freezer/IncludedDataFiles.py +0 -629
  364. nuitka_winsvc-2.2.3/nuitka/freezer/IncludedEntryPoints.py +0 -345
  365. nuitka_winsvc-2.2.3/nuitka/freezer/Onefile.py +0 -293
  366. nuitka_winsvc-2.2.3/nuitka/freezer/Standalone.py +0 -346
  367. nuitka_winsvc-2.2.3/nuitka/importing/ImportCache.py +0 -94
  368. nuitka_winsvc-2.2.3/nuitka/importing/Importing.py +0 -1042
  369. nuitka_winsvc-2.2.3/nuitka/importing/StandardLibrary.py +0 -427
  370. nuitka_winsvc-2.2.3/nuitka/nodes/ChildrenHavingMixins.py +0 -21169
  371. nuitka_winsvc-2.2.3/nuitka/nodes/ExpressionBasesGenerated.py +0 -1815
  372. nuitka_winsvc-2.2.3/nuitka/nodes/HardImportNodesGenerated.py +0 -3373
  373. nuitka_winsvc-2.2.3/nuitka/nodes/ModuleNodes.py +0 -1094
  374. nuitka_winsvc-2.2.3/nuitka/nodes/OsSysNodes.py +0 -168
  375. nuitka_winsvc-2.2.3/nuitka/nodes/SubscriptNodes.py +0 -245
  376. nuitka_winsvc-2.2.3/nuitka/plugins/PluginBase.py +0 -1756
  377. nuitka_winsvc-2.2.3/nuitka/plugins/standard/DataFilesPlugin.py +0 -281
  378. nuitka_winsvc-2.2.3/nuitka/plugins/standard/DillPlugin/DillPlugin.c +0 -37
  379. nuitka_winsvc-2.2.3/nuitka/plugins/standard/ImplicitImports.py +0 -788
  380. nuitka_winsvc-2.2.3/nuitka/plugins/standard/OptionsNannyPlugin.py +0 -189
  381. nuitka_winsvc-2.2.3/nuitka/plugins/standard/PkgResourcesPlugin.py +0 -150
  382. nuitka_winsvc-2.2.3/nuitka/plugins/standard/PySidePyQtPlugin.py +0 -1476
  383. nuitka_winsvc-2.2.3/nuitka/plugins/standard/standard.nuitka-package.config.yml +0 -7633
  384. nuitka_winsvc-2.2.3/nuitka/plugins/standard/stdlib2.nuitka-package.config.yml +0 -78
  385. nuitka_winsvc-2.2.3/nuitka/plugins/standard/stdlib3.nuitka-package.config.yml +0 -388
  386. nuitka_winsvc-2.2.3/nuitka/specs/HardImportSpecs.py +0 -224
  387. nuitka_winsvc-2.2.3/nuitka/specs/ParameterSpecs.py +0 -604
  388. nuitka_winsvc-2.2.3/nuitka/tools/general/find_module/FindModuleCode.py +0 -113
  389. nuitka_winsvc-2.2.3/nuitka/tools/specialize/CTypeDescriptions.py +0 -1771
  390. nuitka_winsvc-2.2.3/nuitka/tools/testing/Common.py +0 -1951
  391. nuitka_winsvc-2.2.3/nuitka/tools/testing/SearchModes.py +0 -204
  392. nuitka_winsvc-2.2.3/nuitka/tools/testing/run_nuitka_tests/__main__.py +0 -1008
  393. nuitka_winsvc-2.2.3/nuitka/tools/watch/GitHub.py +0 -119
  394. nuitka_winsvc-2.2.3/nuitka/tree/Building.py +0 -1486
  395. nuitka_winsvc-2.2.3/nuitka/tree/ReformulationMatchStatements.py +0 -652
  396. nuitka_winsvc-2.2.3/nuitka/tree/TreeHelpers.py +0 -698
  397. nuitka_winsvc-2.2.3/nuitka/utils/CStrings.py +0 -161
  398. nuitka_winsvc-2.2.3/nuitka/utils/Execution.py +0 -462
  399. nuitka_winsvc-2.2.3/nuitka/utils/FileOperations.py +0 -1477
  400. nuitka_winsvc-2.2.3/nuitka/utils/Importing.py +0 -323
  401. nuitka_winsvc-2.2.3/nuitka/utils/ReExecute.py +0 -139
  402. nuitka_winsvc-2.2.3/nuitka/utils/SharedLibraries.py +0 -830
  403. nuitka_winsvc-2.2.3/nuitka/utils/Yaml.py +0 -239
  404. nuitka_winsvc-2.2.3/setup.py +0 -482
  405. nuitka_winsvc-2.2.3/tests/plugins/parameters/ParametersMain.py +0 -32
  406. nuitka_winsvc-2.2.3/tests/plugins/run_all.py +0 -120
  407. nuitka_winsvc-2.2.3/tests/standalone/PandasUsing.py +0 -43
  408. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/Changelog.rst +0 -0
  409. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/LICENSE.txt +0 -0
  410. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/MANIFEST.in +0 -0
  411. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/Nuitka_winsvc.egg-info/dependency_links.txt +0 -0
  412. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/Nuitka_winsvc.egg-info/entry_points.txt +0 -0
  413. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/Nuitka_winsvc.egg-info/not-zip-safe +0 -0
  414. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/Nuitka_winsvc.egg-info/requires.txt +0 -0
  415. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/Nuitka_winsvc.egg-info/top_level.txt +0 -0
  416. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/README.md +0 -0
  417. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/bin/autoformat-nuitka-source +0 -0
  418. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/bin/check-nuitka-with-pylint +0 -0
  419. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/bin/compare_with_cpython +0 -0
  420. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/bin/compare_with_xml +0 -0
  421. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/bin/measure-construct-performance +0 -0
  422. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/bin/nuitka +0 -0
  423. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/bin/nuitka-run +0 -0
  424. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/doc/Logo/Nuitka-Logo-Horizontal.svg +0 -0
  425. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/doc/Logo/Nuitka-Logo-Symbol.svg +0 -0
  426. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/doc/Logo/Nuitka-Logo-Vertical.svg +0 -0
  427. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/doc/images/Nuitka-Logo-Horizontal.png +0 -0
  428. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/doc/images/Nuitka-Logo-Symbol.png +0 -0
  429. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/doc/images/Nuitka-Logo-Vertical.png +0 -0
  430. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/lib/hints.py +0 -0
  431. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/misc/nuitka-run.bat +0 -0
  432. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/misc/nuitka.bat +0 -0
  433. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/Builtins.py +0 -0
  434. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/BytecodeCaching.py +0 -0
  435. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/CacheCleanup.py +0 -0
  436. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/Constants.py +0 -0
  437. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/Errors.py +0 -0
  438. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/OutputDirectories.py +0 -0
  439. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/Progress.py +0 -0
  440. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/PythonFlavors.py +0 -0
  441. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/PythonOperators.py +0 -0
  442. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/SourceCodeReferences.py +0 -0
  443. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/Tracing.py +0 -0
  444. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/TreeXML.py +0 -0
  445. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/Variables.py +0 -0
  446. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/__init__.py +0 -0
  447. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/__main__.py +0 -0
  448. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/__past__.py +0 -0
  449. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/DataComposerInterface.py +0 -0
  450. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/SconsHacks.py +0 -0
  451. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/SconsProgress.py +0 -0
  452. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/SconsSpawn.py +0 -0
  453. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/__init__.py +0 -0
  454. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/builtins.h +0 -0
  455. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/calling.h +0 -0
  456. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/checkers.h +0 -0
  457. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/checksum_tools.h +0 -0
  458. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/compiled_asyncgen.h +0 -0
  459. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/compiled_cell.h +0 -0
  460. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/compiled_coroutine.h +0 -0
  461. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/compiled_generator.h +0 -0
  462. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/compiled_method.h +0 -0
  463. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/constants_blob.h +0 -0
  464. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/environment_variables.h +0 -0
  465. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/environment_variables_system.h +0 -0
  466. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/filesystem_paths.h +0 -0
  467. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/hedley.h +0 -0
  468. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/attributes.h +0 -0
  469. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/boolean.h +0 -0
  470. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/bytearrays.h +0 -0
  471. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/bytes.h +0 -0
  472. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/calling_generated.h +0 -0
  473. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/comparisons_eq.h +0 -0
  474. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/comparisons_ge.h +0 -0
  475. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/comparisons_gt.h +0 -0
  476. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/comparisons_le.h +0 -0
  477. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/comparisons_lt.h +0 -0
  478. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/comparisons_ne.h +0 -0
  479. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/complex.h +0 -0
  480. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/floats.h +0 -0
  481. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/import_hard.h +0 -0
  482. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/indexes.h +0 -0
  483. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/ints.h +0 -0
  484. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/iterators.h +0 -0
  485. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/mappings.h +0 -0
  486. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations.h +0 -0
  487. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_binary_add.h +0 -0
  488. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_binary_bitand.h +0 -0
  489. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_binary_bitor.h +0 -0
  490. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_binary_bitxor.h +0 -0
  491. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_binary_divmod.h +0 -0
  492. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_binary_floordiv.h +0 -0
  493. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_binary_lshift.h +0 -0
  494. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_binary_matmult.h +0 -0
  495. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_binary_mod.h +0 -0
  496. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_binary_mult.h +0 -0
  497. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_binary_olddiv.h +0 -0
  498. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_binary_pow.h +0 -0
  499. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_binary_rshift.h +0 -0
  500. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_binary_sub.h +0 -0
  501. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_binary_truediv.h +0 -0
  502. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_builtin_types.h +0 -0
  503. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_inplace_add.h +0 -0
  504. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_inplace_bitand.h +0 -0
  505. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_inplace_bitor.h +0 -0
  506. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_inplace_bitxor.h +0 -0
  507. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_inplace_floordiv.h +0 -0
  508. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_inplace_lshift.h +0 -0
  509. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_inplace_matmult.h +0 -0
  510. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_inplace_mod.h +0 -0
  511. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_inplace_mult.h +0 -0
  512. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_inplace_olddiv.h +0 -0
  513. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_inplace_pow.h +0 -0
  514. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_inplace_rshift.h +0 -0
  515. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_inplace_sub.h +0 -0
  516. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/operations_inplace_truediv.h +0 -0
  517. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/raising.h +0 -0
  518. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/rangeobjects.h +0 -0
  519. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/richcomparisons.h +0 -0
  520. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/sets.h +0 -0
  521. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helper/strings.h +0 -0
  522. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/helpers.h +0 -0
  523. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/incbin.h +0 -0
  524. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/jit_sources.h +0 -0
  525. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/printing.h +0 -0
  526. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/python_pgo.h +0 -0
  527. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/tracing.h +0 -0
  528. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/type_aliases.h +0 -0
  529. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/include/nuitka/unfreezing.h +0 -0
  530. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/appdirs/LICENSE.txt +0 -0
  531. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/appdirs/appdirs.py +0 -0
  532. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/atomicwrites/LICENSE +0 -0
  533. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/atomicwrites/atomicwrites.py +0 -0
  534. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/bin/scons.py +0 -0
  535. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/clcache/clcache/LICENSE +0 -0
  536. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/clcache/clcache/__init__.py +0 -0
  537. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/clcache/clcache/caching.py +0 -0
  538. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/colorama/LICENSE.txt +0 -0
  539. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/colorama/colorama/__init__.py +0 -0
  540. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/colorama/colorama/ansi.py +0 -0
  541. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/colorama/colorama/ansitowin32.py +0 -0
  542. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/colorama/colorama/initialise.py +0 -0
  543. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/colorama/colorama/win32.py +0 -0
  544. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/colorama/colorama/winterm.py +0 -0
  545. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/glob2/LICENSE +0 -0
  546. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/glob2/glob2/__init__.py +0 -0
  547. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/glob2/glob2/compat.py +0 -0
  548. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/glob2/glob2/fnmatch.py +0 -0
  549. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/glob2/glob2/impl.py +0 -0
  550. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/LICENSE.rst +0 -0
  551. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/README.rst +0 -0
  552. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/jinja2/__init__.py +0 -0
  553. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/jinja2/_compat.py +0 -0
  554. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/jinja2/_identifier.py +0 -0
  555. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/jinja2/bccache.py +0 -0
  556. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/jinja2/compiler.py +0 -0
  557. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/jinja2/constants.py +0 -0
  558. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/jinja2/debug.py +0 -0
  559. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/jinja2/defaults.py +0 -0
  560. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/jinja2/environment.py +0 -0
  561. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/jinja2/exceptions.py +0 -0
  562. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/jinja2/ext.py +0 -0
  563. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/jinja2/filters.py +0 -0
  564. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/jinja2/idtracking.py +0 -0
  565. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/jinja2/lexer.py +0 -0
  566. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/jinja2/loaders.py +0 -0
  567. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/jinja2/meta.py +0 -0
  568. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/jinja2/nativetypes.py +0 -0
  569. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/jinja2/nodes.py +0 -0
  570. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/jinja2/optimizer.py +0 -0
  571. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/jinja2/parser.py +0 -0
  572. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/jinja2/runtime.py +0 -0
  573. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/jinja2/sandbox.py +0 -0
  574. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/jinja2/tests.py +0 -0
  575. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/jinja2/utils.py +0 -0
  576. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2/jinja2/visitor.py +0 -0
  577. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/LICENSE.rst +0 -0
  578. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/README.rst +0 -0
  579. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/jinja2/__init__.py +0 -0
  580. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/jinja2/_compat.py +0 -0
  581. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/jinja2/_identifier.py +0 -0
  582. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/jinja2/bccache.py +0 -0
  583. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/jinja2/compiler.py +0 -0
  584. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/jinja2/constants.py +0 -0
  585. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/jinja2/debug.py +0 -0
  586. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/jinja2/defaults.py +0 -0
  587. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/jinja2/environment.py +0 -0
  588. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/jinja2/exceptions.py +0 -0
  589. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/jinja2/ext.py +0 -0
  590. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/jinja2/filters.py +0 -0
  591. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/jinja2/idtracking.py +0 -0
  592. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/jinja2/lexer.py +0 -0
  593. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/jinja2/loaders.py +0 -0
  594. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/jinja2/meta.py +0 -0
  595. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/jinja2/nativetypes.py +0 -0
  596. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/jinja2/nodes.py +0 -0
  597. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/jinja2/optimizer.py +0 -0
  598. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/jinja2/parser.py +0 -0
  599. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/jinja2/runtime.py +0 -0
  600. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/jinja2/sandbox.py +0 -0
  601. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/jinja2/tests.py +0 -0
  602. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/jinja2/utils.py +0 -0
  603. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/jinja2_35/jinja2/visitor.py +0 -0
  604. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Action.py +0 -0
  605. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Builder.py +0 -0
  606. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/CacheDir.py +0 -0
  607. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Conftest.py +0 -0
  608. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Debug.py +0 -0
  609. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Defaults.py +0 -0
  610. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Environment.py +0 -0
  611. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Errors.py +0 -0
  612. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Executor.py +0 -0
  613. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Job.py +0 -0
  614. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Memoize.py +0 -0
  615. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Node/Alias.py +0 -0
  616. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Node/FS.py +0 -0
  617. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Node/Python.py +0 -0
  618. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Node/__init__.py +0 -0
  619. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Options/BoolOption.py +0 -0
  620. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Options/EnumOption.py +0 -0
  621. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Options/ListOption.py +0 -0
  622. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Options/PackageOption.py +0 -0
  623. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Options/PathOption.py +0 -0
  624. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Options/__init__.py +0 -0
  625. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/PathList.py +0 -0
  626. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Platform/__init__.py +0 -0
  627. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Platform/aix.py +0 -0
  628. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Platform/cygwin.py +0 -0
  629. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Platform/darwin.py +0 -0
  630. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Platform/hpux.py +0 -0
  631. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Platform/irix.py +0 -0
  632. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Platform/os2.py +0 -0
  633. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Platform/posix.py +0 -0
  634. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Platform/sunos.py +0 -0
  635. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Platform/win32.py +0 -0
  636. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/SConf.py +0 -0
  637. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/SConsign.py +0 -0
  638. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Scanner/C.py +0 -0
  639. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Scanner/Dir.py +0 -0
  640. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Scanner/Prog.py +0 -0
  641. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Scanner/RC.py +0 -0
  642. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Scanner/__init__.py +0 -0
  643. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Script/Interactive.py +0 -0
  644. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Script/Main.py +0 -0
  645. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Script/SConsOptions.py +0 -0
  646. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Script/SConscript.py +0 -0
  647. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Script/__init__.py +0 -0
  648. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Sig.py +0 -0
  649. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Subst.py +0 -0
  650. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Taskmaster.py +0 -0
  651. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/386asm.py +0 -0
  652. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/BitKeeper.py +0 -0
  653. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/CVS.py +0 -0
  654. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/GettextCommon.py +0 -0
  655. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/MSCommon/__init__.py +0 -0
  656. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/MSCommon/arch.py +0 -0
  657. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/MSCommon/common.py +0 -0
  658. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/MSCommon/netframework.py +0 -0
  659. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/MSCommon/sdk.py +0 -0
  660. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/MSCommon/vc.py +0 -0
  661. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/MSCommon/vs.py +0 -0
  662. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/Perforce.py +0 -0
  663. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/PharLapCommon.py +0 -0
  664. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/RCS.py +0 -0
  665. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/SCCS.py +0 -0
  666. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/Subversion.py +0 -0
  667. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/__init__.py +0 -0
  668. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/aixc++.py +0 -0
  669. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/aixcc.py +0 -0
  670. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/aixf77.py +0 -0
  671. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/aixlink.py +0 -0
  672. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/applelink.py +0 -0
  673. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/ar.py +0 -0
  674. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/as.py +0 -0
  675. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/bcc32.py +0 -0
  676. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/c++.py +0 -0
  677. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/cc.py +0 -0
  678. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/cyglink.py +0 -0
  679. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/default.py +0 -0
  680. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/dmd.py +0 -0
  681. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/docbook/__init__.py +0 -0
  682. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/filesystem.py +0 -0
  683. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/g++.py +0 -0
  684. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/g77.py +0 -0
  685. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/gas.py +0 -0
  686. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/gcc.py +0 -0
  687. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/gdc.py +0 -0
  688. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/gettext.py +0 -0
  689. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/gfortran.py +0 -0
  690. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/gnulink.py +0 -0
  691. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/hpc++.py +0 -0
  692. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/hpcc.py +0 -0
  693. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/hplink.py +0 -0
  694. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/icc.py +0 -0
  695. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/icl.py +0 -0
  696. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/ilink.py +0 -0
  697. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/ilink32.py +0 -0
  698. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/install.py +0 -0
  699. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/intelc.py +0 -0
  700. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/lex.py +0 -0
  701. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/link.py +0 -0
  702. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/linkloc.py +0 -0
  703. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/m4.py +0 -0
  704. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/masm.py +0 -0
  705. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/mingw.py +0 -0
  706. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/msgfmt.py +0 -0
  707. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/msginit.py +0 -0
  708. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/msgmerge.py +0 -0
  709. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/mslib.py +0 -0
  710. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/mslink.py +0 -0
  711. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/mssdk.py +0 -0
  712. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/msvc.py +0 -0
  713. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/msvs.py +0 -0
  714. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/mwcc.py +0 -0
  715. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/mwld.py +0 -0
  716. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/nasm.py +0 -0
  717. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/rmic.py +0 -0
  718. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/rpcgen.py +0 -0
  719. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/sgiar.py +0 -0
  720. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/sgic++.py +0 -0
  721. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/sgicc.py +0 -0
  722. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/sgilink.py +0 -0
  723. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/sunar.py +0 -0
  724. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/sunc++.py +0 -0
  725. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/suncc.py +0 -0
  726. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/sunlink.py +0 -0
  727. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/tar.py +0 -0
  728. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/textfile.py +0 -0
  729. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/tlib.py +0 -0
  730. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/wix.py +0 -0
  731. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/xgettext.py +0 -0
  732. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Tool/zip.py +0 -0
  733. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Util.py +0 -0
  734. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Variables/BoolVariable.py +0 -0
  735. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Variables/EnumVariable.py +0 -0
  736. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Variables/ListVariable.py +0 -0
  737. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Variables/PackageVariable.py +0 -0
  738. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Variables/PathVariable.py +0 -0
  739. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Variables/__init__.py +0 -0
  740. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/Warnings.py +0 -0
  741. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/__init__.py +0 -0
  742. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/compat/__init__.py +0 -0
  743. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/compat/_scons_builtins.py +0 -0
  744. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/compat/_scons_collections.py +0 -0
  745. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/compat/_scons_dbm.py +0 -0
  746. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/compat/_scons_hashlib.py +0 -0
  747. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/compat/_scons_io.py +0 -0
  748. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/compat/_scons_sets.py +0 -0
  749. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/compat/_scons_subprocess.py +0 -0
  750. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/cpp.py +0 -0
  751. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/dblite.py +0 -0
  752. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-2.3.2/SCons/exitfuncs.py +0 -0
  753. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Action.py +0 -0
  754. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Builder.py +0 -0
  755. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/CacheDir.py +0 -0
  756. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Conftest.py +0 -0
  757. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Debug.py +0 -0
  758. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Defaults.py +0 -0
  759. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Environment.py +0 -0
  760. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Errors.py +0 -0
  761. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Executor.py +0 -0
  762. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Job.py +0 -0
  763. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Memoize.py +0 -0
  764. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Node/Alias.py +0 -0
  765. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Node/FS.py +0 -0
  766. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Node/Python.py +0 -0
  767. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Node/__init__.py +0 -0
  768. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/PathList.py +0 -0
  769. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Platform/__init__.py +0 -0
  770. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Platform/aix.py +0 -0
  771. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Platform/cygwin.py +0 -0
  772. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Platform/darwin.py +0 -0
  773. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Platform/hpux.py +0 -0
  774. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Platform/irix.py +0 -0
  775. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Platform/mingw.py +0 -0
  776. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Platform/os2.py +0 -0
  777. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Platform/posix.py +0 -0
  778. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Platform/sunos.py +0 -0
  779. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Platform/virtualenv.py +0 -0
  780. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Platform/win32.py +0 -0
  781. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/SConf.py +0 -0
  782. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/SConsign.py +0 -0
  783. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Scanner/C.py +0 -0
  784. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Scanner/Dir.py +0 -0
  785. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Scanner/Prog.py +0 -0
  786. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Scanner/RC.py +0 -0
  787. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Scanner/__init__.py +0 -0
  788. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Script/Interactive.py +0 -0
  789. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Script/Main.py +0 -0
  790. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Script/SConsOptions.py +0 -0
  791. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Script/SConscript.py +0 -0
  792. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Script/__init__.py +0 -0
  793. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Subst.py +0 -0
  794. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Taskmaster.py +0 -0
  795. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/386asm.py +0 -0
  796. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/GettextCommon.py +0 -0
  797. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/MSCommon/__init__.py +0 -0
  798. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/MSCommon/arch.py +0 -0
  799. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/MSCommon/common.py +0 -0
  800. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/MSCommon/netframework.py +0 -0
  801. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/MSCommon/sdk.py +0 -0
  802. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/MSCommon/vc.py +0 -0
  803. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/MSCommon/vs.py +0 -0
  804. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/PharLapCommon.py +0 -0
  805. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/__init__.py +0 -0
  806. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/aixc++.py +0 -0
  807. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/aixcc.py +0 -0
  808. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/aixcxx.py +0 -0
  809. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/aixlink.py +0 -0
  810. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/applelink.py +0 -0
  811. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/ar.py +0 -0
  812. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/as.py +0 -0
  813. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/bcc32.py +0 -0
  814. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/c++.py +0 -0
  815. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/cc.py +0 -0
  816. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/clang.py +0 -0
  817. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/clangCommon/__init__.py +0 -0
  818. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/clangxx.py +0 -0
  819. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/cxx.py +0 -0
  820. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/cyglink.py +0 -0
  821. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/default.py +0 -0
  822. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/docbook/__init__.py +0 -0
  823. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/filesystem.py +0 -0
  824. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/g++.py +0 -0
  825. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/gas.py +0 -0
  826. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/gcc.py +0 -0
  827. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/gettext_tool.py +0 -0
  828. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/gnulink.py +0 -0
  829. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/gxx.py +0 -0
  830. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/hpc++.py +0 -0
  831. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/hpcc.py +0 -0
  832. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/hpcxx.py +0 -0
  833. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/hplink.py +0 -0
  834. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/icc.py +0 -0
  835. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/icl.py +0 -0
  836. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/ilink.py +0 -0
  837. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/ilink32.py +0 -0
  838. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/install.py +0 -0
  839. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/intelc.py +0 -0
  840. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/link.py +0 -0
  841. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/linkloc.py +0 -0
  842. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/m4.py +0 -0
  843. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/masm.py +0 -0
  844. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/mingw.py +0 -0
  845. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/msgfmt.py +0 -0
  846. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/msginit.py +0 -0
  847. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/msgmerge.py +0 -0
  848. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/mslib.py +0 -0
  849. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/mslink.py +0 -0
  850. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/mssdk.py +0 -0
  851. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/msvc.py +0 -0
  852. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/msvs.py +0 -0
  853. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/mwcc.py +0 -0
  854. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/mwld.py +0 -0
  855. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/nasm.py +0 -0
  856. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/rmic.py +0 -0
  857. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/rpcgen.py +0 -0
  858. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/sgiar.py +0 -0
  859. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/sgic++.py +0 -0
  860. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/sgicc.py +0 -0
  861. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/sgicxx.py +0 -0
  862. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/sgilink.py +0 -0
  863. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/sunar.py +0 -0
  864. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/sunc++.py +0 -0
  865. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/suncc.py +0 -0
  866. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/suncxx.py +0 -0
  867. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/sunlink.py +0 -0
  868. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/tar.py +0 -0
  869. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/textfile.py +0 -0
  870. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/tlib.py +0 -0
  871. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/wix.py +0 -0
  872. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/xgettext.py +0 -0
  873. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Tool/zip.py +0 -0
  874. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Util.py +0 -0
  875. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Variables/BoolVariable.py +0 -0
  876. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Variables/EnumVariable.py +0 -0
  877. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Variables/ListVariable.py +0 -0
  878. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Variables/PackageVariable.py +0 -0
  879. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Variables/PathVariable.py +0 -0
  880. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Variables/__init__.py +0 -0
  881. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/Warnings.py +0 -0
  882. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/__init__.py +0 -0
  883. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/compat/__init__.py +0 -0
  884. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/compat/_scons_dbm.py +0 -0
  885. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/cpp.py +0 -0
  886. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/dblite.py +0 -0
  887. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-3.1.2/SCons/exitfuncs.py +0 -0
  888. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Action.py +0 -0
  889. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Builder.py +0 -0
  890. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/CacheDir.py +0 -0
  891. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Conftest.py +0 -0
  892. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Debug.py +0 -0
  893. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Defaults.py +0 -0
  894. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Environment.py +0 -0
  895. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/EnvironmentValues.py +0 -0
  896. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Errors.py +0 -0
  897. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Executor.py +0 -0
  898. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Job.py +0 -0
  899. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Memoize.py +0 -0
  900. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Node/Alias.py +0 -0
  901. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Node/FS.py +0 -0
  902. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Node/Python.py +0 -0
  903. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Node/__init__.py +0 -0
  904. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/PathList.py +0 -0
  905. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Platform/__init__.py +0 -0
  906. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Platform/aix.py +0 -0
  907. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Platform/cygwin.py +0 -0
  908. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Platform/darwin.py +0 -0
  909. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Platform/hpux.py +0 -0
  910. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Platform/irix.py +0 -0
  911. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Platform/mingw.py +0 -0
  912. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Platform/os2.py +0 -0
  913. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Platform/posix.py +0 -0
  914. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Platform/sunos.py +0 -0
  915. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Platform/virtualenv.py +0 -0
  916. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Platform/win32.py +0 -0
  917. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/SConf.py +0 -0
  918. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/SConsign.py +0 -0
  919. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Scanner/C.py +0 -0
  920. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Scanner/Dir.py +0 -0
  921. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Scanner/Prog.py +0 -0
  922. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Scanner/RC.py +0 -0
  923. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Scanner/__init__.py +0 -0
  924. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Script/Interactive.py +0 -0
  925. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Script/Main.py +0 -0
  926. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Script/SConsOptions.py +0 -0
  927. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Script/SConscript.py +0 -0
  928. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Script/__init__.py +0 -0
  929. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Subst.py +0 -0
  930. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Taskmaster.py +0 -0
  931. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/386asm.py +0 -0
  932. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/GettextCommon.py +0 -0
  933. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/MSCommon/__init__.py +0 -0
  934. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/MSCommon/arch.py +0 -0
  935. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/MSCommon/common.py +0 -0
  936. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/MSCommon/netframework.py +0 -0
  937. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/MSCommon/sdk.py +0 -0
  938. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/MSCommon/vc.py +0 -0
  939. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/MSCommon/vs.py +0 -0
  940. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/PharLapCommon.py +0 -0
  941. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/__init__.py +0 -0
  942. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/aixc++.py +0 -0
  943. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/aixcc.py +0 -0
  944. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/aixcxx.py +0 -0
  945. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/aixlink.py +0 -0
  946. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/applelink.py +0 -0
  947. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/ar.py +0 -0
  948. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/as.py +0 -0
  949. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/asm.py +0 -0
  950. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/bcc32.py +0 -0
  951. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/c++.py +0 -0
  952. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/cc.py +0 -0
  953. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/clang.py +0 -0
  954. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/clangCommon/__init__.py +0 -0
  955. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/clangxx.py +0 -0
  956. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/cxx.py +0 -0
  957. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/cyglink.py +0 -0
  958. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/default.py +0 -0
  959. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/filesystem.py +0 -0
  960. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/g++.py +0 -0
  961. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/gas.py +0 -0
  962. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/gcc.py +0 -0
  963. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/gettext_tool.py +0 -0
  964. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/gnulink.py +0 -0
  965. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/gxx.py +0 -0
  966. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/hpc++.py +0 -0
  967. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/hpcc.py +0 -0
  968. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/hpcxx.py +0 -0
  969. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/hplink.py +0 -0
  970. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/icc.py +0 -0
  971. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/icl.py +0 -0
  972. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/ilink.py +0 -0
  973. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/ilink32.py +0 -0
  974. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/install.py +0 -0
  975. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/intelc.py +0 -0
  976. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/link.py +0 -0
  977. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/linkCommon/LoadableModule.py +0 -0
  978. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/linkCommon/SharedLibrary.py +0 -0
  979. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/linkCommon/__init__.py +0 -0
  980. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/linkloc.py +0 -0
  981. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/m4.py +0 -0
  982. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/masm.py +0 -0
  983. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/mingw.py +0 -0
  984. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/msgfmt.py +0 -0
  985. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/msginit.py +0 -0
  986. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/msgmerge.py +0 -0
  987. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/mslib.py +0 -0
  988. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/mslink.py +0 -0
  989. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/mssdk.py +0 -0
  990. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/msvc.py +0 -0
  991. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/msvs.py +0 -0
  992. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/mwcc.py +0 -0
  993. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/mwld.py +0 -0
  994. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/nasm.py +0 -0
  995. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/rmic.py +0 -0
  996. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/rpcgen.py +0 -0
  997. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/sgiar.py +0 -0
  998. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/sgic++.py +0 -0
  999. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/sgicc.py +0 -0
  1000. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/sgicxx.py +0 -0
  1001. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/sgilink.py +0 -0
  1002. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/sunar.py +0 -0
  1003. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/sunc++.py +0 -0
  1004. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/suncc.py +0 -0
  1005. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/suncxx.py +0 -0
  1006. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/sunlink.py +0 -0
  1007. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/tar.py +0 -0
  1008. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/textfile.py +0 -0
  1009. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/tlib.py +0 -0
  1010. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/wix.py +0 -0
  1011. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/xgettext.py +0 -0
  1012. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Tool/zip.py +0 -0
  1013. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Util.py +0 -0
  1014. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Utilities/ConfigureCache.py +0 -0
  1015. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Utilities/__init__.py +0 -0
  1016. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Utilities/sconsign.py +0 -0
  1017. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Variables/BoolVariable.py +0 -0
  1018. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Variables/EnumVariable.py +0 -0
  1019. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Variables/ListVariable.py +0 -0
  1020. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Variables/PackageVariable.py +0 -0
  1021. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Variables/PathVariable.py +0 -0
  1022. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Variables/__init__.py +0 -0
  1023. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/Warnings.py +0 -0
  1024. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/__init__.py +0 -0
  1025. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/compat/__init__.py +0 -0
  1026. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/compat/_scons_dbm.py +0 -0
  1027. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/compat/win32.py +0 -0
  1028. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/cpp.py +0 -0
  1029. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/dblite.py +0 -0
  1030. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/lib/scons-4.3.0/SCons/exitfuncs.py +0 -0
  1031. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/markupsafe/LICENSE.rst +0 -0
  1032. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/markupsafe/markupsafe/__init__.py +0 -0
  1033. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/markupsafe/markupsafe/_compat.py +0 -0
  1034. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/markupsafe/markupsafe/_constants.py +0 -0
  1035. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/markupsafe/markupsafe/_native.py +0 -0
  1036. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/pkg_resources/pkg_resources/__init__.py +0 -0
  1037. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/pkg_resources/pkg_resources/py31compat.py +0 -0
  1038. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/tqdm/tqdm/__init__.py +0 -0
  1039. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/tqdm/tqdm/_main.py +0 -0
  1040. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/tqdm/tqdm/_monitor.py +0 -0
  1041. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/tqdm/tqdm/_tqdm.py +0 -0
  1042. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/tqdm/tqdm/_tqdm_notebook.py +0 -0
  1043. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/tqdm/tqdm/_tqdm_pandas.py +0 -0
  1044. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/tqdm/tqdm/_utils.py +0 -0
  1045. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/tqdm/tqdm/auto.py +0 -0
  1046. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/tqdm/tqdm/autonotebook.py +0 -0
  1047. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/tqdm/tqdm/dask.py +0 -0
  1048. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/tqdm/tqdm/notebook.py +0 -0
  1049. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/tqdm/tqdm/std.py +0 -0
  1050. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/tqdm/tqdm/tk.py +0 -0
  1051. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/tqdm/tqdm/utils.py +0 -0
  1052. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/tqdm/tqdm/version.py +0 -0
  1053. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml/LICENSE +0 -0
  1054. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml/yaml/__init__.py +0 -0
  1055. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml/yaml/composer.py +0 -0
  1056. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml/yaml/constructor.py +0 -0
  1057. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml/yaml/cyaml.py +0 -0
  1058. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml/yaml/dumper.py +0 -0
  1059. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml/yaml/emitter.py +0 -0
  1060. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml/yaml/error.py +0 -0
  1061. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml/yaml/events.py +0 -0
  1062. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml/yaml/loader.py +0 -0
  1063. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml/yaml/nodes.py +0 -0
  1064. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml/yaml/parser.py +0 -0
  1065. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml/yaml/reader.py +0 -0
  1066. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml/yaml/representer.py +0 -0
  1067. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml/yaml/resolver.py +0 -0
  1068. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml/yaml/scanner.py +0 -0
  1069. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml/yaml/serializer.py +0 -0
  1070. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml/yaml/tokens.py +0 -0
  1071. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_27/LICENSE +0 -0
  1072. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_27/yaml/__init__.py +0 -0
  1073. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_27/yaml/composer.py +0 -0
  1074. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_27/yaml/constructor.py +0 -0
  1075. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_27/yaml/cyaml.py +0 -0
  1076. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_27/yaml/dumper.py +0 -0
  1077. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_27/yaml/emitter.py +0 -0
  1078. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_27/yaml/error.py +0 -0
  1079. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_27/yaml/events.py +0 -0
  1080. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_27/yaml/loader.py +0 -0
  1081. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_27/yaml/nodes.py +0 -0
  1082. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_27/yaml/parser.py +0 -0
  1083. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_27/yaml/reader.py +0 -0
  1084. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_27/yaml/representer.py +0 -0
  1085. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_27/yaml/resolver.py +0 -0
  1086. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_27/yaml/scanner.py +0 -0
  1087. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_27/yaml/serializer.py +0 -0
  1088. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_27/yaml/tokens.py +0 -0
  1089. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_35/LICENSE +0 -0
  1090. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_35/yaml/__init__.py +0 -0
  1091. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_35/yaml/composer.py +0 -0
  1092. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_35/yaml/constructor.py +0 -0
  1093. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_35/yaml/cyaml.py +0 -0
  1094. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_35/yaml/dumper.py +0 -0
  1095. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_35/yaml/emitter.py +0 -0
  1096. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_35/yaml/error.py +0 -0
  1097. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_35/yaml/events.py +0 -0
  1098. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_35/yaml/loader.py +0 -0
  1099. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_35/yaml/nodes.py +0 -0
  1100. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_35/yaml/parser.py +0 -0
  1101. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_35/yaml/reader.py +0 -0
  1102. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_35/yaml/representer.py +0 -0
  1103. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_35/yaml/resolver.py +0 -0
  1104. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_35/yaml/scanner.py +0 -0
  1105. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_35/yaml/serializer.py +0 -0
  1106. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/yaml_35/yaml/tokens.py +0 -0
  1107. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zlib/LICENSE +0 -0
  1108. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zlib/crc32.c +0 -0
  1109. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zlib/crc32.h +0 -0
  1110. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zlib/zconf.h +0 -0
  1111. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zlib/zlib.h +0 -0
  1112. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zlib/zutil.h +0 -0
  1113. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/LICENSE.txt +0 -0
  1114. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/common/bitstream.h +0 -0
  1115. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/common/compiler.h +0 -0
  1116. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/common/cpu.h +0 -0
  1117. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/common/debug.h +0 -0
  1118. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/common/entropy_common.c +0 -0
  1119. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/common/error_private.c +0 -0
  1120. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/common/error_private.h +0 -0
  1121. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/common/fse.h +0 -0
  1122. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/common/fse_decompress.c +0 -0
  1123. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/common/huf.h +0 -0
  1124. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/common/mem.h +0 -0
  1125. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/common/xxhash.c +0 -0
  1126. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/common/xxhash.h +0 -0
  1127. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/common/zstd_common.c +0 -0
  1128. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/common/zstd_deps.h +0 -0
  1129. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/common/zstd_errors.h +0 -0
  1130. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/common/zstd_internal.h +0 -0
  1131. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/decompress/huf_decompress.c +0 -0
  1132. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/decompress/zstd_ddict.c +0 -0
  1133. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/decompress/zstd_ddict.h +0 -0
  1134. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/decompress/zstd_decompress.c +0 -0
  1135. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/decompress/zstd_decompress_block.c +0 -0
  1136. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/decompress/zstd_decompress_block.h +0 -0
  1137. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/decompress/zstd_decompress_internal.h +0 -0
  1138. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/inline_copy/zstd/zstd.h +0 -0
  1139. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/static_src/HelpersBuiltinTypeMethods.c +0 -0
  1140. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/static_src/HelpersChecksumTools.c +0 -0
  1141. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/static_src/HelpersClasses.c +0 -0
  1142. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/static_src/HelpersDumpBacktraces.c +0 -0
  1143. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/static_src/HelpersEnvironmentVariables.c +0 -0
  1144. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/static_src/HelpersEnvironmentVariablesSystem.c +0 -0
  1145. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/static_src/HelpersFiles.c +0 -0
  1146. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/static_src/HelpersHeapStorage.c +0 -0
  1147. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/static_src/HelpersImportHard.c +0 -0
  1148. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/static_src/HelpersMappings.c +0 -0
  1149. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/static_src/HelpersOperationBinaryDivmodUtils.c +0 -0
  1150. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/static_src/HelpersOperationBinaryInplaceAdd.c +0 -0
  1151. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/static_src/HelpersOperationBinaryMultUtils.c +0 -0
  1152. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/static_src/HelpersOperationBinaryPowUtils.c +0 -0
  1153. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/static_src/HelpersOperationInplaceAddUtils.c +0 -0
  1154. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/static_src/HelpersProfiling.c +0 -0
  1155. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/static_src/HelpersPythonPgo.c +0 -0
  1156. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/static_src/HelpersSequences.c +0 -0
  1157. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/static_src/HelpersTypes.c +0 -0
  1158. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/static_src/MetaPathBasedLoaderImportlibMetadataDistribution.c +0 -0
  1159. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/static_src/MetaPathBasedLoaderResourceReader.c +0 -0
  1160. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/build/static_src/OnefileSplashScreen.cpp +0 -0
  1161. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/AsyncgenCodes.py +0 -0
  1162. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/AttributeCodes.py +0 -0
  1163. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/BinaryOperationHelperDefinitions.py +0 -0
  1164. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/BranchCodes.py +0 -0
  1165. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/BuiltinCodes.py +0 -0
  1166. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/CallCodes.py +0 -0
  1167. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/ClassCodes.py +0 -0
  1168. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/CodeHelperSelection.py +0 -0
  1169. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/CodeHelpers.py +0 -0
  1170. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/CodeObjectCodes.py +0 -0
  1171. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/ComparisonCodes.py +0 -0
  1172. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/ComparisonHelperDefinitions.py +0 -0
  1173. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/ConditionalCodes.py +0 -0
  1174. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/Contexts.py +0 -0
  1175. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/CoroutineCodes.py +0 -0
  1176. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/CtypesCodes.py +0 -0
  1177. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/Emission.py +0 -0
  1178. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/ErrorCodes.py +0 -0
  1179. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/EvalCodes.py +0 -0
  1180. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/ExceptionCodes.py +0 -0
  1181. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/ExpressionCTypeSelectionHelpers.py +0 -0
  1182. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/ExpressionCodes.py +0 -0
  1183. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/FrameCodes.py +0 -0
  1184. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/FunctionCodes.py +0 -0
  1185. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/GeneratorCodes.py +0 -0
  1186. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/IdCodes.py +0 -0
  1187. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/ImportCodes.py +0 -0
  1188. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/Indentation.py +0 -0
  1189. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/IndexCodes.py +0 -0
  1190. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/InjectCCodes.py +0 -0
  1191. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/IntegerCodes.py +0 -0
  1192. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/IteratorCodes.py +0 -0
  1193. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/JitCodes.py +0 -0
  1194. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/LabelCodes.py +0 -0
  1195. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/LineNumberCodes.py +0 -0
  1196. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/LoaderCodes.py +0 -0
  1197. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/LoopCodes.py +0 -0
  1198. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/MatchCodes.py +0 -0
  1199. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/Namify.py +0 -0
  1200. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/NetworkxCodes.py +0 -0
  1201. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/OperationCodes.py +0 -0
  1202. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/PrintCodes.py +0 -0
  1203. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/PythonAPICodes.py +0 -0
  1204. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/RaisingCodes.py +0 -0
  1205. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/Reports.py +0 -0
  1206. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/ReturnCodes.py +0 -0
  1207. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/SetCodes.py +0 -0
  1208. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/StringCodes.py +0 -0
  1209. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/TensorflowCodes.py +0 -0
  1210. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/TryCodes.py +0 -0
  1211. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/TypeAliasCodes.py +0 -0
  1212. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/VariableCodes.py +0 -0
  1213. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/VariableDeclarations.py +0 -0
  1214. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/YieldCodes.py +0 -0
  1215. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/__init__.py +0 -0
  1216. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/c_types/CTypeBases.py +0 -0
  1217. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/c_types/CTypeBooleans.py +0 -0
  1218. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/c_types/CTypeCFloats.py +0 -0
  1219. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/c_types/CTypeCLongs.py +0 -0
  1220. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/c_types/CTypeModuleDictVariables.py +0 -0
  1221. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/c_types/CTypeNuitkaBooleans.py +0 -0
  1222. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/c_types/CTypeNuitkaInts.py +0 -0
  1223. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/c_types/CTypeNuitkaVoids.py +0 -0
  1224. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/c_types/CTypeVoids.py +0 -0
  1225. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/c_types/__init__.py +0 -0
  1226. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/templates/CodeTemplatesAsyncgens.py +0 -0
  1227. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/templates/CodeTemplatesCoroutines.py +0 -0
  1228. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/templates/CodeTemplatesExceptions.py +0 -0
  1229. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/templates/CodeTemplatesFrames.py +0 -0
  1230. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/templates/CodeTemplatesFunction.py +0 -0
  1231. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/templates/CodeTemplatesGeneratorFunction.py +0 -0
  1232. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/templates/CodeTemplatesIterators.py +0 -0
  1233. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/templates/CodeTemplatesVariables.py +0 -0
  1234. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/templates/TemplateDebugWrapper.py +0 -0
  1235. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/templates/__init__.py +0 -0
  1236. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/templates_c/CodeTemplateCallsMethodPositional.c.j2 +0 -0
  1237. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/templates_c/HelperBuiltinMethodOperation.c.j2 +0 -0
  1238. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/templates_c/HelperLongTools.c.j2 +0 -0
  1239. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/templates_c/HelperObjectTools.c.j2 +0 -0
  1240. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/templates_c/HelperSlotsBytes.c.j2 +0 -0
  1241. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/templates_c/HelperSlotsCommon.c.j2 +0 -0
  1242. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/templates_c/HelperSlotsFloat.c.j2 +0 -0
  1243. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/templates_c/HelperSlotsInt.c.j2 +0 -0
  1244. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/templates_c/HelperSlotsLong.c.j2 +0 -0
  1245. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/templates_c/HelperSlotsSet.c.j2 +0 -0
  1246. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/templates_c/HelperSlotsStr.c.j2 +0 -0
  1247. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/code_generation/templates_c/HelperSlotsUnicode.c.j2 +0 -0
  1248. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/containers/Namedtuples.py +0 -0
  1249. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/containers/OrderedDicts.py +0 -0
  1250. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/containers/OrderedSets.py +0 -0
  1251. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/containers/OrderedSetsFallback.py +0 -0
  1252. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/containers/__init__.py +0 -0
  1253. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/distutils/Build.py +0 -0
  1254. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/distutils/DistutilCommands.py +0 -0
  1255. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/distutils/__init__.py +0 -0
  1256. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/finalizations/Finalization.py +0 -0
  1257. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/finalizations/__init__.py +0 -0
  1258. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/freezer/DllDependenciesCommon.py +0 -0
  1259. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/freezer/DllDependenciesPosix.py +0 -0
  1260. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/freezer/__init__.py +0 -0
  1261. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/importing/IgnoreListing.py +0 -0
  1262. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/importing/ImportResolving.py +0 -0
  1263. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/importing/PreloadedPackages.py +0 -0
  1264. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/importing/Recursion.py +0 -0
  1265. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/importing/__init__.py +0 -0
  1266. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/AsyncgenNodes.py +0 -0
  1267. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/AttributeLookupNodes.py +0 -0
  1268. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/AttributeNodes.py +0 -0
  1269. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/AttributeNodesGenerated.py +0 -0
  1270. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/BuiltinAllNodes.py +0 -0
  1271. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/BuiltinAnyNodes.py +0 -0
  1272. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/BuiltinComplexNodes.py +0 -0
  1273. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/BuiltinDecodingNodes.py +0 -0
  1274. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/BuiltinDecoratorNodes.py +0 -0
  1275. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/BuiltinDictNodes.py +0 -0
  1276. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/BuiltinFormatNodes.py +0 -0
  1277. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/BuiltinHashNodes.py +0 -0
  1278. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/BuiltinInputNodes.py +0 -0
  1279. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/BuiltinIntegerNodes.py +0 -0
  1280. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/BuiltinIteratorNodes.py +0 -0
  1281. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/BuiltinLenNodes.py +0 -0
  1282. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/BuiltinNextNodes.py +0 -0
  1283. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/BuiltinOpenNodes.py +0 -0
  1284. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/BuiltinOperationNodeBasesGenerated.py +0 -0
  1285. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/BuiltinRangeNodes.py +0 -0
  1286. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/BuiltinRefNodes.py +0 -0
  1287. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/BuiltinSumNodes.py +0 -0
  1288. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/BuiltinTypeNodes.py +0 -0
  1289. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/BuiltinVarsNodes.py +0 -0
  1290. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/BytesNodes.py +0 -0
  1291. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/CallNodes.py +0 -0
  1292. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/Checkers.py +0 -0
  1293. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/ClassNodes.py +0 -0
  1294. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/CodeObjectSpecs.py +0 -0
  1295. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/ComparisonNodes.py +0 -0
  1296. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/ConditionalNodes.py +0 -0
  1297. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/ConstantRefNodes.py +0 -0
  1298. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/ContainerMakingNodes.py +0 -0
  1299. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/ContainerOperationNodes.py +0 -0
  1300. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/CoroutineNodes.py +0 -0
  1301. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/CtypesNodes.py +0 -0
  1302. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/DictionaryNodes.py +0 -0
  1303. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/ExceptionNodes.py +0 -0
  1304. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/ExecEvalNodes.py +0 -0
  1305. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/ExpressionBases.py +0 -0
  1306. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/ExpressionShapeMixins.py +0 -0
  1307. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/FrameNodes.py +0 -0
  1308. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/FunctionAttributeNodes.py +0 -0
  1309. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/FunctionNodes.py +0 -0
  1310. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/FutureSpecs.py +0 -0
  1311. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/GeneratorNodes.py +0 -0
  1312. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/GlobalsLocalsNodes.py +0 -0
  1313. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/ImportHardNodes.py +0 -0
  1314. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/ImportNodes.py +0 -0
  1315. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/IndicatorMixins.py +0 -0
  1316. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/InjectCNodes.py +0 -0
  1317. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/IterationHandles.py +0 -0
  1318. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/KeyValuePairNodes.py +0 -0
  1319. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/ListOperationNodes.py +0 -0
  1320. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/LocalsDictNodes.py +0 -0
  1321. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/LocalsScopes.py +0 -0
  1322. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/LoopNodes.py +0 -0
  1323. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/MatchNodes.py +0 -0
  1324. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/ModuleAttributeNodes.py +0 -0
  1325. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/NetworkxNodes.py +0 -0
  1326. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/NodeBases.py +0 -0
  1327. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/NodeMakingHelpers.py +0 -0
  1328. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/NodeMetaClasses.py +0 -0
  1329. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/OperatorNodes.py +0 -0
  1330. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/OperatorNodesUnary.py +0 -0
  1331. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/OutlineNodes.py +0 -0
  1332. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/PackageMetadataNodes.py +0 -0
  1333. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/PackageResourceNodes.py +0 -0
  1334. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/PrintNodes.py +0 -0
  1335. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/ReturnNodes.py +0 -0
  1336. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/SideEffectNodes.py +0 -0
  1337. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/SliceNodes.py +0 -0
  1338. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/StatementBasesGenerated.py +0 -0
  1339. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/StatementNodes.py +0 -0
  1340. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/StrNodes.py +0 -0
  1341. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/StringConcatenationNodes.py +0 -0
  1342. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/TensorflowNodes.py +0 -0
  1343. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/TryNodes.py +0 -0
  1344. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/TypeMatchNodes.py +0 -0
  1345. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/TypeNodes.py +0 -0
  1346. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/VariableAssignNodes.py +0 -0
  1347. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/VariableDelNodes.py +0 -0
  1348. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/VariableNameNodes.py +0 -0
  1349. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/VariableRefNodes.py +0 -0
  1350. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/VariableReleaseNodes.py +0 -0
  1351. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/YieldNodes.py +0 -0
  1352. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/__init__.py +0 -0
  1353. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/shapes/BuiltinTypeShapes.py +0 -0
  1354. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/shapes/ControlFlowDescriptions.py +0 -0
  1355. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/shapes/ShapeMixins.py +0 -0
  1356. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/shapes/StandardShapes.py +0 -0
  1357. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/nodes/shapes/__init__.py +0 -0
  1358. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/optimizations/BytecodeDemotion.py +0 -0
  1359. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/optimizations/FunctionInlining.py +0 -0
  1360. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/optimizations/Graphs.py +0 -0
  1361. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/optimizations/Optimization.py +0 -0
  1362. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/optimizations/OptimizeBuiltinCalls.py +0 -0
  1363. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/optimizations/Tags.py +0 -0
  1364. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/optimizations/TraceCollections.py +0 -0
  1365. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/optimizations/ValueTraces.py +0 -0
  1366. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/optimizations/__init__.py +0 -0
  1367. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/pgo/PGO.py +0 -0
  1368. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/pgo/__init__.py +0 -0
  1369. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/Plugins.py +0 -0
  1370. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/__init__.py +0 -0
  1371. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/standard/AntiBloatPlugin.py +0 -0
  1372. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/standard/ConsiderPyLintAnnotationsPlugin.py +0 -0
  1373. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/standard/DelvewheelPlugin.py +0 -0
  1374. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/standard/DillPlugin/dill-postLoad.py +0 -0
  1375. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/standard/DillPlugin.py +0 -0
  1376. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/standard/DllFilesPlugin.py +0 -0
  1377. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/standard/EnumPlugin.py +0 -0
  1378. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/standard/EventletPlugin.py +0 -0
  1379. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/standard/GeventPlugin.py +0 -0
  1380. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/standard/GiPlugin.py +0 -0
  1381. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/standard/GlfwPlugin.py +0 -0
  1382. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/standard/KivyPlugin.py +0 -0
  1383. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/standard/MatplotlibPlugin.py +0 -0
  1384. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/standard/MultiprocessingPlugin.py +0 -0
  1385. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/standard/NumpyPlugin.py +0 -0
  1386. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/standard/PbrPlugin.py +0 -0
  1387. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/standard/PmwPlugin.py +0 -0
  1388. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/standard/PywebViewPlugin.py +0 -0
  1389. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/standard/TensorflowPlugin.py +0 -0
  1390. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/standard/TkinterPlugin.py +0 -0
  1391. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/standard/TorchPlugin.py +0 -0
  1392. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/standard/TransformersPlugin.py +0 -0
  1393. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/standard/TrioPlugin.py +0 -0
  1394. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/standard/UpxPlugin.py +0 -0
  1395. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/plugins/standard/__init__.py +0 -0
  1396. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/reports/CompilationReportReader.py +0 -0
  1397. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/reports/LicenseReport.rst.j2 +0 -0
  1398. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/reports/Reports.py +0 -0
  1399. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/reports/__init__.py +0 -0
  1400. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/specs/BuiltinBytesOperationSpecs.py +0 -0
  1401. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/specs/BuiltinDictOperationSpecs.py +0 -0
  1402. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/specs/BuiltinListOperationSpecs.py +0 -0
  1403. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/specs/BuiltinParameterSpecs.py +0 -0
  1404. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/specs/BuiltinStrOperationSpecs.py +0 -0
  1405. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/specs/BuiltinTypeOperationSpecs.py +0 -0
  1406. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/specs/BuiltinUnicodeOperationSpecs.py +0 -0
  1407. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/specs/__init__.py +0 -0
  1408. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/Basics.py +0 -0
  1409. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/__init__.py +0 -0
  1410. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/commercial/__init__.py +0 -0
  1411. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/data_composer/DataComposer.py +0 -0
  1412. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/data_composer/__init__.py +0 -0
  1413. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/data_composer/__main__.py +0 -0
  1414. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/environments/CreateEnvironment.py +0 -0
  1415. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/environments/Virtualenv.py +0 -0
  1416. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/environments/__init__.py +0 -0
  1417. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/general/__init__.py +0 -0
  1418. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/general/dll_report/__init__.py +0 -0
  1419. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/general/dll_report/__main__.py +0 -0
  1420. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/general/find_module/__init__.py +0 -0
  1421. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/onefile_compressor/OnefileCompressor.py +0 -0
  1422. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/onefile_compressor/__init__.py +0 -0
  1423. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/onefile_compressor/__main__.py +0 -0
  1424. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/podman/Podman.py +0 -0
  1425. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/podman/__init__.py +0 -0
  1426. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/podman/__main__.py +0 -0
  1427. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/profiler/__init__.py +0 -0
  1428. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/profiler/__main__.py +0 -0
  1429. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/scanning/DisplayPackageDLLs.py +0 -0
  1430. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/scanning/DisplayPackageData.py +0 -0
  1431. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/scanning/__init__.py +0 -0
  1432. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/specialize/Common.py +0 -0
  1433. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/specialize/SpecializeC.py +0 -0
  1434. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/specialize/SpecializePython.py +0 -0
  1435. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/specialize/__init__.py +0 -0
  1436. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/testing/Constructs.py +0 -0
  1437. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/testing/OutputComparison.py +0 -0
  1438. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/testing/Pythons.py +0 -0
  1439. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/testing/RuntimeTracing.py +0 -0
  1440. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/testing/Valgrind.py +0 -0
  1441. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/testing/__init__.py +0 -0
  1442. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/testing/check_reference_counts/__init__.py +0 -0
  1443. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/testing/check_reference_counts/__main__.py +0 -0
  1444. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/testing/compare_with_cpython/__init__.py +0 -0
  1445. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/testing/compare_with_cpython/__main__.py +0 -0
  1446. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/testing/find_sxs_modules/__init__.py +0 -0
  1447. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/testing/find_sxs_modules/__main__.py +0 -0
  1448. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/testing/measure_construct_performance/__init__.py +0 -0
  1449. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/testing/measure_construct_performance/__main__.py +0 -0
  1450. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/testing/run_nuitka_tests/__init__.py +0 -0
  1451. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/watch/__init__.py +0 -0
  1452. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tools/watch/__main__.py +0 -0
  1453. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/ComplexCallHelperFunctions.py +0 -0
  1454. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/Extractions.py +0 -0
  1455. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/InternalModule.py +0 -0
  1456. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/Operations.py +0 -0
  1457. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/ReformulationAssertStatements.py +0 -0
  1458. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/ReformulationAssignmentStatements.py +0 -0
  1459. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/ReformulationBooleanExpressions.py +0 -0
  1460. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/ReformulationCallExpressions.py +0 -0
  1461. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/ReformulationClasses.py +0 -0
  1462. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/ReformulationClasses3.py +0 -0
  1463. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/ReformulationComparisonExpressions.py +0 -0
  1464. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/ReformulationContractionExpressions.py +0 -0
  1465. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/ReformulationDictionaryCreation.py +0 -0
  1466. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/ReformulationExecStatements.py +0 -0
  1467. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/ReformulationForLoopStatements.py +0 -0
  1468. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/ReformulationFunctionStatements.py +0 -0
  1469. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/ReformulationImportStatements.py +0 -0
  1470. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/ReformulationLambdaExpressions.py +0 -0
  1471. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/ReformulationMultidist.py +0 -0
  1472. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/ReformulationNamespacePackages.py +0 -0
  1473. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/ReformulationPrintStatements.py +0 -0
  1474. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/ReformulationSequenceCreation.py +0 -0
  1475. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/ReformulationSubscriptExpressions.py +0 -0
  1476. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/ReformulationTryExceptStatements.py +0 -0
  1477. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/ReformulationTryFinallyStatements.py +0 -0
  1478. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/ReformulationWhileLoopStatements.py +0 -0
  1479. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/ReformulationWithStatements.py +0 -0
  1480. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/ReformulationYieldExpressions.py +0 -0
  1481. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/SourceHandling.py +0 -0
  1482. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/SyntaxErrors.py +0 -0
  1483. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/VariableClosure.py +0 -0
  1484. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/tree/__init__.py +0 -0
  1485. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/utils/AppDirs.py +0 -0
  1486. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/utils/CommandLineOptions.py +0 -0
  1487. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/utils/Distributions.py +0 -0
  1488. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/utils/Download.py +0 -0
  1489. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/utils/Hashing.py +0 -0
  1490. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/utils/Images.py +0 -0
  1491. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/utils/InstalledPythons.py +0 -0
  1492. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/utils/InstanceCounters.py +0 -0
  1493. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/utils/Jinja2.py +0 -0
  1494. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/utils/Json.py +0 -0
  1495. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/utils/MacOSApp.py +0 -0
  1496. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/utils/MemoryUsage.py +0 -0
  1497. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/utils/ModuleNames.py +0 -0
  1498. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/utils/Rest.py +0 -0
  1499. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/utils/Shebang.py +0 -0
  1500. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/utils/Signing.py +0 -0
  1501. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/utils/SlotMetaClasses.py +0 -0
  1502. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/utils/StaticLibraries.py +0 -0
  1503. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/utils/ThreadedExecutor.py +0 -0
  1504. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/utils/Timing.py +0 -0
  1505. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/utils/Utils.py +0 -0
  1506. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/utils/WindowsFileUsage.py +0 -0
  1507. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/utils/WindowsResources.py +0 -0
  1508. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/nuitka/utils/__init__.py +0 -0
  1509. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/pyproject.toml +0 -0
  1510. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/setup.cfg +0 -0
  1511. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/AssertsTest.py +0 -0
  1512. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/AssignmentsTest.py +0 -0
  1513. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/AssignmentsTest32.py +0 -0
  1514. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/BranchingTest.py +0 -0
  1515. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/BuiltinOverload.py +0 -0
  1516. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/BuiltinSuperTest.py +0 -0
  1517. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/BuiltinsTest.py +0 -0
  1518. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/ClassMinimalTest.py +0 -0
  1519. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/ClassesTest.py +0 -0
  1520. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/ClassesTest32.py +0 -0
  1521. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/ClassesTest34.py +0 -0
  1522. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/ComparisonChainsTest.py +0 -0
  1523. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/ConstantsTest.py +0 -0
  1524. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/ConstantsTest27.py +0 -0
  1525. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/DecoratorsTest.py +0 -0
  1526. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/DefaultParametersTest.py +0 -0
  1527. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/DoubleDeletionsTest.py +0 -0
  1528. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/EmptyModuleTest.py +0 -0
  1529. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/ExceptionRaisingTest.py +0 -0
  1530. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/ExceptionRaisingTest32.py +0 -0
  1531. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/ExceptionRaisingTest33.py +0 -0
  1532. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/ExecEvalTest.py +0 -0
  1533. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/ExtremeClosureTest.py +0 -0
  1534. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/FunctionObjectsTest.py +0 -0
  1535. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/FunctionsTest.py +0 -0
  1536. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/FunctionsTest32.py +0 -0
  1537. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/FunctionsTest_2.py +0 -0
  1538. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/FutureTest32.py +0 -0
  1539. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/GeneratorExpressionsTest.py +0 -0
  1540. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/GeneratorExpressionsTest_37.py +0 -0
  1541. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/GlobalStatementTest.py +0 -0
  1542. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/HelloWorldTest_2.py +0 -0
  1543. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/ImportingTest.py +0 -0
  1544. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/InplaceOperationsTest.py +0 -0
  1545. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/InspectionTest.py +0 -0
  1546. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/InspectionTest_35.py +0 -0
  1547. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/InspectionTest_36.py +0 -0
  1548. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/LambdasTest.py +0 -0
  1549. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/LateClosureAssignmentTest.py +0 -0
  1550. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/ListContractionsTest.py +0 -0
  1551. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/LoopingTest.py +0 -0
  1552. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/MainProgramsTest.py +0 -0
  1553. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/ModuleAttributesTest.py +0 -0
  1554. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/OperatorsTest.py +0 -0
  1555. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/OrderChecksTest.py +0 -0
  1556. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/OrderChecksTest27.py +0 -0
  1557. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/OverflowFunctionsTest_2.py +0 -0
  1558. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/ParameterErrorsTest.py +0 -0
  1559. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/ParameterErrorsTest32.py +0 -0
  1560. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/PrintFutureTest.py +0 -0
  1561. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/PrintingTest_2.py +0 -0
  1562. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/RecursionTest.py +0 -0
  1563. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/ReferencingTest.py +0 -0
  1564. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/ReferencingTest27.py +0 -0
  1565. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/ReferencingTest33.py +0 -0
  1566. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/ReferencingTest35.py +0 -0
  1567. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/ReferencingTest36.py +0 -0
  1568. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/ReferencingTest_2.py +0 -0
  1569. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/SlotsTest.py +0 -0
  1570. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/ThreadedGeneratorsTest.py +0 -0
  1571. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/TrickAssignmentsTest32.py +0 -0
  1572. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/TrickAssignmentsTest35.py +0 -0
  1573. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/TrickAssignmentsTest_2.py +0 -0
  1574. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/TryContinueFinallyTest.py +0 -0
  1575. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/TryExceptContinueTest.py +0 -0
  1576. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/TryExceptFinallyTest.py +0 -0
  1577. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/TryExceptFramesTest.py +0 -0
  1578. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/TryReturnFinallyTest.py +0 -0
  1579. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/TryYieldFinallyTest.py +0 -0
  1580. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/UnicodeTest.py +0 -0
  1581. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/UnpackingTest35.py +0 -0
  1582. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/VarargsTest.py +0 -0
  1583. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/WithStatementsTest.py +0 -0
  1584. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/YieldFromTest33.py +0 -0
  1585. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/run_all.py +0 -0
  1586. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/basics/run_xml.py +0 -0
  1587. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/onefile/HelloWorldTest.py +0 -0
  1588. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/onefile/KeyboardInterruptTest.py +0 -0
  1589. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/onefile/run_all.py +0 -0
  1590. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/optimizations/ArgumentTypes.py +0 -0
  1591. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/optimizations/AttributesTest.py +0 -0
  1592. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/optimizations/CallsTest.py +0 -0
  1593. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/optimizations/ConditionsTest.py +0 -0
  1594. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/optimizations/DecodingOperationsTest.py +0 -0
  1595. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/optimizations/FormatStringsTest36.py +0 -0
  1596. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/optimizations/HardImportsTest.py +0 -0
  1597. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/optimizations/HardImportsTest_2.py +0 -0
  1598. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/optimizations/Iterations.py +0 -0
  1599. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/optimizations/LenTest.py +0 -0
  1600. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/optimizations/MatchingTest310.py +0 -0
  1601. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/optimizations/OperationsTest.py +0 -0
  1602. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/optimizations/SubscriptsTest.py +0 -0
  1603. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/optimizations/run_all.py +0 -0
  1604. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/packages/package_data_files_embedding/PackageDataFilesEmbedding.py +0 -0
  1605. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/packages/package_data_files_embedding/__init__.py +0 -0
  1606. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/packages/package_import_success_after_failure/PackageImportSuccessAfterFailure.py +0 -0
  1607. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/packages/package_import_success_after_failure/variable_package/SomeModule.py +0 -0
  1608. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/packages/package_import_success_after_failure/variable_package/__init__.py +0 -0
  1609. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/packages/run_all.py +0 -0
  1610. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/packages/sub_package/kitty/__init__.py +0 -0
  1611. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/packages/sub_package/kitty/bigkitty.py +0 -0
  1612. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/packages/sub_package/kitty/smallkitty.py +0 -0
  1613. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/packages/sub_package/kitty/speak/__init__.py +0 -0
  1614. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/packages/sub_package/kitty/speak/hello.py +0 -0
  1615. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/packages/sub_package/kitty/speak/miau.py +0 -0
  1616. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/packages/sub_package/kitty/speak/purr.py +0 -0
  1617. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/packages/top_level_attributes_3/some_package/__init__.py +0 -0
  1618. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/packages/top_level_attributes_3/some_package/some_module.py +0 -0
  1619. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/plugins/code_signing/CodeSigningMain.py +0 -0
  1620. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/plugins/data_files/DataFilesMain.py +0 -0
  1621. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/plugins/data_files/data_files_package/__init__.py +0 -0
  1622. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/plugins/data_files/data_files_package/lala.txt +0 -0
  1623. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/plugins/data_files/data_files_package/sub_dir/lulu.txt +0 -0
  1624. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/plugins/data_files/test_case.nuitka-package.config.yml +0 -0
  1625. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/plugins/parameters/parameter-using-plugin.py +0 -0
  1626. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/absolute_import/AbsoluteImportMain.py +0 -0
  1627. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/absolute_import/foobar/__init__.py +0 -0
  1628. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/absolute_import/foobar/foobar.py +0 -0
  1629. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/absolute_import/foobar/local.py +0 -0
  1630. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/absolute_import/foobar/util.py +0 -0
  1631. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/case_imports1/CasedImportingMain.py +0 -0
  1632. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/case_imports1/path1/Some_Module.py +0 -0
  1633. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/case_imports1/path1/Some_Package/__init__.py +0 -0
  1634. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/case_imports1/path2/some_module.py +0 -0
  1635. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/case_imports1/path2/some_package/__init__.py +0 -0
  1636. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/case_imports2/CasedImportingMain.py +0 -0
  1637. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/case_imports2/path1/some_module.py +0 -0
  1638. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/case_imports2/path1/some_package/__init__.py +0 -0
  1639. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/case_imports2/path2/Some_Module.py +0 -0
  1640. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/case_imports2/path2/Some_Package/__init__.py +0 -0
  1641. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/case_imports3/CasedImportingMain.py +0 -0
  1642. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/case_imports3/path1/Some_Module.py +0 -0
  1643. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/case_imports3/path1/Some_Package/__init__.py +0 -0
  1644. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/case_imports3/path2/Some_Module.py +0 -0
  1645. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/case_imports3/path2/Some_Package/__init__.py +0 -0
  1646. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/cyclic_imports/CyclicImportsMain.py +0 -0
  1647. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/cyclic_imports/cyclic_importing_package/Child1.py +0 -0
  1648. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/cyclic_imports/cyclic_importing_package/Child2.py +0 -0
  1649. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/cyclic_imports/cyclic_importing_package/__init__.py +0 -0
  1650. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/dash_import/DashImportMain.py +0 -0
  1651. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/dash_import/dash-module.py +0 -0
  1652. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/dash_import/plus+module.py +0 -0
  1653. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/dash_main/Dash-Main.py +0 -0
  1654. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/deep/DeepProgramMain.py +0 -0
  1655. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/deep/some_package/DeepBrother.py +0 -0
  1656. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/deep/some_package/DeepChild.py +0 -0
  1657. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/deep/some_package/__init__.py +0 -0
  1658. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/deep/some_package/deep_package/DeepDeepChild.py +0 -0
  1659. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/deep/some_package/deep_package/__init__.py +0 -0
  1660. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/dunderinit_imports/DunderInitImportsMain.py +0 -0
  1661. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/dunderinit_imports/package/SubModule.py +0 -0
  1662. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/dunderinit_imports/package/__init__.py +0 -0
  1663. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/import_variants/ImportVariationsMain.py +0 -0
  1664. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/import_variants/some_package/Child1.py +0 -0
  1665. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/import_variants/some_package/Child2.py +0 -0
  1666. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/import_variants/some_package/Child3.py +0 -0
  1667. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/import_variants/some_package/__init__.py +0 -0
  1668. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/main_raises/ErrorMain.py +0 -0
  1669. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/main_raises/ErrorRaising.py +0 -0
  1670. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/main_raises2/ErrorInFunctionMain.py +0 -0
  1671. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/main_raises2/ErrorRaising.py +0 -0
  1672. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/module_attributes/ModuleAttributesMain.py +0 -0
  1673. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/module_attributes/package_level1/Nearby1.py +0 -0
  1674. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/module_attributes/package_level1/__init__.py +0 -0
  1675. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/module_attributes/package_level1/package_level2/Nearby2.py +0 -0
  1676. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/module_attributes/package_level1/package_level2/__init__.py +0 -0
  1677. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/module_attributes/package_level1/package_level2/package_level3/Nearby3.py +0 -0
  1678. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/module_attributes/package_level1/package_level2/package_level3/__init__.py +0 -0
  1679. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/module_exits/ErrorExitingModule.py +0 -0
  1680. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/module_exits/Main.py +0 -0
  1681. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/module_object_replacing/ModuleObjectReplacingMain.py +0 -0
  1682. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/module_object_replacing/SelfReplacingModule.py +0 -0
  1683. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/multiprocessing_using/MultiprocessingUsingMain.py +0 -0
  1684. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/multiprocessing_using/foo/__init__.py +0 -0
  1685. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/multiprocessing_using/foo/__main__.py +0 -0
  1686. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/multiprocessing_using/foo/entry.py +0 -0
  1687. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/named_imports/NamedImportsMain.py +0 -0
  1688. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/named_imports/some_package/SomeModule.py +0 -0
  1689. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/named_imports/some_package/__init__.py +0 -0
  1690. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/named_imports/some_package/sub_package/SomeModule.py +0 -0
  1691. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_code/PackageInitCodeMain.py +0 -0
  1692. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_code/some_package/SomeModule.py +0 -0
  1693. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_code/some_package/__init__.py +0 -0
  1694. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_contains_main/PackageContainsMain.py +0 -0
  1695. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_contains_main/__init__.py +0 -0
  1696. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_contains_main/local.py +0 -0
  1697. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_init_import/PackageInitImportMain.py +0 -0
  1698. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_init_import/some_package/PackageLocal.py +0 -0
  1699. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_init_import/some_package/__init__.py +0 -0
  1700. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_init_issue/PackageInitIssueMain.py +0 -0
  1701. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_init_issue/some_package/__init__.py +0 -0
  1702. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_init_issue/some_package/child_package/SomeModule.py +0 -0
  1703. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_init_issue/some_package/child_package/__init__.py +0 -0
  1704. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_missing_init/PackageMissingInitMain.py +0 -0
  1705. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_missing_init/some_package/some_module.py +0 -0
  1706. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_missing_init/some_package/sub_package/some_sub_module.py +0 -0
  1707. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_module_collision/PackageAndModuleNamedSameMain.py +0 -0
  1708. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_module_collision/Something/__init__.py +0 -0
  1709. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_module_collision/something.py +0 -0
  1710. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_overload/Main.py +0 -0
  1711. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_overload/foo/__init__.py +0 -0
  1712. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_overload/foo/bar.py +0 -0
  1713. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_overload/foo/bar2.py +0 -0
  1714. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_prevents_submodule/PackagePreventsSubmoduleMain.py +0 -0
  1715. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_prevents_submodule/some_package/__init__.py +0 -0
  1716. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_prevents_submodule/some_package/some_module.py +0 -0
  1717. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_program/PackageAsMain/__init__.py +0 -0
  1718. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/package_program/PackageAsMain/__main__.py +0 -0
  1719. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/pkgutil_itermodules/PkgUtilIterModulesMain.py +0 -0
  1720. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/pkgutil_itermodules/some_package/__init__.py +0 -0
  1721. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/pkgutil_itermodules/some_package/sub_package1/SomeModuleC.py +0 -0
  1722. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/pkgutil_itermodules/some_package/sub_package1/SomeModuleD.py +0 -0
  1723. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/pkgutil_itermodules/some_package/sub_package1/__init__.py +0 -0
  1724. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/pkgutil_itermodules/some_package/sub_package2/SomeModuleA.py +0 -0
  1725. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/pkgutil_itermodules/some_package/sub_package2/SomeModuleB.py +0 -0
  1726. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/pkgutil_itermodules/some_package/sub_package2/__init__.py +0 -0
  1727. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/pkgutil_usage/PkgUtilUsageMain.py +0 -0
  1728. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/pkgutil_usage/package/DATA_FILE.txt +0 -0
  1729. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/pkgutil_usage/package/DATA_FILE2.txt +0 -0
  1730. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/pkgutil_usage/package/DATA_FILE3.txt +0 -0
  1731. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/pkgutil_usage/package/__init__.py +0 -0
  1732. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/plugin_import/PluginImportMain.py +0 -0
  1733. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/plugin_import/some_package/__init__.py +0 -0
  1734. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/plugin_import/some_package/some_module.py +0 -0
  1735. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/reimport_main_dynamic/ImportItselfDynamicMain.py +0 -0
  1736. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/reimport_main_static/ImportItselfStaticMain.py +0 -0
  1737. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/relative_import/RelativeImportMain.py +0 -0
  1738. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/relative_import/dircache.py +0 -0
  1739. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/resource_reader37/ResourceReaderMain.py +0 -0
  1740. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/resource_reader37/some_package/DATA_FILE.txt +0 -0
  1741. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/resource_reader37/some_package/__init__.py +0 -0
  1742. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/run_all.py +0 -0
  1743. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/stdlib_overload/StdlibOverloadMain.py +0 -0
  1744. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/stdlib_overload/pyexpat.py +0 -0
  1745. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/stdlib_overload/some_package/__init__.py +0 -0
  1746. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/stdlib_overload/some_package/normal_importing.py +0 -0
  1747. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/stdlib_overload/some_package/pyexpat.py +0 -0
  1748. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/stdlib_overload/some_package/star_importing.py +0 -0
  1749. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/syntax_errors/IndentationErroring.py +0 -0
  1750. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/syntax_errors/SyntaxErroring.py +0 -0
  1751. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/syntax_errors/SyntaxErrorsMain.py +0 -0
  1752. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/unicode_bom/UnicodeBomMain.py +0 -0
  1753. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/unicode_bom/unicode_bom.py +0 -0
  1754. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/programs/with space/Space Main.py +0 -0
  1755. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/reflected/compile_itself.py +0 -0
  1756. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/run-tests +0 -0
  1757. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/BrotliUsing.py +0 -0
  1758. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/CtypesUsing.py +0 -0
  1759. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/DateutilsUsing.py +0 -0
  1760. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/FlaskUsing.py +0 -0
  1761. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/GiUsing.py +0 -0
  1762. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/GlfwUsing.py +0 -0
  1763. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/GtkUsing.py +0 -0
  1764. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/HexEncodingTest_2.py +0 -0
  1765. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/IdnaUsing.py +0 -0
  1766. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/LxmlUsing.py +0 -0
  1767. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/MatplotlibUsing.py +0 -0
  1768. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/MetadataPackagesUsing.py +0 -0
  1769. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/NumpyUsing.py +0 -0
  1770. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/OpenGLUsing.py +0 -0
  1771. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/PasslibUsing.py +0 -0
  1772. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/PendulumUsing.py +0 -0
  1773. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/PkgResourcesRequiresUsing.py +0 -0
  1774. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/PmwUsing.py +0 -0
  1775. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/PyQt5Plugins.py +0 -0
  1776. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/PyQt5SSLSupport.py +0 -0
  1777. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/PyQt5Using.py +0 -0
  1778. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/PyQt6Plugins.py +0 -0
  1779. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/PyQt6Using.py +0 -0
  1780. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/PySide2Using.py +0 -0
  1781. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/PySide6Plugins.py +0 -0
  1782. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/PySide6Using.py +0 -0
  1783. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/RsaUsing.py +0 -0
  1784. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/SetuptoolsUsing_311.py +0 -0
  1785. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/ShlibUsing.py +0 -0
  1786. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/SocketUsing.py +0 -0
  1787. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/TkInterUsing.py +0 -0
  1788. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/Urllib3Using.py +0 -0
  1789. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/Win32ComUsing.py +0 -0
  1790. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/run_all.py +0 -0
  1791. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/standalone/zip_importer/ZipImporterMain.py +0 -0
  1792. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/AsyncgenReturn36.py +0 -0
  1793. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/AwaitInModule36.py +0 -0
  1794. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/BreakWithoutLoop.py +0 -0
  1795. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/ClassReturn.py +0 -0
  1796. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/ClosureDel_2.py +0 -0
  1797. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/ContinueWithoutLoop.py +0 -0
  1798. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/DuplicateArgument.py +0 -0
  1799. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/ExecWithNesting_2.py +0 -0
  1800. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/FutureBraces.py +0 -0
  1801. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/FutureUnknown.py +0 -0
  1802. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/GeneratorExpressions38.py +0 -0
  1803. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/GeneratorReturn_2.py +0 -0
  1804. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/GlobalForParameter.py +0 -0
  1805. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/Importing32.py +0 -0
  1806. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/IndentationError.py +0 -0
  1807. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/LateFutureImport.py +0 -0
  1808. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/MisplacedFutureImport.py +0 -0
  1809. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/ModuleReturn.py +0 -0
  1810. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/NonAsciiWithoutEncoding_2.py +0 -0
  1811. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/NonlocalForParameter32.py +0 -0
  1812. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/NonlocalNotFound32.py +0 -0
  1813. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/StarImportExtra.py +0 -0
  1814. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/SyntaxError.py +0 -0
  1815. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/TryExceptAllNotLast.py +0 -0
  1816. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/TryFinallyContinue_37.py +0 -0
  1817. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/UnpackNoTuple.py +0 -0
  1818. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/UnpackTwoStars32.py +0 -0
  1819. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/YieldFromInModule.py +0 -0
  1820. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/YieldInAsync35.py +0 -0
  1821. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/YieldInGenexp38.py +0 -0
  1822. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/YieldInModule.py +0 -0
  1823. {nuitka_winsvc-2.2.3 → nuitka_winsvc-2.3.2}/tests/syntax/run_all.py +0 -0
@@ -0,0 +1,4669 @@
1
+ #########################
2
+ Nuitka Developer Manual
3
+ #########################
4
+
5
+ The purpose of this Developer Manual is to present the current design of
6
+ Nuitka, the project rules, and the motivations for choices made. It is
7
+ intended to be a guide to the source code, and to give explanations that
8
+ don't fit into the source code in comments form.
9
+
10
+ It should be used as a reference for the process of planning and
11
+ documenting decisions we made. Therefore we are e.g. presenting here the
12
+ type inference plans before implementing them. And we update them as we
13
+ proceed.
14
+
15
+ It grows out of discussions and presentations made at conferences as
16
+ well as private conversations or issue tracker.
17
+
18
+ ************
19
+ Milestones
20
+ ************
21
+
22
+ #. Feature parity with CPython, understand all the language construct
23
+ and behave absolutely compatible.
24
+
25
+ Feature parity has been reached for CPython 2.6 and 2.7. We do not
26
+ target any older CPython release. For CPython 3.3 up to 3.8 it also
27
+ has been reached. We do not target the older and practically unused
28
+ CPython 3.0 to 3.2 releases.
29
+
30
+ This milestone was reached. Dropping support for Python 2.6 and 3.3
31
+ is an option, should this prove to be any benefit. Currently it is
32
+ not, as it extends the test coverage only.
33
+
34
+ #. Create the most efficient native code from this. This means to be
35
+ fast with the basic Python object handling.
36
+
37
+ This milestone was reached, although of course, micro optimizations
38
+ to this are happening all the time.
39
+
40
+ #. Then do constant propagation, determine as many values and useful
41
+ constraints as possible at compile time and create more efficient
42
+ code.
43
+
44
+ This milestone is considered almost reached. We continue to discover
45
+ new things, but the infrastructure is there, and these are easy to
46
+ add.
47
+
48
+ #. Type inference, detect and special case the handling of strings,
49
+ integers, lists in the program.
50
+
51
+ This milestone is considered in progress.
52
+
53
+ #. Add interfacing to C code, so Nuitka can turn a ``ctypes`` binding
54
+ into an efficient binding as written with C.
55
+
56
+ This milestone is planned only.
57
+
58
+ #. Add hints module with a useful Python implementation that the
59
+ compiler can use to learn about types from the programmer.
60
+
61
+ This milestone is planned only.
62
+
63
+ *****************
64
+ Version Numbers
65
+ *****************
66
+
67
+ For Nuitka we use semantic versioning, initially with a leading zero
68
+ still, once we pass release ``1.9``, the scheme will indicate the ``10``
69
+ through using ``2.0``.
70
+
71
+ ***************
72
+ Current State
73
+ ***************
74
+
75
+ Nuitka top level works like this:
76
+
77
+ - ``nuitka.tree.Building`` outputs node tree
78
+
79
+ - ``nuitka.optimization`` enhances it as best as it can
80
+
81
+ - ``nuitka.finalization`` prepares the tree for code generation
82
+
83
+ - ``nuitka.code_generation.CodeGeneration`` orchestrates the creation
84
+ of code snippets
85
+
86
+ - ``nuitka.code_generation.*Codes`` knows how specific code kinds are
87
+ created
88
+
89
+ - ``nuitka.MainControl`` keeps it all together
90
+
91
+ This design is intended to last.
92
+
93
+ Regarding types, the state is:
94
+
95
+ - Types are always ``PyObject *``, and only a few C types, e.g.
96
+ ``nuitka_bool`` and ``nuitka_void`` and more are coming. Even for
97
+ objects, often it's know that things are e.g. really a
98
+ ``PyTupleObject **``, but no C type is available for that yet.
99
+
100
+ - There are a some specific use of types beyond "compile time
101
+ constant", that are encoded in type and value shapes, which can be
102
+ used to predict some operations, conditions, etc. if they raise, and
103
+ result types they give.
104
+
105
+ - In code generation, the supported C types are used, and sometimes we
106
+ have specialized code generation, e.g. a binary operation that takes
107
+ an ``int`` and a ``float`` and produces a ``float`` value. There will
108
+ be fallbacks to less specific types.
109
+
110
+ The expansion with more C types is currently in progress, and there will
111
+ also be alternative C types, where e.g. ``PyObject *`` and ``C long``
112
+ are in an enum that indicates which value is valid, and where special
113
+ code will be available that can avoid creating the ``PyObject **``
114
+ unless the later overflows.
115
+
116
+ ***************************************************
117
+ Setting up the Development Environment for Nuitka
118
+ ***************************************************
119
+
120
+ Currently there are very different kinds of files that we need support
121
+ for. This is best addressed with an IDE. We cover here how to setup the
122
+ most common one.
123
+
124
+ Visual Studio Code
125
+ ==================
126
+
127
+ Download Visual Studio Code from here:
128
+ https://code.visualstudio.com/download
129
+
130
+ At this time, this is the recommended IDE for Linux and Windows. This is
131
+ going to cover the plugins to install. Configuration is part of the
132
+ ``.vscode`` in your Nuitka checkout. If you are not familiar with
133
+ Eclipse, this is Free Software IDE,designed to be universally extended,
134
+ and it truly is. There are plugins available for nearly everything.
135
+
136
+ The extensions to be installed are part of the Visual Code
137
+ recommendations in ``.vscode/extensions.json`` and you will be prompted
138
+ about that and ought to install these.
139
+
140
+ Eclipse / PyCharm
141
+ =================
142
+
143
+ Don't use these anymore, we consider Visual Studio Code to be far
144
+ superior for delivering a nice out of the box environment.
145
+
146
+ *************************
147
+ Commit and Code Hygiene
148
+ *************************
149
+
150
+ In Nuitka we have tools to auto format code, you can execute them
151
+ manually, but it's probably best to execute them at commit time, to make
152
+ sure when we share code, it's already well format, and to avoid noise
153
+ doing cleanups.
154
+
155
+ The kinds of changes also often cause unnecessary merge conflicts, while
156
+ the auto format is designed to format code also in a way that it avoids
157
+ merge conflicts in the normal case, e.g. by doing imports one item per
158
+ line.
159
+
160
+ In order to set up hooks, you need to execute these commands:
161
+
162
+ .. code:: bash
163
+
164
+ # Where python is the one you use with Nuitka, this then gets all
165
+ # development requirements, can be full PATH.
166
+ python -m pip install -r requirements-devel.txt
167
+ python ./misc/install-git-hooks.py
168
+
169
+ These commands will make sure that the ``autoformat-nuitka-source`` is
170
+ run on every staged file content at the time you do the commit. For C
171
+ files, it may complain unavailability of ``clang-format``, follow it's
172
+ advice. You may call the above tool at all times, without arguments to
173
+ format call Nuitka source code.
174
+
175
+ Should you encounter problems with applying the changes to the checked
176
+ out file, you can always execute it with ``COMMIT_UNCHECKED=1``
177
+ environment set.
178
+
179
+ *********************
180
+ Coding Rules Python
181
+ *********************
182
+
183
+ These rules should generally be adhered when working on Nuitka code.
184
+ It's not library code and it's optimized for readability, and avoids all
185
+ performance optimization for itself.
186
+
187
+ Tool to format
188
+ ==============
189
+
190
+ There is a tool ``bin/autoformat-nuitka-source`` which is to apply
191
+ automatic formatting to code as much as possible. It uses ``black``
192
+ (internally) for consistent code formatting. The imports are sorted with
193
+ ``isort`` for proper order.
194
+
195
+ The tool (mostly ``black`` and ``isort``) encodes all formatting rules,
196
+ and makes the decisions for us. The idea being that we can focus on
197
+ actual code and do not have to care as much about other things. It also
198
+ deals with Windows new lines, trailing space, etc. and even sorts PyLint
199
+ disable statements.
200
+
201
+ Identifiers
202
+ ===========
203
+
204
+ Classes
205
+ -------
206
+
207
+ Classes are camel case with leading upper case. Functions and methods
208
+ are with leading verb in lower case, but also camel case. Variables and
209
+ arguments are lower case with ``_`` as a separator.
210
+
211
+ .. code:: python
212
+
213
+ class SomeClass:
214
+ def doSomething(some_parameter):
215
+ some_var = ("foo", "bar")
216
+
217
+ Base classes that are abstract have their name end with ``Base``, so
218
+ that a meta class can use that convention, and readers immediately know,
219
+ that it will not be instantiated like that.
220
+
221
+ Functions
222
+ ---------
223
+
224
+ Function calls use keyword argument preferably. These are slower in
225
+ CPython, but more readable:
226
+
227
+ .. code:: python
228
+
229
+ getSequenceCreationCode(
230
+ sequence_kind=sequence_kind, element_identifiers=identifiers, context=context
231
+ )
232
+
233
+ When the names don't add much value, sequential calls can be done:
234
+
235
+ .. code:: python
236
+
237
+ context.setLoopContinueTarget(handler_start_target)
238
+
239
+ Here, ``setLoopContinueTarget`` will be so well known that the reader is
240
+ expected to know the argument names and their meaning, but it would be
241
+ still better to add them. But in this instance, the variable name
242
+ already indicates that it is.
243
+
244
+ Module/Package Names
245
+ --------------------
246
+
247
+ Normal modules are named in camel case with leading upper case, because
248
+ of their role as singleton classes. The difference between a module and
249
+ a class is small enough and in the source code they are also used
250
+ similarly.
251
+
252
+ For the packages, no real code is allowed in their ``__init__.py`` and
253
+ they must be lower case, like e.g. ``nuitka`` or ``codegen``. This is to
254
+ distinguish them from the modules.
255
+
256
+ Packages shall only be used to group things. In
257
+ ``nuitka.code_generation`` the code generation packages are located,
258
+ while the main interface is ``nuitka.code_generation.CodeGeneration``
259
+ and may then use most of the entries as local imports.
260
+
261
+ There is no code in packages themselves. For programs, we use
262
+ ``__main__`` package to carry the actual code.
263
+
264
+ Names of modules should be plurals if they contain classes. Example is
265
+ that a ``Nodes`` module that contains a ``Node`` class.
266
+
267
+ Context Managers
268
+ ----------------
269
+
270
+ Names for context manages start with ``with``
271
+
272
+ In order to easily recognize that something is to be used as a context
273
+ manager, we follow a pattern of naming them ``withSomething``, to make
274
+ that easily recognized.
275
+
276
+ .. code:: python
277
+
278
+ with withEnvironmentPathAdded(os.path.join(sys.prefix, "bin")):
279
+ with withDirectoryChange(self.qt_datadir):
280
+ ...
281
+
282
+ This makes these easy to recognize even in their definition.
283
+
284
+ Prefer list contractions over built-ins
285
+ =======================================
286
+
287
+ This concerns ``map``, ``filter``, and ``apply``. Usage of these
288
+ built-ins is highly discouraged within Nuitka source code. Using them is
289
+ considered worth a warning by "PyLint" e.g. "Used built-in function
290
+ 'map'". We should use list contractions instead, because they are more
291
+ readable.
292
+
293
+ List contractions are a generalization for all of them. We love
294
+ readability and with Nuitka as a compiler, there won't be any
295
+ performance difference at all.
296
+
297
+ There are cases where a list contraction is faster because you can avoid
298
+ to make a function call. And there may be cases, where map is faster, if
299
+ a function must be called. These calls can be very expensive in CPython,
300
+ and if you introduce a function, just for ``map``, then it might be
301
+ slower.
302
+
303
+ But of course, Nuitka is the project to free us from what is faster and
304
+ to allow us to use what is more readable, so whatever is faster, we
305
+ don't care. We make all options equally fast and let people choose.
306
+
307
+ For Nuitka the choice is list contractions as these are more easily
308
+ changed and readable.
309
+
310
+ Look at this code examples from Python:
311
+
312
+ .. code:: python
313
+
314
+ class A:
315
+ def getX(self):
316
+ return 1
317
+
318
+ x = property(getX)
319
+
320
+
321
+ class B(A):
322
+ def getX(self):
323
+ return 2
324
+
325
+
326
+ A().x == 1 # True
327
+ B().x == 1 # True (!)
328
+
329
+ This pretty much is what makes properties bad. One would hope ``B().x``
330
+ to be ``2``, but instead it's not changed. Because of the way properties
331
+ take the functions and not members, and because they then are not part
332
+ of the class, they cannot be overloaded without redeclaring them.
333
+
334
+ Overloading is then not at all obvious anymore. Now imagine having a
335
+ setter and only overloading the getter. How to update the property
336
+ easily?
337
+
338
+ So, that's not likable about them. And then we are also for clarity in
339
+ these internal APIs too. Properties try and hide the fact that code
340
+ needs to run and may do things. So let's not use them.
341
+
342
+ For an external API you may exactly want to hide things, but internally
343
+ that has no use, and in Nuitka, every API is internal API. One exception
344
+ may be the ``hints`` module, which will gladly use such tricks for an
345
+ easier write syntax.
346
+
347
+ ****************
348
+ Coding Rules C
349
+ ****************
350
+
351
+ For the static C parts, e.g. compiled types, helper codes, the
352
+ ``clang-format`` from LLVM project is used, the tool
353
+ ``autoformat-nuitka-source`` does this for us.
354
+
355
+ We always have blocks for conditional statements to avoid typical
356
+ mistakes made by adding a statement to a branch, forgetting to make it a
357
+ block.
358
+
359
+ **********************
360
+ The "git flow" model
361
+ **********************
362
+
363
+ - The flow is used for releases and occasionally subsequent hot fixes.
364
+
365
+ A few feature branches were used so far. It allows for quick delivery
366
+ of fixes to both the stable and the development version, supported by
367
+ a git plug-in, that can be installed via "apt-get install git-flow".
368
+
369
+ - Stable (``main`` branch)
370
+
371
+ The stable version, is expected to pass all the tests at all times
372
+ and is fully supported. As soon as bugs are discovered, they are
373
+ fixed as hot fixes, and then merged to develop by the "git flow"
374
+ automatically.
375
+
376
+ - Development (``develop`` branch)
377
+
378
+ The future release, supposedly in almost ready for release state at
379
+ nearly all times, but this is less strict. It is not officially
380
+ supported, and may have problems and at times inconsistencies.
381
+ Normally this branch is supposed to not be rebased. For severe
382
+ problems it may be done though.
383
+
384
+ - Factory (default feature branch)
385
+
386
+ Code under construction. We publish commits there, that may not hold
387
+ up in testing, and before it enters develop branch. Factory may have
388
+ severe regressions frequently, and commits become **rebased all the
389
+ time**, so do not base your patches on it, please prefer the
390
+ ``develop`` branch for that, unless of course, it's about factory
391
+ code itself.
392
+
393
+ - Personal branches (jorj, orsiris, others as well)
394
+
395
+ We are currently not using this, but it's an option.
396
+
397
+ - Feature Branches
398
+
399
+ We are not currently using these. They could be used for long lived
400
+ changes that extend for multiple release cycles and are not ready
401
+ yet. Currently we perform all changes in steps that can be included
402
+ in releases or delay making those changes.
403
+
404
+ ******************************
405
+ Nuitka "git/github" Workflow
406
+ ******************************
407
+
408
+ - Forking and cloning
409
+
410
+ You need to have git installed and GitHub account. Goto Nuitka
411
+ repository <https://github.com/Nuitka/Nuitka> and fork the
412
+ repository.
413
+
414
+ To clone it to your local machine execute the following your git
415
+ bash:
416
+
417
+ .. code:: bash
418
+
419
+ git clone https://github.com/your-user-name/Nuitka.git
420
+ cd Nuitka
421
+ git remote add upstream https://github.com/Nuitka/Nuitka.git
422
+
423
+ - Create a Branch
424
+
425
+ .. code:: bash
426
+
427
+ git checkout develop
428
+ git pull --rebase upstream
429
+ git checkout -b feature_branch
430
+
431
+ If you are having merge conflicts while doing the previous step, then
432
+ check out (DON'T FORGET TO SAVE YOUR CHANGES FIRST IF ANY):
433
+ <https://stackoverflow.com/questions/1125968/how-do-i-force-git-pull-to-overwrite-local-files>
434
+
435
+ - In case you have an existing branch rebase it to develop
436
+
437
+ .. code:: bash
438
+
439
+ git fetch upstream
440
+ git rebase upstream/develop
441
+
442
+ Fix the merge conflicts if any and continue or skip commit if it is
443
+ not your. Sometimes for important bug fixes, develop history gets
444
+ rewritten. In that case, old and new commits will conflict during
445
+ your rebase, and skipping is the best way to go.
446
+
447
+ .. code:: bash
448
+
449
+ git rebase --continue
450
+ # not your commit:
451
+ git rebase --skip
452
+
453
+ If anything goes wrong while rebasing:
454
+
455
+ .. code:: bash
456
+
457
+ git rebase --abort
458
+
459
+ - Making changes
460
+
461
+ .. code:: bash
462
+
463
+ git commit -a -m "Commit Message"
464
+ git push -u origin # once, later always:
465
+ git push
466
+
467
+ **********************************
468
+ API Documentation and Guidelines
469
+ **********************************
470
+
471
+ There is API documentation generated with ``doxygen``, available at
472
+ `this location <https://nuitka.net/apidoc>`__ .
473
+
474
+ To ensure meaningful ``doxygen`` output, the following guidelines must
475
+ be observed when creating or updating Python source:
476
+
477
+ Use of Standard Python ``__doc__`` Strings
478
+ ==========================================
479
+
480
+ Every class and every method should be documented via the standard
481
+ Python delimiters (``""" ... """``) in the usual way.
482
+
483
+ Special ``doxygen`` Anatomy of ``__doc__``
484
+ ==========================================
485
+
486
+ .. note::
487
+
488
+ We are replacing Doxygen with sphinx, this is all obsolete
489
+
490
+ - Immediately after the leading ``"""``, and after 1 space on the same
491
+ line, enter a brief description or title of the class or method. This
492
+ must be 1 line and be followed by at least 1 empty line.
493
+
494
+ - Depending on the item, choose from the following "sections" to
495
+ describe what the item is and does.
496
+
497
+ Each section name is coded on its own line, aligned with the leading
498
+ ``"""`` and followed by a colon ":". Anything following the section,
499
+ must start on a new line and be indented by 4 spaces relative to the
500
+ section. Except for the first section (``Notes:``) after the title,
501
+ sections need not be preceded by empty lines -- but it is good
502
+ practice to still do that.
503
+
504
+ - ``Notes:`` detailed description of the item, any length.
505
+
506
+ May contain line breaks with each new line starting aligned with
507
+ previous one. The text will automatically be joined across line
508
+ breaks and be reformatted in the browser.
509
+
510
+ If you describe details for a class, you can do so **without**
511
+ using this section header and all formatting will still work fine.
512
+ If you however omit the ``Notes:`` for methods, then the text will
513
+ be interpreted **as code**, be shown in an ugly monospaced font,
514
+ and no automatic line breaks will occur in the browser.
515
+
516
+ - ``Args:`` positional arguments.
517
+
518
+ Each argument then follows, starting on a new line and indented by
519
+ 4 spaces. The argument name must be followed by a colon ``:`` or
520
+ double hash ``--``, followed by a description of arbitrary length.
521
+
522
+ The description can be separated by line breaks.
523
+
524
+ - ``Kwargs:`` keyword arguments. Same rules as for args.
525
+
526
+ - ``Returns:`` description of what will be returned if applicable
527
+ (any length).
528
+
529
+ - ``Yields:`` synonymous for ``Returns:``.
530
+
531
+ - ``Raises:`` name any exceptions that may be raised.
532
+
533
+ - ``Examples:`` specify any example code.
534
+
535
+ .. code:: python
536
+
537
+ def foo(p1, p2, kw1=None, kw2=None):
538
+ """This is an example method.
539
+
540
+ Notes:
541
+ It does one or the other indispensable things based on some parameters
542
+ and proudly returns a dictionary.
543
+
544
+ Args:
545
+ p1: parameter one
546
+ p2: parameter two
547
+
548
+ Kwargs:
549
+ kw1: keyword one
550
+ kw2: keyword two
551
+
552
+ Returns:
553
+ A dictionary calculated from the input.
554
+
555
+ Raises:
556
+ ValueError, IndexError
557
+
558
+ Examples:
559
+ >>> foo(1, 2, kw1=3, kw2=4)
560
+ {'a': 4, 'b': 6}
561
+ """
562
+
563
+ *********************
564
+ Checking the Source
565
+ *********************
566
+
567
+ The static checking for errors is currently done with ``PyLint``. In the
568
+ future, Nuitka itself will gain the ability to present its findings in a
569
+ similar way, but this is not a priority, and we are not there yet.
570
+
571
+ So, we currently use ``PyLint`` with options defined in a script.
572
+
573
+ .. code:: bash
574
+
575
+ ./bin/check-nuitka-with-pylint
576
+
577
+ The above command is expected to give no warnings. It is also run on our
578
+ CI and we will not merge branches that do not pass.
579
+
580
+ *******************
581
+ Running the Tests
582
+ *******************
583
+
584
+ This section describes how to run Nuitka tests.
585
+
586
+ Running all Tests
587
+ =================
588
+
589
+ The top level access to the tests is as simple as this:
590
+
591
+ .. code:: bash
592
+
593
+ ./tests/run-tests
594
+
595
+ For fine grained control, it has the following options:
596
+
597
+ .. code::
598
+
599
+ --skip-basic-tests The basic tests, execute these to check if Nuitka is
600
+ healthy. Default is True.
601
+ --skip-syntax-tests The syntax tests, execute these to check if Nuitka
602
+ handles Syntax errors fine. Default is True.
603
+ --skip-program-tests The programs tests, execute these to check if Nuitka
604
+ handles programs, e.g. import recursions, etc. fine.
605
+ Default is True.
606
+ --skip-package-tests The packages tests, execute these to check if Nuitka
607
+ handles packages, e.g. import recursions, etc. fine.
608
+ Default is True.
609
+ --skip-optimizations-tests
610
+ The optimization tests, execute these to check if
611
+ Nuitka does optimize certain constructs fully away.
612
+ Default is True.
613
+ --skip-standalone-tests
614
+ The standalone tests, execute these to check if Nuitka
615
+ standalone mode, e.g. not referring to outside,
616
+ important 3rd library packages like PyQt fine. Default
617
+ is True.
618
+ --skip-reflection-test
619
+ The reflection test compiles Nuitka with Nuitka, and
620
+ then Nuitka with the compile Nuitka and compares the
621
+ outputs. Default is True.
622
+ --skip-cpython26-tests
623
+ The standard CPython2.6 test suite. Execute this for
624
+ all corner cases to be covered. With Python 2.7 this
625
+ covers exception behavior quite well. Default is True.
626
+ --skip-cpython27-tests
627
+ The standard CPython2.7 test suite. Execute this for
628
+ all corner cases to be covered. With Python 2.6 these
629
+ are not run. Default is True.
630
+ --skip-cpython32-tests
631
+ The standard CPython3.2 test suite. Execute this for
632
+ all corner cases to be covered. With Python 2.6 these
633
+ are not run. Default is True.
634
+ --skip-cpython33-tests
635
+ The standard CPython3.3 test suite. Execute this for
636
+ all corner cases to be covered. With Python 2.x these
637
+ are not run. Default is True.
638
+ --skip-cpython34-tests
639
+ The standard CPython3.4 test suite. Execute this for
640
+ all corner cases to be covered. With Python 2.x these
641
+ are not run. Default is True.
642
+ --skip-cpython35-tests
643
+ The standard CPython3.5 test suite. Execute this for
644
+ all corner cases to be covered. With Python 2.x these
645
+ are not run. Default is True.
646
+ --skip-cpython36-tests
647
+ The standard CPython3.6 test suite. Execute this for
648
+ all corner cases to be covered. With Python 2.x these
649
+ are not run. Default is True.
650
+ --skip-cpython37-tests
651
+ The standard CPython3.7 test suite. Execute this for
652
+ all corner cases to be covered. With Python 2.x these
653
+ are not run. Default is True.
654
+ --skip-cpython38-tests
655
+ The standard CPython3.8 test suite. Execute this for
656
+ all corner cases to be covered. With Python 2.x these
657
+ are not run. Default is True.
658
+ --skip-cpython39-tests
659
+ The standard CPython3.9 test suite. Execute this for
660
+ all corner cases to be covered. With Python 2.x these
661
+ are not run. Default is True.
662
+ --skip-cpython310-tests
663
+ The standard CPython3.10 test suite. Execute this for
664
+ all corner cases to be covered. With Python 2.x these
665
+ are not run. Default is True.
666
+ --skip-cpython311-tests
667
+ The standard CPython3.11 test suite. Execute this for
668
+ all corner cases to be covered. With Python 2.x these
669
+ are not run. Default is True.
670
+ --skip-cpython312-tests
671
+ The standard CPython3.12 test suite. Execute this for
672
+ all corner cases to be covered. With Python 2.x these
673
+ are not run. Default is True.
674
+ --no-python2.6 Do not use Python 2.6 even if available on the system.
675
+ Default is False.
676
+ --no-python2.7 Do not use Python 2.7 even if available on the system.
677
+ Default is False.
678
+ --no-python3.3 Do not use Python 3.3 even if available on the system.
679
+ Default is False.
680
+ --no-python3.4 Do not use Python 3.4 even if available on the system.
681
+ Default is False.
682
+ --no-python3.5 Do not use Python 3.5 even if available on the system.
683
+ Default is False.
684
+ --no-python3.6 Do not use Python 3.6 even if available on the system.
685
+ Default is False.
686
+ --no-python3.7 Do not use Python 3.7 even if available on the system.
687
+ Default is False.
688
+ --no-python3.8 Do not use Python 3.8 even if available on the system.
689
+ Default is False.
690
+ --no-python3.9 Do not use Python 3.9 even if available on the system.
691
+ Default is False.
692
+ --no-python3.10 Do not use Python 3.10 even if available on the system.
693
+ Default is False.
694
+ --no-python3.11 Do not use Python 3.11 even if available on the system.
695
+ Default is False.
696
+ --no-python3.12 Do not use Python 3.12 even if available on the system.
697
+ Default is False.
698
+ --coverage Make a coverage analysis, that does not really check.
699
+ Default is False.
700
+
701
+ You will only run the CPython test suites, if you have the submodules of
702
+ the Nuitka git repository checked out. Otherwise, these will be skipped
703
+ with a warning that they are not available.
704
+
705
+ The policy is generally, that ``./test/run-tests`` running and passing
706
+ all the tests on Linux and Windows shall be considered sufficient for a
707
+ release, but of course, depending on changes going on, that might have
708
+ to be expanded.
709
+
710
+ Basic Tests
711
+ ===========
712
+
713
+ You can run the "basic" tests like this:
714
+
715
+ .. code:: bash
716
+
717
+ ./tests/basics/run_all.py search
718
+
719
+ These tests normally give sufficient coverage to assume that a change is
720
+ correct, if these "basic" tests pass. The most important constructs and
721
+ built-ins are exercised.
722
+
723
+ To control the Python version used for testing, you can set the
724
+ ``PYTHON`` environment variable to e.g. ``python3.5`` (can also be full
725
+ path), or simply execute the ``run_all.py`` script directly with the
726
+ intended version, as it is portable across all supported Python
727
+ versions, and defaults testing with the Python version is run with.
728
+
729
+ Syntax Tests
730
+ ============
731
+
732
+ Then there are "syntax" tests, i.e. language constructs that need to
733
+ give a syntax error.
734
+
735
+ It sometimes so happens that Nuitka must do this itself, because the
736
+ ``ast.parse`` doesn't see the problem and raises no ``SyntaxError`` of
737
+ its own. These cases are then covered by tests to make sure they work as
738
+ expected.
739
+
740
+ Using the ``global`` statement on a function argument is an example of
741
+ this. These tests make sure that the errors of Nuitka and CPython are
742
+ totally the same for this:
743
+
744
+ .. code:: bash
745
+
746
+ ./tests/syntax/run_all.py search
747
+
748
+ Program Tests
749
+ =============
750
+
751
+ Then there are small "programs" tests, that e.g. exercise many kinds of
752
+ import tricks and are designed to reveal problems with inter-module
753
+ behavior. These can be run like this:
754
+
755
+ .. code:: bash
756
+
757
+ ./tests/programs/run_all.py search
758
+
759
+ Generated Tests
760
+ ===============
761
+
762
+ There are tests, which are generated from Jinja2 templates. They aim at
763
+ e.g. combining at types with operations, in-place or not, or large
764
+ constants. These can be run like this:
765
+
766
+ .. code:: bash
767
+
768
+ ./tests/generated/run_all.py search
769
+
770
+ Compile Nuitka with Nuitka
771
+ ==========================
772
+
773
+ And there is the "compile itself" or "reflected" test. This test makes
774
+ Nuitka compile itself and compare the resulting C++ when running
775
+ compiled to non-compiled, which helps to find in-determinism.
776
+
777
+ The test compiles every module of Nuitka into an extension module and
778
+ all of Nuitka into a single binary.
779
+
780
+ That test case also gives good coverage of the ``import`` mechanisms,
781
+ because Nuitka uses a lot of packages and imports between them.
782
+
783
+ .. code:: bash
784
+
785
+ ./tests/reflected/compile_itself.py
786
+
787
+ *********************
788
+ Internal/Plugin API
789
+ *********************
790
+
791
+ The documentation from the source code for both the Python and the C
792
+ parts are published as `Nuitka API <https://nuitka.net/apidoc>`__ and
793
+ arguably in a relatively bad shape as we started generating those with
794
+ Doxygen only relatively late.
795
+
796
+ .. code:: bash
797
+
798
+ doxygen ./doc/Doxyfile
799
+ xdg-open html
800
+
801
+ Improvements have already been implemented for plugins: The plugin base
802
+ class defined in ``PluginBase.py`` (which is used as a template for all
803
+ plugins) is fully documented in Doxygen now. The same is true for the
804
+ recently added standard plugins ``NumpyPlugin.py`` and
805
+ ``TkinterPlugin.py``. These will be uploaded very soon.
806
+
807
+ Going forward, this will also happen for the remaining standard plugins.
808
+
809
+ Please find `here
810
+ <https://github.com/Nuitka/Nuitka/blob/develop/UserPlugin-Creation.rst>`__
811
+ a detailed description of how to write your own plugin.
812
+
813
+ To learn about plugin option specification consult `this document
814
+ <https://github.com/Nuitka/Nuitka/blob/develop/Using-Plugin-Options.rst>`__.
815
+
816
+ *********************************
817
+ Working with the CPython suites
818
+ *********************************
819
+
820
+ Resetting CPython suites
821
+ ========================
822
+
823
+ The CPython test suites are different branches of the same submodule.
824
+ When you update your git checkout, they will frequently become detached.
825
+ In this case, simply execute this command:
826
+
827
+ .. code:: bash
828
+
829
+ git submodule foreach 'git fetch && git checkout $(basename $(pwd)) && \
830
+ git reset --hard origin/$(basename $(pwd))'
831
+
832
+ Added new CPython suites
833
+ ========================
834
+
835
+ When adding a test suite, for a new version, proceed like this, of
836
+ course while adapting of course the names. These are the commands used
837
+ for adding CPython313 based on the CPython312 branch.
838
+
839
+ .. code:: bash
840
+
841
+ # Switch to a new branch.
842
+ git checkout CPython312
843
+ git branch CPython313
844
+ git checkout CPython313
845
+
846
+ # Delete all but root commit
847
+ git reset --hard `git log --root --oneline --reverse | head -1 | cut -d' ' -f1`
848
+
849
+ # Switch test data to upstream ones.
850
+ rm -rf test
851
+ cp -r ~/repos/Nuitka-references/final/Python-3.13.0/Lib/test test
852
+ git add test
853
+
854
+ # Update commit message to mention proper Python version.
855
+ git commit --amend -m "Initial commit of Python tests as in 3.13.0"
856
+
857
+ # Push to github, setting upstream for branch.
858
+ git push -u
859
+
860
+ # Cherry pick the removal commits from previous branches.
861
+ git log origin/CPython312 --reverse --oneline | grep ' Removed' | cut -d' ' -f1 | xargs git cherry-pick
862
+ # When being prompted for merge conflicts with the deleted files:
863
+ git status | sed -n 's/deleted by them://p' | xargs git rm --ignore-unmatch x ; git cherry-pick --continue
864
+
865
+ # Push to github, this is useful.
866
+ git push
867
+
868
+ # Cherry pick the first commit of 'run_all.py', the copy it from the last state, and amend the commits.
869
+ git log --reverse origin/CPython312 --oneline -- run_all.py | head -1 | cut -d' ' -f1 | xargs git cherry-pick
870
+ git checkout origin/CPython312 -- run_all.py
871
+ chmod +x run_all.py
872
+ sed -i -e 's#python3.12#python3.13#' run_all.py
873
+ git commit --amend --no-edit run_all.py
874
+
875
+ # Same for 'update_doctest_generated.py'
876
+ git log --reverse origin/CPython312 --oneline -- update_doctest_generated.py | head -1 | cut -d' ' -f1 | xargs git cherry-pick
877
+ git checkout origin/CPython312 -- update_doctest_generated.py
878
+ chmod +x update_doctest_generated.py
879
+ sed -i -e 's#python3.12#python3.13#' update_doctest_generated.py
880
+ git commit --amend --no-edit update_doctest_generated.py
881
+
882
+ # Same for .gitignore
883
+ git log --reverse origin/CPython312 --oneline -- .gitignore | head -1 | cut -d' ' -f1 | xargs git cherry-pick
884
+ git checkout origin/CPython312 -- .gitignore
885
+ git commit --amend --no-edit .gitignore
886
+
887
+ # Now cherry-pick all commits of test support, these disable network, audio, GUI, random filenames and more
888
+ # and are crucial for deterministic outputs and non-reliance on outside stuff.
889
+ git log --reverse origin/CPython312 --oneline -- test/support/__init__.py | tail -n +2 | cut -d' ' -f1 | xargs git cherry-pick
890
+
891
+ git push
892
+
893
+ *********************
894
+ Design Descriptions
895
+ *********************
896
+
897
+ These should be a lot more and contain graphics from presentations
898
+ given. It will be filled in, but not now.
899
+
900
+ Nuitka Logo
901
+ ===========
902
+
903
+ The logo was submitted by "dr. Equivalent". It's source is contained in
904
+ ``doc/Logo`` where 3 variants of the logo in SVG are placed.
905
+
906
+ - Symbol only (symbol)
907
+
908
+ .. code:: rest
909
+
910
+ .. image:: doc/images/Nuitka-Logo-Symbol.png
911
+ :alt: Nuitka Logo
912
+
913
+ - Text next to symbol (horizontal)
914
+
915
+ .. code:: rest
916
+
917
+ .. image:: doc/images/Nuitka-Logo-Horizontal.png
918
+ :alt: Nuitka Logo
919
+
920
+ - Text beneath symbol (vertical)
921
+
922
+ .. code:: rest
923
+
924
+ .. image:: doc/images/Nuitka-Logo-Vertical.png
925
+ :alt: Nuitka Logo
926
+
927
+ From these logos, PNG images, and "favicons", and are derived.
928
+
929
+ The exact ImageMagick commands are in
930
+ ``nuitka/tools/release/Documentation``, but are not executed each time,
931
+ the commands are also replicated here:
932
+
933
+ .. code:: bash
934
+
935
+ convert -background none doc/Logo/Nuitka-Logo-Symbol.svg doc/images/Nuitka-Logo-Symbol.png
936
+ convert -background none doc/Logo/Nuitka-Logo-Vertical.svg doc/images/Nuitka-Logo-Vertical.png
937
+ convert -background none doc/Logo/Nuitka-Logo-Horizontal.svg doc/images/Nuitka-Logo-Horizontal.png
938
+
939
+ Choice of the Target Language
940
+ =============================
941
+
942
+ - Choosing the target language was important decision. factors were:
943
+
944
+ - The portability of Nuitka is decided here
945
+ - How difficult is it to generate the code?
946
+ - Does the Python C-API have bindings?
947
+ - Is that language known?
948
+ - Does the language aid to find bugs?
949
+
950
+ The *decision for C11* is ultimately one for portability, general
951
+ knowledge of the language and for control over created code, e.g. being
952
+ able to edit and try that quickly.
953
+
954
+ The current status is to use pure C11. All code compiles as C11, and
955
+ also in terms of workaround to missing compiler support as C++03. This
956
+ is mostly needed, because MSVC does not support C. Naturally we are not
957
+ using any C++ features, just the allowances of C++ features that made it
958
+ into C11, which is e.g. allowing late definitions of variables.
959
+
960
+ Use of Scons internally
961
+ =======================
962
+
963
+ Nuitka does not involve Scons in its user interface at all; Scons is
964
+ purely used internally. Nuitka itself, being pure Python, will run
965
+ without any build process just fine.
966
+
967
+ Nuitka simply prepares ``<program>.build`` folders with lots of files
968
+ and tasks scons to execute the final build, after which Nuitka again
969
+ will take control and do more work as necessary.
970
+
971
+ .. note::
972
+
973
+ When we speak of "standalone" mode, this is handled outside of Scons,
974
+ and after it, creating the ".dist" folder. This is done in
975
+ ``nuitka.MainControl`` module.
976
+
977
+ For interfacing to Scons, there is the module
978
+ ``nuitka.build.SconsInterface`` that will support calling ``scons`` -
979
+ potentially from one of two inline copies (one for before / one for
980
+ Python 3.5 or later). These are mainly used on Windows or when using
981
+ source releases - and passing arguments to it. These arguments are
982
+ passed as ``key=value``, and decoded in the scons file of Nuitka.
983
+
984
+ The scons file is named ``SingleExe.scons`` for lack of better name.
985
+ It's really wrong now, but we have yet to find a better name. It once
986
+ expressed the intention to be used to create executables, but the same
987
+ works for modules too, as in terms of building, and to Scons, things
988
+ really are the same.
989
+
990
+ The scons file supports operation in multiple modes for many things, and
991
+ modules is just one of them. It runs outside of Nuitka process scope,
992
+ even with a different Python version potentially, so all the information
993
+ must be passed on the command line.
994
+
995
+ What follows is the (lengthy) list of arguments that the scons file
996
+ processes:
997
+
998
+ - ``source_dir``
999
+
1000
+ Where is the generated C source code. Scons will just compile
1001
+ everything it finds there. No list of files is passed, but instead
1002
+ this directory is being scanned.
1003
+
1004
+ - ``nuitka_src``
1005
+
1006
+ Where do the include files and static C parts of Nuitka live. These
1007
+ provide e.g. the implementation of compiled function, generators, and
1008
+ other helper codes, this will point to where ``nuitka.build`` package
1009
+ lives normally.
1010
+
1011
+ - ``module_mode``
1012
+
1013
+ Build a module instead of a program.
1014
+
1015
+ - ``result_base``
1016
+
1017
+ This is not a full name, merely the basename for the result to be
1018
+ produced, but with path included, and the suffix comes from module or
1019
+ executable mode.
1020
+
1021
+ - ``debug_mode``
1022
+
1023
+ Enable debug mode, which is a mode, where Nuitka tries to help
1024
+ identify errors in itself, and will generate less optimal code. This
1025
+ also asks for warnings, and makes the build fail if there are any.
1026
+ Scons will pass different compiler options in this case.
1027
+
1028
+ - ``python_debug``
1029
+
1030
+ Compile and link against Python debug mode, which does assertions and
1031
+ extra checks, to identify errors, mostly related to reference
1032
+ counting. May make the build fail, if no debug build library of
1033
+ CPython is available. On Windows it is possible to install it for
1034
+ CPython3.5 or higher.
1035
+
1036
+ - ``full_compat_mode``
1037
+
1038
+ Full compatibility, even where it's stupid, i.e. do not provide
1039
+ information, even if available, in order to assert maximum
1040
+ compatibility. Intended to control the level of compatibility to
1041
+ absurd.
1042
+
1043
+ - ``experimental_mode``
1044
+
1045
+ Do things that are not yet accepted to be safe.
1046
+
1047
+ - ``lto_mode``
1048
+
1049
+ Make use of link time optimization of gcc compiler if available and
1050
+ known good with the compiler in question. So far, this was not found
1051
+ to make major differences.
1052
+
1053
+ - ``disable_console``
1054
+
1055
+ Windows subsystem mode: Disable console for windows builds.
1056
+
1057
+ - ``unstripped_mode``
1058
+
1059
+ Unstripped mode: Do not remove debug symbols.
1060
+
1061
+ - ``clang_mode``
1062
+
1063
+ Clang compiler mode, default on macOS X and FreeBSD, optional on
1064
+ Linux.
1065
+
1066
+ - ``mingw_mode``
1067
+
1068
+ MinGW compiler mode, optional and useful on Windows only.
1069
+
1070
+ - ``standalone_mode``
1071
+
1072
+ Building a standalone distribution for the binary.
1073
+
1074
+ - ``show_scons``
1075
+
1076
+ Show scons mode, output information about Scons operation. This will
1077
+ e.g. also output the actual compiler used, output from compilation
1078
+ process, and generally debug information relating to be build
1079
+ process.
1080
+
1081
+ - ``python_prefix``
1082
+
1083
+ Home of Python to be compiled against, used to locate headers and
1084
+ libraries.
1085
+
1086
+ - ``target_arch``
1087
+
1088
+ Target architecture to build. Only meaningful on Windows.
1089
+
1090
+ - ``python_version``
1091
+
1092
+ The major version of Python built against.
1093
+
1094
+ - ``abiflags``
1095
+
1096
+ The flags needed for the Python ABI chosen. Might be necessary to
1097
+ find the folders for Python installations on some systems.
1098
+
1099
+ - ``icon_path``
1100
+
1101
+ The icon to use for Windows programs if given.
1102
+
1103
+ Locating Modules and Packages
1104
+ =============================
1105
+
1106
+ The search for modules used is driven by ``nuitka.importing.Importing``
1107
+ module.
1108
+
1109
+ - Quoting the ``nuitka.importing.Importing`` documentation:
1110
+
1111
+ Locating modules and package source on disk.
1112
+
1113
+ The actual import of a module would already execute code that changes
1114
+ things. Imagine a module that does ``os.system()``, it would be done
1115
+ during compilation. People often connect to databases, and these kind
1116
+ of things, at import time.
1117
+
1118
+ Therefore CPython exhibits the interfaces in an ``imp`` module in
1119
+ standard library, which one can use those to know ahead of time, what
1120
+ file import would load. For us unfortunately there is nothing in
1121
+ CPython that is easily accessible and gives us this functionality for
1122
+ packages and search paths exactly like CPython does, so we implement
1123
+ here a multi step search process that is compatible.
1124
+
1125
+ This approach is much safer of course and there is no loss. To
1126
+ determine if it's from the standard library, one can abuse the
1127
+ attribute ``__file__`` of the ``os`` module like it's done in
1128
+ ``isStandardLibraryPath`` of this module.
1129
+
1130
+ End quoting the ``nuitka.importing.Importing`` documentation.
1131
+
1132
+ - Role
1133
+
1134
+ This module serves the recursion into modules and analysis if a
1135
+ module is a known one. It will give warnings for modules attempted to
1136
+ be located, but not found. These warnings are controlled by a while
1137
+ list inside the module.
1138
+
1139
+ The decision making and caching are located in the ``nuitka.tree``
1140
+ package, in modules ``nuitka.tree.Recursion`` and
1141
+ ``nuitka.tree.ImportCache``. Each module is only considered once (then
1142
+ cached), and we need to obey lots of user choices, e.g. to compile a
1143
+ standard library or not.
1144
+
1145
+ Hooking for module ``import`` process
1146
+ =====================================
1147
+
1148
+ Currently, in generated code, for every ``import`` a normal
1149
+ ``__import__()`` built-in call is executed. The
1150
+ ``nuitka/build/static_src/MetaPathBasedLoader.c`` file provides the
1151
+ implementation of a ``sys.meta_path`` hook.
1152
+
1153
+ This meta path based importer allows us to have the Nuitka provided
1154
+ module imported even when imported by non-compiled code.
1155
+
1156
+ .. note::
1157
+
1158
+ Of course, it would make sense to compile time detect which module it
1159
+ is that is being imported and then to make it directly. At this time,
1160
+ we don't have this inter-module optimization yet, mid-term it should
1161
+ become easy to add.
1162
+
1163
+ Supporting ``__class__`` of Python3
1164
+ ===================================
1165
+
1166
+ In Python3 the handling of ``__class__`` and ``super`` is different from
1167
+ Python2. It used to be a normal variable, and now the following things
1168
+ have changed.
1169
+
1170
+ - The use of the ``super`` variable name triggers the addition of a
1171
+ closure variable ``__class__``, as can be witnessed by the following
1172
+ code:
1173
+
1174
+ .. code:: python
1175
+
1176
+ class X:
1177
+ def f1(self):
1178
+ print(locals())
1179
+
1180
+ def f2(self):
1181
+ print(locals())
1182
+ super # Just using the name, not even calling it.
1183
+
1184
+
1185
+ x = X()
1186
+ x.f1()
1187
+ x.f2()
1188
+
1189
+ Output is:
1190
+
1191
+ .. code::
1192
+
1193
+ {'self': <__main__.X object at 0x7f1773762390>''} {'self':
1194
+ <__main__.X object at 0x7f1773762390>, '__class__': <class
1195
+ '__main__.X'>}
1196
+
1197
+ - This value of ``__class__`` is also available in the child functions.
1198
+
1199
+ - The parser marks up code objects usage of "super". It doesn't have to
1200
+ be a call, it can also be a local variable. If the ``super`` built-in
1201
+ is assigned to another name and that is used without arguments, it
1202
+ won't work unless ``__class__`` is taken as a closure variable.
1203
+
1204
+ - As can be seen in the CPython3 code, the closure value is added after
1205
+ the class creation is performed.
1206
+
1207
+ - It appears, that only functions locally defined to the class are
1208
+ affected and take the closure.
1209
+
1210
+ This left Nuitka with the strange problem, of how to emulate that.
1211
+
1212
+ The solution is this:
1213
+
1214
+ - Under Python3, usage of ``__class__`` as a reference in a child
1215
+ function body is mandatory. It remains that way until all variable
1216
+ names have been resolved.
1217
+
1218
+ - When recognizing calls to ``super`` without arguments, make the arguments
1219
+ into variable reference to ``__class__`` and potentially ``self``
1220
+ (actually first argument name).
1221
+
1222
+ - After all variables have been known, and no suspicious unresolved
1223
+ calls to anything named ``super`` are down, then unused references
1224
+ are optimized away by the normal unused closure variable.
1225
+
1226
+ - Class dictionary definitions are added.
1227
+
1228
+ These are special direct function calls, ready to propagate also
1229
+ "bases" and "metaclass" values, which need to be calculated outside.
1230
+
1231
+ The function bodies used for classes will automatically store
1232
+ ``__class__`` as a shared local variable, if anything uses it. And if
1233
+ it's not assigned by user code, it doesn't show up in the "locals()"
1234
+ used for dictionary creation.
1235
+
1236
+ Existing ``__class__`` local variable values are in fact provided as
1237
+ closure, and overridden with the built class , but they should be
1238
+ used for the closure giving, before the class is finished.
1239
+
1240
+ So ``__class__`` will be local variable of the class body, until the
1241
+ class is built, then it will be the ``__class__`` itself.
1242
+
1243
+ Frame Stack
1244
+ ===========
1245
+
1246
+ In Python, every function, class, and module has a frame. It is created
1247
+ when the scope is entered, and there is a stack of these at run time,
1248
+ which becomes visible in tracebacks in case of exceptions.
1249
+
1250
+ The choice of Nuitka is to make this an explicit element of the node
1251
+ tree, that are as such subject to optimization. In cases, where they are
1252
+ not needed, they may be removed.
1253
+
1254
+ Consider the following code.
1255
+
1256
+ .. code:: python
1257
+
1258
+ def f():
1259
+ if someNotRaisingCall():
1260
+ return somePotentiallyRaisingCall()
1261
+ else:
1262
+ return None
1263
+
1264
+ In this example, the frame is not needed for all the code, because the
1265
+ condition checked wouldn't possibly raise at all. The idea is the make
1266
+ the frame guard explicit and then to reduce its scope whenever possible.
1267
+
1268
+ So we start out with code like this one:
1269
+
1270
+ .. code:: python
1271
+
1272
+ def f():
1273
+ with frame_guard("f"):
1274
+ if someNotRaisingCall():
1275
+ return somePotentiallyRaisingCall()
1276
+ else:
1277
+ return None
1278
+
1279
+ This is to be optimized into:
1280
+
1281
+ .. code:: python
1282
+
1283
+ def f():
1284
+ if someNotRaisingCall():
1285
+ with frame_guard("f"):
1286
+ return somePotentiallyRaisingCall()
1287
+ else:
1288
+ return None
1289
+
1290
+ Notice how the frame guard taking is limited and may be avoided, or in
1291
+ best cases, it might be removed completely. Also this will play a role
1292
+ when in-lining function. The frame stack entry will then be
1293
+ automatically preserved without extra care.
1294
+
1295
+ .. note::
1296
+
1297
+ In the actual code, ``nuitka.nodes.FrameNodes.StatementsFrame`` is
1298
+ represents this as a set of statements to be guarded by a frame
1299
+ presence.
1300
+
1301
+ Parameter Parsing
1302
+ =================
1303
+
1304
+ The parsing of parameters is very convoluted in Python, and doing it in
1305
+ a compatible way is not that easy. This is a description of the required
1306
+ process, for an easier overview.
1307
+
1308
+ Input
1309
+ -----
1310
+
1311
+ The input is an argument ``tuple`` (the type is fixed), which contains
1312
+ the positional arguments, and potentially an argument ``dict`` (type is
1313
+ fixed as well, but could also be ``NULL``, indicating that there are no
1314
+ keyword arguments.
1315
+
1316
+ Keyword dictionary
1317
+ ------------------
1318
+
1319
+ The keyword argument dictionary is checked first. Anything in there,
1320
+ that cannot be associated, either raise an error, or is added to a
1321
+ potentially given star dict argument. So there are two major cases.
1322
+
1323
+ - No star dict argument: Iterate over dictionary, and assign or raise
1324
+ errors.
1325
+
1326
+ This check covers extra arguments given.
1327
+
1328
+ - With star dict argument: Iterate over dictionary, and assign or raise
1329
+ errors.
1330
+
1331
+ Interesting case for optimization are no positional arguments, then
1332
+ no check is needed, and the keyword argument dictionary could be used
1333
+ as the star argument. Should it change, a copy is needed though.
1334
+
1335
+ What's noteworthy here, is that in comparison to the keywords, we can
1336
+ hope that they are the same value as we use. The interning of strings
1337
+ increases chances for non-compiled code to do that, esp. for short
1338
+ names.
1339
+
1340
+ We then can do a simple ``is`` comparison and only fall back to real
1341
+ string ``==`` comparisons, after all of these failed. That means more
1342
+ code, but also a lot faster code in the positive case.
1343
+
1344
+ Argument tuple
1345
+ --------------
1346
+
1347
+ After this completed, the argument tuple is up for processing. The first
1348
+ thing it needs to do is to check if it's too many of them, and then to
1349
+ complain.
1350
+
1351
+ For arguments in Python2, there is the possibility of them being nested,
1352
+ in which case they cannot be provided in the keyword dictionary, and
1353
+ merely should get picked from the argument tuple.
1354
+
1355
+ Otherwise, the length of the argument tuple should be checked against
1356
+ its position and if possible, values should be taken from there. If it's
1357
+ already set (from the keyword dictionary), raise an error instead.
1358
+
1359
+ SSA form for Nuitka
1360
+ ===================
1361
+
1362
+ The SSA form is critical to how optimization works. The so called trace
1363
+ collections builds up traces. These are facts about how this works:
1364
+
1365
+ - Assignments draw from a counter unique for the variable, which
1366
+ becomes the variable version. This happens during tree building
1367
+ phase.
1368
+
1369
+ - References are associated with the version of the variable active.
1370
+
1371
+ This can be a merge of branches. Trace collection does do that and
1372
+ provides nodes with the currently active trace for a variable.
1373
+
1374
+ The data structures used for trace collection need to be relatively
1375
+ compact as the trace information can become easily much more data than
1376
+ the program itself.
1377
+
1378
+ Every trace collection has these:
1379
+
1380
+ - variable_actives
1381
+
1382
+ Dictionary, where per "variable" the currently used version is. Used
1383
+ to track situations changes in branches. This is the main input for
1384
+ merge process.
1385
+
1386
+ - variable_traces
1387
+
1388
+ Dictionary, where "variable" and "version" form the key. The values
1389
+ are objects with or without an assignment, and a list of usages,
1390
+ which starts out empty.
1391
+
1392
+ These objects have usages appended to them. In "onVariableSet", a new
1393
+ version is allocated, which gives a new object for the dictionary,
1394
+ with an empty usages list, because each write starts a new version.
1395
+ In "onVariableUsage" the version is detected from the current
1396
+ version. It may be not set yet, which means, it's a read of an
1397
+ undefined value (local variable, not a parameter name), or unknown in
1398
+ case of global variable.
1399
+
1400
+ These objects may be told that their value has escaped. This should
1401
+ influence the value friend they attached to the initial assignment.
1402
+ Each usage may have a current value friend state that is different.
1403
+
1404
+ When merging branches of conditional statements, the merge shall apply
1405
+ as follows:
1406
+
1407
+ - Branches have their own collection
1408
+
1409
+ Thee have potentially deviating sets of ``variable_actives``. These
1410
+ are children of an outer collections.
1411
+
1412
+ - Case a) One branch only.
1413
+
1414
+ For that branch a collection is performed. As usual new assignments
1415
+ generate a new version making it "active", references then related to
1416
+ these "active" versions.
1417
+
1418
+ Then, when the branch is merged, for all "active" variables, it is
1419
+ considered, if that is a change related to before the branch. If it's
1420
+ not the same, a merge trace with the branch condition is created with
1421
+ the one active in the collection before that statement.
1422
+
1423
+ - Case b) Two branches.
1424
+
1425
+ When there are two branches, they both as are treated as above,
1426
+ except for the merge.
1427
+
1428
+ When merging, a difference in active variables between the two
1429
+ branches creates the merge trace.
1430
+
1431
+ .. note::
1432
+
1433
+ For conditional expressions, there are always only two branches. Even
1434
+ if you think you have more than one branch, you do not. It's always
1435
+ nested branches, already when it comes out of the ``ast`` parser.
1436
+
1437
+ Trace structure, there are different kinds of traces.
1438
+
1439
+ - Initial write of the version
1440
+
1441
+ There may be an initial write for each version. It can only occur at
1442
+ the start of the scope, but not later, and there is only one. This
1443
+ might be known to be "initialized" (parameter variables of functions
1444
+ are like that) or "uninitialized", or "unknown".
1445
+
1446
+ - Merge of other one or two other versions
1447
+
1448
+ This combines two or more previous versions. In cases of loop exits
1449
+ or entries, there are multiple branches to combine potentially. These
1450
+ branches can have vastly different properties.
1451
+
1452
+ - Becoming unknown.
1453
+
1454
+ When control flow escapes, e.g. for a module variable, any write can
1455
+ occur to it, and it's value cannot be trusted to be unchanged. These
1456
+ are then traced as unknown.
1457
+
1458
+ All traces have a base class ``ValueTraceBase`` which provides the
1459
+ interface to query facts about the state of a variable in that trace.
1460
+ It's e.g. of some interest, if a variable must have a value or must not.
1461
+ This allows to e.g. omit checks, know what exceptions might raise.
1462
+
1463
+ Loop SSA
1464
+ ========
1465
+
1466
+ For loops we have the addition difficulty that we need would need to
1467
+ look ahead what types a variable has at loop exit, but that is a cyclic
1468
+ dependency.
1469
+
1470
+ Our solution is to consider the variable types at loop entry. When these
1471
+ change, we drop all gained information from inside the loop. We may e.g.
1472
+ think that a variable is a ``int`` or ``float``, but later recognize
1473
+ that it can only be a float. Derivations from ``int`` must be discarded,
1474
+ and the loop analysis restarted.
1475
+
1476
+ Then during the loop, we assign an incomplete loop trace shape to the
1477
+ variable, which e.g. says it was an ``int`` initially and additional
1478
+ type shapes, e.g. ``int or long`` are then derived. If at the end of the
1479
+ loop, a type produced no new types, we know we are finished and mark the
1480
+ trace as a complete loop trace.
1481
+
1482
+ If it is not, and next time, we have the same initial types, we add the
1483
+ ones derived from this to the starting values, and see if this gives
1484
+ more types.
1485
+
1486
+ Python Slots in Optimization
1487
+ ============================
1488
+
1489
+ Basic Slot Idea
1490
+ ---------------
1491
+
1492
+ For almost all the operations in Python, a form of overloading is
1493
+ available. That is what makes it so powerful.
1494
+
1495
+ So when you write an expression like this one:
1496
+
1497
+ .. code:: python
1498
+
1499
+ 1.0 + something
1500
+
1501
+ This something will not just blindly work when it's a float, but go
1502
+ through a slot mechanism, which then can be overloaded.
1503
+
1504
+ .. code:: python
1505
+
1506
+ class SomeStrangeFloat:
1507
+ def __float__(self):
1508
+ return 3.14
1509
+
1510
+
1511
+ something = SomeStrangeFloat()
1512
+ # ...
1513
+ 1.0 + float(something) // 4.140000000000001
1514
+
1515
+ Here it is the case, that this is used by user code, but more often this
1516
+ is used internally. Not all types have all slots, e.g. ``list`` does not
1517
+ have ``__float__`` and therefore will refuse an addition to a ``float``
1518
+ value, based on that.
1519
+
1520
+ Another slot is working here, that we didn't mention yet, and that is
1521
+ ``__add__`` which for some times will be these kinds of conversions or
1522
+ it will not do that kind of thing, e.g. something do hard checks, which
1523
+ is why this fails to work:
1524
+
1525
+ .. code:: python
1526
+
1527
+ [] + ()
1528
+
1529
+ As a deliberate choice, there is no ``__list__`` slot used. The Python
1530
+ designers are aiming at solving many things with slots, but they also
1531
+ accept limitations.
1532
+
1533
+ There are many slots that are frequently used, most often behind your
1534
+ back (``__iter__``, ``__next__``, ``__lt__``, etc.). The list is large,
1535
+ and tends to grow with Python releases, but it is not endless.
1536
+
1537
+ Representation in Nuitka
1538
+ ------------------------
1539
+
1540
+ So a slot in Nuitka typically has an owning node. We use ``__len__`` as
1541
+ an example here. In the ``computeExpression`` the ``len`` node named
1542
+ ``ExpressionBuiltinLen`` has to defer the decision what it computes to
1543
+ its argument.
1544
+
1545
+ .. code:: python
1546
+
1547
+ def computeExpression(self, trace_collection):
1548
+ return self.subnode_value.computeExpressionLen(
1549
+ len_node=self, trace_collection=trace_collection
1550
+ )
1551
+
1552
+ That decision then, in the absence of any type knowledge, must be done
1553
+ absolutely carefully and conservative, as could see anything executing
1554
+ here.
1555
+
1556
+ That examples this code in ``ExpressionBase`` which every expression by
1557
+ default uses:
1558
+
1559
+ .. code:: python
1560
+
1561
+ def computeExpressionLen(self, len_node, trace_collection):
1562
+ shape = self.getValueShape()
1563
+
1564
+ has_len = shape.hasShapeSlotLen()
1565
+
1566
+ if has_len is False:
1567
+ return makeRaiseTypeErrorExceptionReplacementFromTemplateAndValue(
1568
+ template="object of type '%s' has no len()",
1569
+ operation="len",
1570
+ original_node=len_node,
1571
+ value_node=self,
1572
+ )
1573
+ elif has_len is True:
1574
+ iter_length = self.getIterationLength()
1575
+
1576
+ if iter_length is not None:
1577
+ from .ConstantRefNodes import makeConstantRefNode
1578
+
1579
+ result = makeConstantRefNode(
1580
+ constant=int(iter_length), # make sure to downcast long
1581
+ source_ref=len_node.getSourceReference(),
1582
+ )
1583
+
1584
+ result = wrapExpressionWithNodeSideEffects(new_node=result, old_node=self)
1585
+
1586
+ return (
1587
+ result,
1588
+ "new_constant",
1589
+ "Predicted 'len' result from value shape.",
1590
+ )
1591
+
1592
+ self.onContentEscapes(trace_collection)
1593
+
1594
+ # Any code could be run, note that.
1595
+ trace_collection.onControlFlowEscape(self)
1596
+
1597
+ # Any exception may be raised.
1598
+ trace_collection.onExceptionRaiseExit(BaseException)
1599
+
1600
+ return len_node, None, None
1601
+
1602
+ Notice how by default, known ``__len__`` but unpredictable or even
1603
+ unknown if a ``__len__`` slot is there, the code indicates that its
1604
+ contents and the control flow escapes (could change things behind out
1605
+ back) and any exception could happen.
1606
+
1607
+ Other expressions can know better, e.g. for compile time constants we
1608
+ can be a whole lot more certain:
1609
+
1610
+ .. code:: python
1611
+
1612
+ def computeExpressionLen(self, len_node, trace_collection):
1613
+ return trace_collection.getCompileTimeComputationResult(
1614
+ node=len_node,
1615
+ computation=lambda: len(self.getCompileTimeConstant()),
1616
+ description="""Compile time constant len value pre-computed.""",
1617
+ )
1618
+
1619
+ In this case, we are using a function that will produce a concrete value
1620
+ or the exception that the ``computation`` function raised. In this case,
1621
+ we can let the Python interpreter that runs Nuitka do all the hard work.
1622
+ This lives in ``CompileTimeConstantExpressionBase`` and is the base for
1623
+ all kinds of constant values, or even built-in references like the name
1624
+ ``len`` itself and would be used in case of doing ``len(len)`` which
1625
+ obviously gives an exception.
1626
+
1627
+ Other overloads do not currently exist in Nuitka, but through the
1628
+ iteration length, most cases could be addressed, e.g. ``list`` nodes
1629
+ typical know their element counts.
1630
+
1631
+ The C side
1632
+ ==========
1633
+
1634
+ When a slot is not optimized away at compile time however, we need to
1635
+ generate actual code for it. We figure out what this could be by looking
1636
+ at the original CPython implementation.
1637
+
1638
+ .. code:: C
1639
+
1640
+ PyObject *builtin_len(PyObject *self, PyObject *v) {
1641
+ Py_ssize_t res;
1642
+
1643
+ res = PyObject_Size(v);
1644
+ if (res < 0 && PyErr_Occurred())
1645
+ return NULL;
1646
+ return PyInt_FromSsize_t(res);
1647
+ }
1648
+
1649
+ We find a pointer to ``PyObject_Size`` which is a generic Python C/API
1650
+ function used in the ``builtin_len`` implementation:
1651
+
1652
+ .. code:: C
1653
+
1654
+ Py_ssize_t PyObject_Size(PyObject *o) {
1655
+ PySequenceMethods *m;
1656
+
1657
+ if (o == NULL) {
1658
+ null_error();
1659
+ return -1;
1660
+ }
1661
+
1662
+ m = o->ob_type->tp_as_sequence;
1663
+ if (m && m->sq_length)
1664
+ return m->sq_length(o);
1665
+
1666
+ return PyMapping_Size(o);
1667
+ }
1668
+
1669
+ On the C level, every Python object (the ``PyObject *``) as a type named
1670
+ ``ob_type`` and most of its elements are slots. Sometimes they form a
1671
+ group, here ``tp_as_sequence`` and then it may or may not contain a
1672
+ function. This one is tried in preference. Then, if that fails, next up
1673
+ the mapping size is tried.
1674
+
1675
+ .. code:: C
1676
+
1677
+ Py_ssize_t PyMapping_Size(PyObject *o) {
1678
+ PyMappingMethods *m;
1679
+
1680
+ if (o == NULL) {
1681
+ null_error();
1682
+ return -1;
1683
+ }
1684
+
1685
+ m = o->ob_type->tp_as_mapping;
1686
+ if (m && m->mp_length)
1687
+ return m->mp_length(o);
1688
+
1689
+ type_error("object of type '%.200s' has no len()", o);
1690
+ return -1;
1691
+ }
1692
+
1693
+ This is the same principle, except with ``tp_as_mapping`` and
1694
+ ``mp_length`` used.
1695
+
1696
+ So from this, we can tell how ``len`` gets at what could be a Python
1697
+ class ``__len__`` or other built-in types.
1698
+
1699
+ In principle, every slot needs to be dealt with in Nuitka, and it is
1700
+ assumed that currently all slots are supported on at least a very
1701
+ defensive level, to avoid unnoticed escapes of control flow.
1702
+
1703
+ Built-in call optimization
1704
+ ==========================
1705
+
1706
+ For calls to built-in names, there is typically a function in Python
1707
+ that delegates to the type constructor (e.g. when we talk about ``int``
1708
+ that just creates an object passing the arguments of the call) or its
1709
+ own special implementation as we saw with the ``len``.
1710
+
1711
+ For each built-in called, we have a specialized node, that presents to
1712
+ optimization the actions of the built-in. What are the impact, what are
1713
+ the results. We have seen the resulting example for ``len`` above, but
1714
+ how do we get there.
1715
+
1716
+ In Python, built-in names are used only if there is no module level
1717
+ variable of the name, and of course no local variable of that name.
1718
+
1719
+ Therefore, optimization of a built-in name is only done if it turns out
1720
+ the actually assigned in other code, and then when the call comes,
1721
+ arguments are checked and a relatively static node is created.
1722
+
1723
+ Code Generation towards C
1724
+ =========================
1725
+
1726
+ Currently, Nuitka uses Pure C and no C++ patterns at all. The use of C11
1727
+ requires on some platforms to compile the C11 using a C++ compiler,
1728
+ which works relatively well, but also limits the amount of C11 that can
1729
+ be used.
1730
+
1731
+ Exceptions
1732
+ ----------
1733
+
1734
+ To handle and work with exceptions, every construct that can raise has
1735
+ either a ``bool`` or ``int`` return code or ``PyObject *`` with ``NULL``
1736
+ return value. This is very much in line with that the Python C-API does.
1737
+
1738
+ Every helper function that contains code that might raise needs these
1739
+ variables. After a failed call, our variant of ``PyErr_Fetch`` called
1740
+ ``FETCH_ERROR_OCCURRED_STATE`` must be used to catch the defined error,
1741
+ unless some quick exception cases apply. The quick exception means,
1742
+ ``NULL`` return from C-API without a set exception means e.g.
1743
+ ``StopIteration``.
1744
+
1745
+ As an optimization, functions that raise exceptions, but are known not
1746
+ to do so, for whatever reason, could only be asserted to not do so.
1747
+
1748
+ Statement Temporary Variables
1749
+ -----------------------------
1750
+
1751
+ For statements and larger constructs the context object track temporary
1752
+ values, that represent references. For some, these should be released at
1753
+ the end of the statement, or they represent a leak.
1754
+
1755
+ The larger scope temporary variables, are tracked in the function or
1756
+ module context, where they are supposed to have explicit ``del`` to
1757
+ release their references.
1758
+
1759
+ Local Variables Storage
1760
+ -----------------------
1761
+
1762
+ Closure variables taken are to be released when the function object is
1763
+ later destroyed. For in-lined calls, variables are just passed, and it
1764
+ does not become an issue to release anything.
1765
+
1766
+ For function exit, owned variables, local or shared to other functions,
1767
+ must be released. This cannot be a ``del`` operation, as it also
1768
+ involves setting a value, which would be wrong for shared variables (and
1769
+ wasteful to local variables, as that would be its last usage). Therefore
1770
+ we need a special operation that simply releases the reference to the
1771
+ cell or object variable.
1772
+
1773
+ Exit Targets
1774
+ ------------
1775
+
1776
+ Each error or other exit releases statement temporary values and then
1777
+ executes a ``goto`` to the exit target. These targets need to be setup.
1778
+ The ``try``/``except`` will e.g. catch error exits.
1779
+
1780
+ Other exits are ``continue``, ``break``, and ``return`` exits. They all
1781
+ work alike.
1782
+
1783
+ Generally, the exits stack of with constructs that need to register
1784
+ themselves for some exit types. A loop e.g. registers the ``continue``
1785
+ exit, and a contained ``try``/``finally`` too, so it can execute the
1786
+ final code should it be needed.
1787
+
1788
+ Frames
1789
+ ------
1790
+
1791
+ Frames are containers for variable declarations and cleanups. As such,
1792
+ frames provide error exits and success exits, which remove the frame
1793
+ from the frame stack, and then proceed to the parent exit.
1794
+
1795
+ With the use of non ``PyObject **`` C types, but frame exception exits,
1796
+ the need to convert those types becomes apparent. Exceptions should
1797
+ still resolve the C version. When using different C types at frame
1798
+ exception exits, there is a need to trace the active type, so it can be
1799
+ used in the correct form.
1800
+
1801
+ Abortive Statements
1802
+ -------------------
1803
+
1804
+ The way ``try``/``finally`` is handled, copies of the ``finally`` block
1805
+ are made, and optimized independently for each abort method. The ones
1806
+ there are of course, ``return``, ``continue``, and ``break``, but also
1807
+ implicit and explicit ``raise`` of an exception.
1808
+
1809
+ Code trailing an abortive statement can be discarded, and the control
1810
+ flow will follow these "exits".
1811
+
1812
+ Constant Preparation
1813
+ ====================
1814
+
1815
+ Early versions of Nuitka, created all constants for the whole program
1816
+ for ready access to generated code, before the program launches. It did
1817
+ so in a single file, but that approach didn't scale well.
1818
+
1819
+ Problems were
1820
+
1821
+ - Even unused code contributed to start-up time, this can become a lot
1822
+ for large programs, especially in standalone mode.
1823
+
1824
+ - The massive amount of constant creation codes gave backend C
1825
+ compilers a much harder time than necessary to analyse it all at
1826
+ once.
1827
+
1828
+ The current approach is as follows. Code generation detects constants
1829
+ used in only one module, and declared ``static`` there, if the module is
1830
+ the only user, or ``extern`` if it is not. Some values are forced to be
1831
+ global, as they are used pre-main or in helpers.
1832
+
1833
+ These ``extern`` values are globally created before anything is used.
1834
+ The ``static`` values are created when the module is loaded, i.e.
1835
+ something did import it.
1836
+
1837
+ We trace used constants per module, and for nested ones, we also
1838
+ associate them. The global constants code is special in that it can only
1839
+ use ``static`` for nested values it exclusively uses, and has to export
1840
+ values that others use.
1841
+
1842
+ Language Conversions to make things simpler
1843
+ ===========================================
1844
+
1845
+ There are some cases, where the Python language has things that can in
1846
+ fact be expressed in a simpler or more general way, and where we choose
1847
+ to do that at either tree building or optimization time.
1848
+
1849
+ The ``assert`` statement
1850
+ ------------------------
1851
+
1852
+ The ``assert`` statement is a special statement in Python, allowed by
1853
+ the syntax. It has two forms, with and without a second argument. The
1854
+ later is probably less known, as is the fact that raise statements can
1855
+ have multiple arguments too.
1856
+
1857
+ The handling in Nuitka is:
1858
+
1859
+ .. code:: python
1860
+
1861
+ assert value
1862
+ # Absolutely the same as:
1863
+ if not value:
1864
+ raise AssertionError
1865
+
1866
+ .. code:: python
1867
+
1868
+ assert value, raise_arg
1869
+ # Absolutely the same as:
1870
+ if not value:
1871
+ raise AssertionError(raise_arg)
1872
+
1873
+ This makes assertions absolutely the same as a raise exception in a
1874
+ conditional statement.
1875
+
1876
+ This transformation is performed at tree building already, so Nuitka
1877
+ never knows about ``assert`` as an element and standard optimizations
1878
+ apply. If e.g. the truth value of the assertion can be predicted, the
1879
+ conditional statement will have the branch statically executed or
1880
+ removed.
1881
+
1882
+ The "comparison chain" expressions
1883
+ ----------------------------------
1884
+
1885
+ In Nuitka we have the concept of an outline, and therefore we can make
1886
+ the following re-formulation instead:
1887
+
1888
+ .. code:: python
1889
+
1890
+ a < b() > c < d
1891
+
1892
+
1893
+ def _comparison_chain(): # So called "outline" function
1894
+ tmp_a = a
1895
+ tmp_b = b()
1896
+
1897
+ tmp = tmp_a < tmp_b
1898
+
1899
+ if not tmp:
1900
+ return tmp
1901
+
1902
+ del tmp_a
1903
+ tmp_c = c
1904
+
1905
+ tmp = tmp_b > tmp_c
1906
+
1907
+ if not tmp:
1908
+ return tmp
1909
+
1910
+ del tmp_b
1911
+
1912
+ return tmp_c < d
1913
+
1914
+
1915
+ _comparison_chain()
1916
+
1917
+ This transformation is performed at tree building already. The temporary
1918
+ variables keep the value for the use of the same expression. Only the
1919
+ last expression needs no temporary variable to keep it.
1920
+
1921
+ What we got from this, is making the checks of the comparison chain
1922
+ explicit and comparisons in Nuitka to be internally always about two
1923
+ operands only.
1924
+
1925
+ The ``execfile`` built-in
1926
+ -------------------------
1927
+
1928
+ Handling is:
1929
+
1930
+ .. code:: python
1931
+
1932
+ execfile(filename)
1933
+ # Basically the same as:
1934
+ exec(compile(open(filename).read()), filename, "exec")
1935
+
1936
+ .. note::
1937
+
1938
+ This allows optimizations to discover the file opening nature easily
1939
+ and apply file embedding or whatever we will have there one day.
1940
+
1941
+ This transformation is performed when the ``execfile`` built-in is
1942
+ detected as such during optimization.
1943
+
1944
+ Generator expressions with ``yield``
1945
+ ------------------------------------
1946
+
1947
+ These are converted at tree building time into a generator function body
1948
+ that yields from the iterator given, which is the put into a for loop to
1949
+ iterate, created a lambda function of and then called with the first
1950
+ iterator.
1951
+
1952
+ That eliminates the generator expression for this case. It's a bizarre
1953
+ construct and with this trick needs no special code generation.
1954
+
1955
+ This is a complex example, demonstrating multiple cases of yield in
1956
+ unexpected cases:
1957
+
1958
+ .. code:: python
1959
+
1960
+ x = ((yield i) for i in (1, 2) if not (yield))
1961
+ # Basically the same as:
1962
+ def x():
1963
+ for i in (1, 2):
1964
+ if not (yield):
1965
+ yield (yield i)
1966
+
1967
+ Function Decorators
1968
+ -------------------
1969
+
1970
+ When one learns about decorators, you see that:
1971
+
1972
+ .. code:: python
1973
+
1974
+ @decorator
1975
+ def function():
1976
+ pass
1977
+
1978
+
1979
+ # Is basically the same as:
1980
+ def function():
1981
+ pass
1982
+
1983
+
1984
+ function = decorator(function)
1985
+
1986
+ The only difference is the assignment to function. In the ``@decorator``
1987
+ case, if the decorator fails with an exception, the name ``function`` is
1988
+ not assigned yet, but kept in a temporary variable.
1989
+
1990
+ Therefore in Nuitka this assignment is more similar to that of a lambda
1991
+ expression, where the assignment to the name is only at the end, which
1992
+ also has the extra benefit of not treating real function and lambda
1993
+ functions any different.
1994
+
1995
+ This removes the need for optimization and code generation to support
1996
+ decorators at all. And it should make the two variants optimize equally
1997
+ well.
1998
+
1999
+ Functions nested arguments
2000
+ --------------------------
2001
+
2002
+ Nested arguments are a Python2 only feature supported by Nuitka.
2003
+ Consider this example:
2004
+
2005
+ .. code:: python
2006
+
2007
+ def function(a, (b, c)):
2008
+ return a, b, c
2009
+
2010
+ We solve this, by kind of wrapping the function with another function
2011
+ that does the unpacking and gives the errors that come from this:
2012
+
2013
+ .. code:: python
2014
+
2015
+ def function(a, _1):
2016
+ def _tmp(a, b, c):
2017
+ return a, b, c
2018
+
2019
+ a, b = _1
2020
+ return _tmp(a, b, c)
2021
+
2022
+ The ``.1`` is the variable name used by CPython internally, and actually
2023
+ works if you use keyword arguments via star dictionary. So this is very
2024
+ compatible and actually the right kind of re-formulation, but it removes
2025
+ the need from the code that does parameter parsing to deal with these.
2026
+
2027
+ Obviously, there is no frame for ``_tmp``, just one for ``function`` and
2028
+ we do not use local variables, but temporary functions.
2029
+
2030
+ In-place Assignments
2031
+ --------------------
2032
+
2033
+ In-place assignments are re-formulated to an expression using temporary
2034
+ variables.
2035
+
2036
+ These are not as much a reformulation of ``+=`` to ``+``, but instead
2037
+ one which makes it explicit that the assign target may change its value.
2038
+
2039
+ .. code:: python
2040
+
2041
+ a += b
2042
+
2043
+ .. code:: python
2044
+
2045
+ _tmp = a.__iadd__(b)
2046
+
2047
+ if a is not _tmp:
2048
+ a = _tmp
2049
+
2050
+ Using ``__iadd__`` here to express that for the ``+``, the in-place
2051
+ variant ``iadd`` is used instead. The ``is`` check may be optimized away
2052
+ depending on type and value knowledge later on.
2053
+
2054
+ Complex Assignments
2055
+ -------------------
2056
+
2057
+ Complex assignments are defined as those with multiple targets to assign
2058
+ from a single source and are re-formulated to such using a temporary
2059
+ variable and multiple simple assignments instead.
2060
+
2061
+ .. code:: python
2062
+
2063
+ a = b = c
2064
+
2065
+ .. code:: python
2066
+
2067
+ _tmp = c
2068
+ a = _tmp
2069
+ b = _tmp
2070
+ del _tmp
2071
+
2072
+ This is possible, because in Python, if one assignment fails, it can
2073
+ just be interrupted, so in fact, they are sequential, and all that is
2074
+ required is to not calculate ``c`` twice, which the temporary variable
2075
+ takes care of. Were ``b`` a more complex expression, e.g.
2076
+ ``b.some_attribute`` that might raise an exception, ``a`` would still be
2077
+ assigned.
2078
+
2079
+ Unpacking Assignments
2080
+ ---------------------
2081
+
2082
+ Unpacking assignments are re-formulated to use temporary variables as
2083
+ well.
2084
+
2085
+ .. code:: python
2086
+
2087
+ a, b.attr, c[ind] = d = e, f, g = h()
2088
+
2089
+ Becomes this:
2090
+
2091
+ .. code:: python
2092
+
2093
+ _tmp = h()
2094
+
2095
+ _iter1 = iter(_tmp)
2096
+ _tmp1 = unpack(_iter1, 3)
2097
+ _tmp2 = unpack(_iter1, 3)
2098
+ _tmp3 = unpack(_iter1, 3)
2099
+ unpack_check(_iter1)
2100
+ a = _tmp1
2101
+ b.attr = _tmp2
2102
+ c[ind] = _tmp3
2103
+ d = _tmp
2104
+ _iter2 = iter(_tmp)
2105
+ _tmp4 = unpack(_iter2, 3)
2106
+ _tmp5 = unpack(_iter2, 3)
2107
+ _tmp6 = unpack(_iter2, 3)
2108
+ unpack_check(_iter1)
2109
+ e = _tmp4
2110
+ f = _tmp5
2111
+ g = _tmp6
2112
+
2113
+ That way, the unpacking is decomposed into multiple simple statements.
2114
+ It will be the job of optimizations to try and remove unnecessary
2115
+ unpacking, in case e.g. the source is a known tuple or list creation.
2116
+
2117
+ .. note::
2118
+
2119
+ The ``unpack`` is a special node which is a form of ``next`` that
2120
+ will raise a ``ValueError`` when it cannot get the next value, rather
2121
+ than a ``StopIteration``. The message text contains the number of
2122
+ values to unpack, therefore the integer argument.
2123
+
2124
+ .. note::
2125
+
2126
+ The ``unpack_check`` is a special node that raises a ``ValueError``
2127
+ exception if the iterator is not finished, i.e. there are more values
2128
+ to unpack. Again the number of values to unpack is provided to
2129
+ construct the error message.
2130
+
2131
+ With Statements
2132
+ ---------------
2133
+
2134
+ The ``with`` statements are re-formulated to use temporary variables as
2135
+ well. The taking and calling of ``__enter__`` and ``__exit__`` with
2136
+ arguments, is presented with standard operations instead. The promise to
2137
+ call ``__exit__`` is fulfilled by ``try``/``except`` clause instead.
2138
+
2139
+ .. code:: python
2140
+
2141
+ with some_context as x:
2142
+ something(x)
2143
+
2144
+ .. code:: python
2145
+
2146
+ tmp_source = some_context
2147
+
2148
+ # Actually it needs to be "special look-up" for Python2.7, so attribute
2149
+ # look-up won't be exactly what is there.
2150
+ tmp_exit = tmp_source.__exit__
2151
+
2152
+ # This one must be held for the whole with statement, it may be assigned
2153
+ # or not, in our example it is. If an exception occurs when calling
2154
+ # ``__enter__``, the ``__exit__`` should not be called.
2155
+ tmp_enter_result = tmp_source.__enter__()
2156
+
2157
+ # Indicator variable to know if "tmp_exit" has been called.
2158
+ tmp_indicator = False
2159
+
2160
+ try:
2161
+ # Now the assignment is to be done, if there is any name for the
2162
+ # manager given, this may become multiple assignment statements and
2163
+ # even unpacking ones.
2164
+ x = tmp_enter_result
2165
+
2166
+ # Then the code of the "with" block.
2167
+ something(x)
2168
+ except Exception:
2169
+ # Note: This part of the code must not set line numbers, which we
2170
+ # indicate with special source code references, which we call "internal".
2171
+ # Otherwise the line of the frame would get corrupted.
2172
+
2173
+ tmp_indicator = True
2174
+
2175
+ if not tmp_exit(*sys.exc_info()):
2176
+ raise
2177
+ finally:
2178
+ if not tmp_indicator:
2179
+ # Call the exit if no exception occurred with all arguments
2180
+ # as "None".
2181
+ tmp_exit(None, None, None)
2182
+
2183
+ .. note::
2184
+
2185
+ We don't refer really to ``sys.exc_info()`` at all, instead, we have
2186
+ fast references to the current exception type, value and trace, taken
2187
+ directly from the caught exception object on the C level.
2188
+
2189
+ If we had the ability to optimize ``sys.exc_info()`` to do that, we
2190
+ could use the same transformation, but right now we don't have it.
2191
+
2192
+ For Loops
2193
+ ---------
2194
+
2195
+ The ``for`` loops use normal assignments and handle the iterator that is
2196
+ implicit in the code explicitly.
2197
+
2198
+ .. code:: python
2199
+
2200
+ for x, y in iterable:
2201
+ if something(x):
2202
+ break
2203
+ else:
2204
+ otherwise()
2205
+
2206
+ This is roughly equivalent to the following code:
2207
+
2208
+ .. code:: python
2209
+
2210
+ _iter = iter(iterable)
2211
+ _no_break_indicator = False
2212
+
2213
+ while 1:
2214
+ try:
2215
+ _tmp_value = next(_iter)
2216
+ except StopIteration:
2217
+ # Set the indicator that the else branch may be executed.
2218
+ _no_break_indicator = True
2219
+
2220
+ # Optimization should be able to tell that the else branch is run
2221
+ # only once.
2222
+ break
2223
+
2224
+ # Normal assignment re-formulation applies to this assignment of course.
2225
+ x, y = _tmp_value
2226
+ del _tmp_value
2227
+
2228
+ if something(x):
2229
+ break
2230
+
2231
+ if _no_break_indicator:
2232
+ otherwise()
2233
+
2234
+ .. note::
2235
+
2236
+ The ``_iter`` temporary variable is of course also in a
2237
+ ``try/finally`` construct, to make sure it releases after its used.
2238
+ The ``x, y`` assignment is of course subject to unpacking
2239
+ re-formulation.
2240
+
2241
+ The ``try``/``except`` is detected to allow to use a variant of
2242
+ ``next`` that does not raise an exception, but to be fast check about
2243
+ the ``NULL`` return from ``next`` built-in. So no actual exception
2244
+ handling is happening in this case.
2245
+
2246
+ While Loops
2247
+ -----------
2248
+
2249
+ Quoting the ``nuitka.tree.ReformulationWhileLoopStatements``
2250
+ documentation:
2251
+
2252
+ Reformulation of while loop statements.
2253
+
2254
+ Loops in Nuitka have no condition attached anymore, so while loops are
2255
+ re-formulated like this:
2256
+
2257
+ .. code:: python
2258
+
2259
+ while condition:
2260
+ something()
2261
+
2262
+ .. code:: python
2263
+
2264
+ while 1:
2265
+ if not condition:
2266
+ break
2267
+
2268
+ something()
2269
+
2270
+ This is to totally remove the specialization of loops, with the
2271
+ condition moved to the loop body in an initial conditional statement,
2272
+ which contains a ``break`` statement.
2273
+
2274
+ That achieves, that only ``break`` statements exit the loop, and allow
2275
+ for optimization to remove always true loop conditions, without
2276
+ concerning code generation about it, and to detect such a situation,
2277
+ consider e.g. endless loops.
2278
+
2279
+ .. note::
2280
+
2281
+ Loop analysis (not yet done) can then work on a reduced problem
2282
+ (which ``break`` statements are executed under what conditions) and
2283
+ is then automatically very general.
2284
+
2285
+ The fact that the loop body may not be entered at all, is still
2286
+ optimized, but also in the general sense. Explicit breaks at the loop
2287
+ start and loop conditions are the same.
2288
+
2289
+ End quoting the ``nuitka.tree.ReformulationWhileLoopStatements``
2290
+ documentation:
2291
+
2292
+ Exception Handlers
2293
+ ------------------
2294
+
2295
+ Exception handlers in Python may assign the caught exception value to a
2296
+ variable in the handler definition. And the different handlers are
2297
+ represented as conditional checks on the result of comparison
2298
+ operations.
2299
+
2300
+ .. code:: python
2301
+
2302
+ try:
2303
+ block()
2304
+ except A as e:
2305
+ handlerA(e)
2306
+ except B as e:
2307
+ handlerB(e)
2308
+ else:
2309
+ handlerElse()
2310
+
2311
+ .. code:: python
2312
+
2313
+ try:
2314
+ block()
2315
+ except:
2316
+ # These are special nodes that access the exception, and don't really
2317
+ # use the "sys" module.
2318
+ tmp_exc_type = sys.exc_info()[0]
2319
+ tmp_exc_value = sys.exc_info()[1]
2320
+
2321
+ # exception_matches is a comparison operation, also a special node.
2322
+ if exception_matches(tmp_exc_type, (A,)):
2323
+ e = tmp_exc_value
2324
+ handlerA(e)
2325
+ elif exception_matches(tmp_exc_type, (B,)):
2326
+ e = tmp_exc_value
2327
+ handlerB(e)
2328
+ else:
2329
+ handlerElse()
2330
+
2331
+ For Python3, the assigned ``e`` variables get deleted at the end of the
2332
+ handler block. Should that value be already deleted, that ``del`` does
2333
+ not raise, therefore it's tolerant. This has to be done in any case, so
2334
+ for Python3 it is even more complex.
2335
+
2336
+ .. code:: python
2337
+
2338
+ try:
2339
+ block()
2340
+ except:
2341
+ # These are special nodes that access the exception, and don't really
2342
+ # use the "sys" module.
2343
+ tmp_exc_type = sys.exc_info()[0]
2344
+ tmp_exc_value = sys.exc_info()[1]
2345
+
2346
+ # exception_matches is a comparison operation, also a special node.
2347
+ if exception_matches(tmp_exc_type, (A,)):
2348
+ try:
2349
+ e = tmp_exc_value
2350
+ handlerA(e)
2351
+ finally:
2352
+ del e
2353
+ elif exception_matches(tmp_exc_type, (B,)):
2354
+ try:
2355
+ e = tmp_exc_value
2356
+ handlerB(e)
2357
+ finally:
2358
+ del e
2359
+ else:
2360
+ handlerElse()
2361
+
2362
+ Should there be no ``else:`` branch, a default re-raise statement is
2363
+ used instead.
2364
+
2365
+ And of course, the values of the current exception type and value, both
2366
+ use special references, that access the C++ and don't go via
2367
+ ``sys.exc_info`` at all, nodes called ``CaughtExceptionTypeRef`` and
2368
+ ``CaughtExceptionValueRef``.
2369
+
2370
+ This means, that the different handlers and their catching run time
2371
+ behavior are all explicit and reduced the branches.
2372
+
2373
+ Statement ``try``/``except`` with ``else``
2374
+ ------------------------------------------
2375
+
2376
+ Much like ``else`` branches of loops, an indicator variable is used to
2377
+ indicate the entry into any of the exception handlers.
2378
+
2379
+ Therefore, the ``else`` becomes a real conditional statement in the node
2380
+ tree, checking the indicator variable and guarding the execution of the
2381
+ ``else`` branch.
2382
+
2383
+ Class Creation (Python2)
2384
+ ------------------------
2385
+
2386
+ Classes in Python2 have a body that only serves to build the class
2387
+ dictionary and is a normal function otherwise. This is expressed with
2388
+ the following re-formulation:
2389
+
2390
+ .. code:: python
2391
+
2392
+ # in module "SomeModule"
2393
+ # ...
2394
+
2395
+
2396
+ class SomeClass(SomeBase, AnotherBase):
2397
+ """ This is the class documentation. """
2398
+
2399
+ some_member = 3
2400
+
2401
+ .. code:: python
2402
+
2403
+ def _makeSomeClass():
2404
+ # The module name becomes a normal local variable too.
2405
+ __module__ = "SomeModule"
2406
+
2407
+ # The doc string becomes a normal local variable.
2408
+ __doc__ = """ This is the class documentation. """
2409
+
2410
+ some_member = 3
2411
+
2412
+ return locals()
2413
+
2414
+ # force locals to be a writable dictionary, will be optimized away, but
2415
+ # that property will stick. This is only to express, that locals(), where
2416
+ # used will be writable to.
2417
+ exec("")
2418
+
2419
+
2420
+ SomeClass = make_class("SomeClass", (SomeBase, AnotherBase), _makeSomeClass())
2421
+
2422
+ That is roughly the same, except that ``_makeSomeClass`` is *not*
2423
+ visible to its child functions when it comes to closure taking, which we
2424
+ cannot express in Python language at all.
2425
+
2426
+ Therefore, class bodies are just special function bodies that create a
2427
+ dictionary for use in class creation. They don't really appear after the
2428
+ tree building stage anymore. The type inference will of course have to
2429
+ become able to understand ``make_class`` quite well, so it can recognize
2430
+ the created class again.
2431
+
2432
+ Class Creation (Python3)
2433
+ ------------------------
2434
+
2435
+ In Python3, classes are a complicated way to write a function call, that
2436
+ can interact with its body. The body starts with a dictionary provided
2437
+ by the metaclass, so that is different, because it can ``__prepare__`` a
2438
+ non-empty locals for it, which is hidden away in "prepare_class_dict"
2439
+ below.
2440
+
2441
+ What's noteworthy, is that this dictionary, could e.g. be an
2442
+ ``OrderDict``. I am not sure, what ``__prepare__`` is allowed to return.
2443
+
2444
+ .. code:: python3
2445
+
2446
+ # in module "SomeModule"
2447
+ # ...
2448
+
2449
+ class SomeClass(SomeBase, AnotherBase, metaclass = SomeMetaClass):
2450
+ """ This is the class documentation. """
2451
+
2452
+ some_member = 3
2453
+
2454
+ .. code:: python
2455
+
2456
+ # Non-keyword arguments, need to be evaluated first.
2457
+ tmp_bases = (SomeBase, AnotherBase)
2458
+
2459
+ # Keyword arguments go next, __metaclass__ is just one of them. In principle
2460
+ # we need to forward the others as well, but this is ignored for the sake of
2461
+ # brevity.
2462
+ tmp_metaclass = select_metaclass(tmp_bases, SomeMetaClass)
2463
+
2464
+ tmp_prepared = tmp_metaclass.__prepare__("SomeClass", tmp_bases)
2465
+
2466
+ # The function that creates the class dictionary. Receives temporary variables
2467
+ # to work with.
2468
+ def _makeSomeClass():
2469
+ # This has effect, currently I don't know how to express that in Python3
2470
+ # syntax, but we will have a node that does that.
2471
+ locals().replace(tmp_prepared)
2472
+
2473
+ # The module name becomes a normal local variable too.
2474
+ __module__ = "SomeModule"
2475
+
2476
+ # The doc string becomes a normal local variable.
2477
+ __doc__ = """ This is the class documentation. """
2478
+
2479
+ some_member = 3
2480
+
2481
+ # Create the class, share the potential closure variable "__class__"
2482
+ # with others.
2483
+ __class__ = tmp_metaclass("SomeClass", tmp_bases, locals())
2484
+
2485
+ return __class__
2486
+
2487
+
2488
+ # Build and assign the class.
2489
+ SomeClass = _makeSomeClass()
2490
+
2491
+ Generator Expressions
2492
+ ---------------------
2493
+
2494
+ There are re-formulated as functions.
2495
+
2496
+ Generally they are turned into calls of function bodies with
2497
+ (potentially nested) for loops:
2498
+
2499
+ .. code:: python
2500
+
2501
+ gen = (x * 2 for x in range(8) if cond())
2502
+
2503
+ .. code:: python
2504
+
2505
+ def _gen_helper(__iterator):
2506
+ for x in __iterator:
2507
+ if cond():
2508
+ yield x * 2
2509
+
2510
+
2511
+ gen = _gen_helper(range(8))
2512
+
2513
+ List Contractions
2514
+ -----------------
2515
+
2516
+ The list contractions of Python2 are different from those of Python3, in
2517
+ that they don't actually do any closure variable taking, and that no
2518
+ function object ever exists.
2519
+
2520
+ .. code:: python
2521
+
2522
+ list_value = [x * 2 for x in range(8) if cond()]
2523
+
2524
+ .. code:: python
2525
+
2526
+ def _listcontr_helper(__iterator):
2527
+ result = []
2528
+
2529
+ for x in __iterator:
2530
+ if cond():
2531
+ result.append(x * 2)
2532
+
2533
+ return result
2534
+
2535
+
2536
+ list_value = _listcontr_helper(range(8))
2537
+
2538
+ The difference is that with Python3, the function "_listcontr_helper" is
2539
+ really there and named ``<listcontraction>`` (or ``<listcomp>`` as of
2540
+ Python3.7 or higher), whereas with Python2 the function is only an
2541
+ outline, so it can readily access the containing name space.
2542
+
2543
+ Set Contractions
2544
+ ----------------
2545
+
2546
+ The set contractions of Python2.7 are like list contractions in Python3,
2547
+ in that they produce an actual helper function:
2548
+
2549
+ .. code:: python
2550
+
2551
+ set_value = {x * 2 for x in range(8) if cond()}
2552
+
2553
+ .. code:: python
2554
+
2555
+ def _setcontr_helper(__iterator):
2556
+ result = set()
2557
+
2558
+ for x in __iterator:
2559
+ if cond():
2560
+ result.add(x * 2)
2561
+
2562
+ return result
2563
+
2564
+
2565
+ set_value = _setcontr_helper(range(8))
2566
+
2567
+ Dictionary Contractions
2568
+ -----------------------
2569
+
2570
+ The dictionary contractions of are like list contractions in Python3, in
2571
+ that they produce an actual helper function:
2572
+
2573
+ .. code:: python
2574
+
2575
+ dict_value = {x: x * 2 for x in range(8) if cond()}
2576
+
2577
+ .. code:: python
2578
+
2579
+ def _dictcontr_helper(__iterator):
2580
+ result = {}
2581
+
2582
+ for x in __iterator:
2583
+ if cond():
2584
+ result[x] = x * 2
2585
+
2586
+ return result
2587
+
2588
+
2589
+ set_value = _dictcontr_helper(range(8))
2590
+
2591
+ Boolean expressions ``and`` and ``or``
2592
+ --------------------------------------
2593
+
2594
+ The short circuit operators ``or`` and ``and`` tend to be only less
2595
+ general that the ``if``/``else`` expressions, but have dedicated nodes.
2596
+ We used to have a re-formulation towards those, but we now do these via
2597
+ dedicated nodes too.
2598
+
2599
+ These new nodes, present the evaluation of the left value, checking for
2600
+ its truth value, and depending on it, to pick it, or use the right
2601
+ value.
2602
+
2603
+ Simple Calls
2604
+ ------------
2605
+
2606
+ As seen below, even complex calls are simple calls. In simple calls of
2607
+ Python there is still some hidden semantic going on, that we expose.
2608
+
2609
+ .. code:: python
2610
+
2611
+ func(arg1, arg2, named1=arg3, named2=arg4)
2612
+
2613
+ On the C-API level there is a tuple and dictionary built. This one is
2614
+ exposed:
2615
+
2616
+ .. code:: python
2617
+
2618
+ func(*(arg1, arg2), **{"named1": arg3, "named2": arg4})
2619
+
2620
+ A called function will access this tuple and the dictionary to parse the
2621
+ arguments, once that is also re-formulated (argument parsing), it can
2622
+ then lead to simple in-lining. This way calls only have 2 arguments with
2623
+ constant semantics, that fits perfectly with the C-API where it is the
2624
+ same, so it is actually easier for code generation.
2625
+
2626
+ Although the above looks like a complex call, it actually is not. No
2627
+ checks are needed for the types of the star arguments and it's directly
2628
+ translated to ``PyObject_Call``.
2629
+
2630
+ Complex Calls
2631
+ -------------
2632
+
2633
+ The call operator in Python allows to provide arguments in 4 forms.
2634
+
2635
+ - Positional (or normal) arguments
2636
+
2637
+ - Named (or keyword) arguments
2638
+
2639
+ - Star list arguments
2640
+
2641
+ - Star dictionary arguments
2642
+
2643
+ The evaluation order is precisely that. An example would be:
2644
+
2645
+ .. code:: python
2646
+
2647
+ something(pos1, pos2, name1=named1, name2=named2, *star_list, **star_dict)
2648
+
2649
+ The task here is that first all the arguments are evaluated, left to
2650
+ right, and then they are merged into only two, that is positional and
2651
+ named arguments only. for this, the star list argument and the star
2652
+ dictionary arguments, are merged with the positional and named
2653
+ arguments.
2654
+
2655
+ What's peculiar, is that if both the star list and dictionary arguments
2656
+ are present, the merging is first done for star dictionary, and only
2657
+ after that for the star list argument. This makes a difference, because
2658
+ in case of an error, the star argument raises first.
2659
+
2660
+ .. code:: python
2661
+
2662
+ something(*1, **2)
2663
+
2664
+ This raises "TypeError: something() argument after ** must be a mapping,
2665
+ not int" as opposed to a possibly more expected "TypeError: something()
2666
+ argument after * must be a sequence, not int."
2667
+
2668
+ That doesn't matter much though, because the value is to be evaluated
2669
+ first anyway, and the check is only performed afterwards. If the star
2670
+ list argument calculation gives an error, this one is raised before
2671
+ checking the star dictionary argument.
2672
+
2673
+ So, what we do, is we convert complex calls by the way of special
2674
+ functions, which handle the dirty work for us. The optimization is then
2675
+ tasked to do the difficult stuff. Our example becomes this:
2676
+
2677
+ .. code:: python
2678
+
2679
+ def _complex_call(called, pos, kw, star_list_arg, star_dict_arg):
2680
+ # Raises errors in case of duplicate arguments or tmp_star_dict not
2681
+ # being a mapping.
2682
+ tmp_merged_dict = merge_star_dict_arguments(
2683
+ called, tmp_named, mapping_check(called, tmp_star_dict)
2684
+ )
2685
+
2686
+ # Raises an error if tmp_star_list is not a sequence.
2687
+ tmp_pos_merged = merge_pos_arguments(called, tmp_pos, tmp_star_list)
2688
+
2689
+ # On the C-API level, this is what it looks like.
2690
+ return called(*tmp_pos_merged, **tmp_merged_dict)
2691
+
2692
+
2693
+ returned = _complex_call(
2694
+ called=something,
2695
+ pos=(pos1, pos2),
2696
+ named={"name1": named1, "name2": named2},
2697
+ star_list_arg=star_list,
2698
+ star_dict_arg=star_dict,
2699
+ )
2700
+
2701
+ The call to ``_complex_call`` is be a direct function call with no
2702
+ parameter parsing overhead. And the call in its end, is a special call
2703
+ operation, which relates to the ``PyObject_Call`` C-API.
2704
+
2705
+ Assignment Expressions
2706
+ ----------------------
2707
+
2708
+ In Python 3.8 or higher, you assign inside expressions.
2709
+
2710
+ .. code:: python
2711
+
2712
+ if (x := cond()):
2713
+ do_something()
2714
+
2715
+ this is the same as:
2716
+
2717
+ .. code:: python
2718
+
2719
+ # Doesn't exist with that name, and it is not really taking closure variables,
2720
+ # it just shares the execution context.
2721
+ def _outline_func():
2722
+ nonlocal x
2723
+ x = cond()
2724
+
2725
+ return x
2726
+
2727
+ if (_outline_func()):
2728
+ do_something
2729
+
2730
+ When we use this outline function, we are allowed statements, even
2731
+ assignments, in expressions. For optimization, they of course pose a
2732
+ challenge to be removed ever, only happens when it becomes only a return
2733
+ statement, but they do not cause much difficulties for code generation,
2734
+ since they are transparent.
2735
+
2736
+ Match Statements
2737
+ ----------------
2738
+
2739
+ In Python 3.10 or higher, you can write so called ``match`` statements
2740
+ like this:
2741
+
2742
+ .. code:: python
2743
+
2744
+ match something():
2745
+ case [x] if x:
2746
+ z = 2
2747
+ case _ as y if y == x and y:
2748
+ z = 1
2749
+ case 0:
2750
+ z = 0
2751
+
2752
+ This is the same as
2753
+
2754
+ .. code:: python
2755
+
2756
+ tmp_match_subject = something()
2757
+
2758
+ # Indicator variable, once true, all matching stops.
2759
+ tmp_handled = False
2760
+
2761
+ # First branch
2762
+ x = tmp_match_subject
2763
+
2764
+ if sequence_check(x)
2765
+ if x:
2766
+ z = 2
2767
+ tmp_handled = True
2768
+
2769
+ if tmp_handled is False:
2770
+ y = tmp_match_subject
2771
+
2772
+ if x == y and y:
2773
+ z = 1
2774
+ tmp_handled = True
2775
+
2776
+ if tmp_handled is False:
2777
+ z = 0
2778
+
2779
+ Print Statements
2780
+ ----------------
2781
+
2782
+ The ``print`` statement exists only in Python2. It implicitly converts
2783
+ its arguments to strings before printing them. In order to make this
2784
+ accessible and compile time optimized, this is made visible in the node
2785
+ tree.
2786
+
2787
+ .. code:: python
2788
+
2789
+ print arg1, "1", 1
2790
+
2791
+ This is in Nuitka converted so that the code generation for ``print``
2792
+ doesn't do any conversions itself anymore and relies on the string
2793
+ nature of its input.
2794
+
2795
+ .. code:: python
2796
+
2797
+ print str(arg1), "1", str(1)
2798
+
2799
+ Only string objects are spared from the ``str`` built-in wrapper,
2800
+ because that would only cause noise in optimization stage. Later
2801
+ optimization can then find it unnecessary for certain arguments.
2802
+
2803
+ Additionally, each ``print`` may have a target, and multiple arguments,
2804
+ which we break down as well for dumber code generation. The target is
2805
+ evaluated first and should be a file, kept referenced throughout the
2806
+ whole print statement.
2807
+
2808
+ .. code:: python
2809
+
2810
+ print >> target_file, str(arg1), "1", str(1)
2811
+
2812
+ This is being reformulated to:
2813
+
2814
+ .. code:: python
2815
+
2816
+ try:
2817
+ tmp_target = target_file
2818
+
2819
+ print >>tmp_target, str(arg1), print >>tmp_target, "1", print
2820
+ >>tmp_target, str(1), print >>tmp_target
2821
+
2822
+ finally:
2823
+ del tmp_target
2824
+
2825
+ This allows code generation to not deal with arbitrary amount of
2826
+ arguments to ``print``. It also separates the newline indicator from the
2827
+ rest of things, which makes sense too, having it as a special node, as
2828
+ it's behavior with regards to soft-space is different of course.
2829
+
2830
+ And finally, for ``print`` without a target, we still assume that a
2831
+ target was given, which would be ``sys.stdout`` in a rather hard-coded
2832
+ way (no variable look-ups involved).
2833
+
2834
+ Reformulations during Optimization
2835
+ ==================================
2836
+
2837
+ Builtin ``zip`` for Python2
2838
+ ---------------------------
2839
+
2840
+ .. code:: python
2841
+
2842
+ def _zip(a, b, c): # Potentially more arguments.
2843
+ # First assign, to preserve the order of execution, the arguments might be
2844
+ # complex expressions with side effects.
2845
+ tmp_arg1 = a
2846
+ tmp_arg2 = b
2847
+ tmp_arg3 = c
2848
+ # could be more
2849
+ ...
2850
+
2851
+ # Creation of iterators goes first.
2852
+ try:
2853
+ tmp_iter_1 = iter(tmp_arg1)
2854
+ except TypeError:
2855
+ raise TypeError("zip argument #1 must support iteration")
2856
+ try:
2857
+ tmp_iter_2 = iter(tmp_arg2)
2858
+ except TypeError:
2859
+ raise TypeError("zip argument #2 must support iteration")
2860
+ try:
2861
+ tmp_iter_3 = iter(tmp_arg3)
2862
+ except TypeError:
2863
+ raise TypeError("zip argument #3 must support iteration")
2864
+
2865
+ # could be more
2866
+ ...
2867
+
2868
+ tmp_result = []
2869
+ try:
2870
+ while 1:
2871
+ tmp_result.append(
2872
+ (
2873
+ next(tmp_iter_1),
2874
+ next(tmp_iter_2),
2875
+ next(tmp_iter_3),
2876
+ # more arguments here ...
2877
+ )
2878
+ )
2879
+ except StopIteration:
2880
+ pass
2881
+
2882
+ return tmp_result
2883
+
2884
+ Builtin ``zip`` for Python3
2885
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
2886
+
2887
+ .. code:: python
2888
+
2889
+ for x, y, z in zip(a, b, c):
2890
+ ...
2891
+
2892
+ .. code:: python
2893
+
2894
+ def _zip_gen_object(a, b, c, ...):
2895
+ ...
2896
+ # See Python2
2897
+ ...
2898
+
2899
+ # could be more
2900
+ ...
2901
+ while 1:
2902
+ yield (
2903
+ next(tmp_iter_1),
2904
+ next(tmp_iter_2),
2905
+ next(tmp_iter_3),
2906
+ ...
2907
+ )
2908
+ except StopIteration:
2909
+ break
2910
+
2911
+ for x, y, z in _zip_gen_object(a, b, c):
2912
+ ...
2913
+
2914
+ Builtin ``map`` for Python2
2915
+ ---------------------------
2916
+
2917
+ .. code:: python
2918
+
2919
+ def _map():
2920
+ # TODO: Not done yet.
2921
+ pass
2922
+
2923
+ Builtin ``min``
2924
+ ---------------
2925
+
2926
+ .. code:: python
2927
+
2928
+ # TODO: keyfunc (Python2/3), defaults (Python3)
2929
+ def _min(a, b, c): # Potentially more arguments.
2930
+ tmp_arg1 = a
2931
+ tmp_arg2 = b
2932
+ tmp_arg3 = c
2933
+ # more arguments here ...
2934
+
2935
+ result = tmp_arg1
2936
+ if keyfunc is None: # can be decided during re-formulation
2937
+ tmp_key_result = keyfunc(result)
2938
+ tmp_key_candidate = keyfunc(tmp_arg2)
2939
+ if tmp_key_candidate < tmp_key_result:
2940
+ result = tmp_arg2
2941
+ tmp_key_result = tmp_key_candidate
2942
+ tmp_key_candidate = keyfunc(tmp_arg3)
2943
+ if tmp_key_candidate < tmp_key_result:
2944
+ result = tmp_arg3
2945
+ tmp_key_result = tmp_key_candidate
2946
+ # more arguments here ...
2947
+ else:
2948
+ if tmp_arg2 < result:
2949
+ result = tmp_arg2
2950
+ if tmp_arg3 < result:
2951
+ result = tmp_arg3
2952
+ # more arguments here ...
2953
+
2954
+ return result
2955
+
2956
+ Builtin ``max``
2957
+ ---------------
2958
+
2959
+ See ``min`` just with ``>`` instead of ``<``.
2960
+
2961
+ Call to ``dir`` without arguments
2962
+ ---------------------------------
2963
+
2964
+ This expression is reformulated to ``locals().keys()`` for Python2, and
2965
+ ``list(locals.keys())`` for Python3.
2966
+
2967
+ Calls to functions with known signatures
2968
+ ----------------------------------------
2969
+
2970
+ As a necessary step for inlining function calls, we need to change calls
2971
+ to variable references to function references.
2972
+
2973
+ .. code:: python
2974
+
2975
+ def f(arg1, arg2):
2976
+ return some_op(arg1, arg2)
2977
+
2978
+
2979
+ # ... other code
2980
+
2981
+ x = f(a, b + c)
2982
+
2983
+ In the optimization it is turned into
2984
+
2985
+ .. code:: python
2986
+
2987
+ # ... other code
2988
+
2989
+ x = lambda arg1, arg2: some_op(arg1, arg2)(a, b + c)
2990
+
2991
+ .. note::
2992
+
2993
+ The ``lambda`` stands here for a reference to the function, rather
2994
+ than a variable reference, this is the normal forward propagation of
2995
+ values, and does not imply duplicating or moving any code at all.
2996
+
2997
+ At this point, we still have not resolved the actual call arguments to
2998
+ the variable names, still a Python level function is created, and
2999
+ called, and arguments are parsed to a tuple, and from a tuple. For
3000
+ simplicity sake, we have left out keyword arguments out of the equation
3001
+ for now, but they are even more costly.
3002
+
3003
+ So now, what we want to do, is to re-formulate the call into what we
3004
+ call an outline body, which is a inline function, and that does the
3005
+ parameter parsing already and contains the function code too. In this
3006
+ inlining, there still is a function, but it's technically not a Python
3007
+ function anymore, just something that is an expression whose value is
3008
+ determined by control flow and the function call.
3009
+
3010
+ .. code:: python
3011
+
3012
+ # ... other code
3013
+
3014
+
3015
+ def _f():
3016
+ tmp_arg1 = arg1
3017
+ tmp_arg2 = b + c
3018
+ return tmp_arg1 + tmp_arg2
3019
+
3020
+
3021
+ x = _f()
3022
+
3023
+ With this, a function is considered inlined, because it becomes part of
3024
+ the abstract execution, and the actual code is duplicated.
3025
+
3026
+ The point is, that matching the signature of the function to the actual
3027
+ arguments given, is pretty straight forward in many cases, but there are
3028
+ two forms of complications that can happen. One is default values,
3029
+ because they need to assigned or not, and the other is keyword
3030
+ arguments, because they allow to reorder arguments.
3031
+
3032
+ Let's consider an example with default values first.
3033
+
3034
+ .. code:: python
3035
+
3036
+ def f(arg1, arg2=some_default()):
3037
+ return some_op(arg1, arg2)
3038
+
3039
+
3040
+ # ... other code
3041
+
3042
+ x = f(a, b + c)
3043
+
3044
+ Since the point, at which defaults are taken, we must execute them at
3045
+ that point and make them available.
3046
+
3047
+ .. code:: python
3048
+
3049
+ tmp_defaults = (some_default,) # that was f.__defaults__
3050
+
3051
+ # ... other code
3052
+
3053
+
3054
+ def _f():
3055
+ tmp_arg1 = arg1
3056
+ tmp_arg2 = tmp_defaults[0]
3057
+ return tmp_arg1 + tmp_arg2
3058
+
3059
+
3060
+ x = _f()
3061
+
3062
+ Now, one where keyword arguments are ordered the other way.
3063
+
3064
+ .. code:: python
3065
+
3066
+ def f(arg1, arg2):
3067
+ return some_op(arg1, arg2)
3068
+
3069
+
3070
+ # ... other code
3071
+
3072
+ x = f(arg2=b + c, arg1=a) # "b+c" is evaluated before "a"
3073
+
3074
+ The solution is an extra level of temporary variables. We remember the
3075
+ argument order by names and then assign parameters from it:
3076
+
3077
+ .. code:: python
3078
+
3079
+ # ... other code
3080
+
3081
+
3082
+ def _f():
3083
+ tmp_given_value1 = b + c
3084
+ tmp_given_value2 = a
3085
+ tmp_arg1 = tmp_given_value2
3086
+ tmp_arg2 = tmp_given_value1
3087
+ return tmp_arg1 + tmp_arg2
3088
+
3089
+
3090
+ x = _f()
3091
+
3092
+ Obviously, optimization of Nuitka can decide, that e.g. should ``a`` or
3093
+ ``b+c`` not have side effects, to optimize these with standard variable
3094
+ tracing away.
3095
+
3096
+ Nodes that serve special purposes
3097
+ =================================
3098
+
3099
+ Try statements
3100
+ --------------
3101
+
3102
+ In Python, there is ``try``/``except`` and ``try``/``finally``. In
3103
+ Nuitka there is only a ``try``, which then has blocks to handle
3104
+ exceptions, ``continue``, or ``break``, or ``return``. There is no
3105
+ ``else`` to this node type.
3106
+
3107
+ This is more low level and universal. Code for the different handlers
3108
+ can be different. User provided ``finally`` blocks become copied into
3109
+ the different handlers.
3110
+
3111
+ Releases
3112
+ --------
3113
+
3114
+ When a function exits, the local variables are to be released. The same
3115
+ applies to temporary variables used in re-formulations. These releases
3116
+ cause a reference to the object to the released, but no value change.
3117
+ They are typically the last use of the object in the function.
3118
+
3119
+ The are similar to ``del``, but make no value change. For shared
3120
+ variables this effect is most visible.
3121
+
3122
+ Side Effects
3123
+ ------------
3124
+
3125
+ When an exception is bound to occur, and this can be determined at
3126
+ compile time, Nuitka will not generate the code the leads to the
3127
+ exception, but directly just raise it. But not in all cases, this is the
3128
+ full thing.
3129
+
3130
+ Consider this code:
3131
+
3132
+ .. code:: python
3133
+
3134
+ f(a(), 1 / 0)
3135
+
3136
+ The second argument will create a ``ZeroDivisionError`` exception, but
3137
+ before that ``a()`` must be executed, but the call to ``f`` will never
3138
+ happen and no code is needed for that, but the name look-up must still
3139
+ succeed. This then leads to code that is internally like this:
3140
+
3141
+ .. code:: python
3142
+
3143
+ f(a(), raise_ZeroDivisionError())
3144
+
3145
+ which is then modeled as:
3146
+
3147
+ .. code:: python
3148
+
3149
+ side_effect(a(), f, raise_ZeroDivisionError())
3150
+
3151
+ where we can consider ``side_effect`` to be a function that returns the
3152
+ last expression. Of course, if this is not part of another expression,
3153
+ but close to statement level, side effects, can be converted to multiple
3154
+ statements simply.
3155
+
3156
+ Another use case, is that the value of an expression can be predicted,
3157
+ but that the language still requires things to happen, consider this:
3158
+
3159
+ .. code:: python
3160
+
3161
+ a = len((f(), g()))
3162
+
3163
+ We can tell that ``a`` will be 2, but the call to ``f`` and ``g`` must
3164
+ still be performed, so it becomes:
3165
+
3166
+ .. code:: python
3167
+
3168
+ a = side_effects(f(), g(), 2)
3169
+
3170
+ Modelling side effects explicitly has the advantage of recognizing them
3171
+ easily and allowing to drop the call to the tuple building and checking
3172
+ its length, only to release it.
3173
+
3174
+ Caught Exception Type/Value References
3175
+ --------------------------------------
3176
+
3177
+ When catching an exception, these are not directly put to
3178
+ ``sys.exc_info()``, but remain as mere C variables. From there, they can
3179
+ be accessed with these nodes, or if published then from the thread
3180
+ state.
3181
+
3182
+ Hard Module Imports
3183
+ -------------------
3184
+
3185
+ These are module look-ups that don't depend on any local variable for
3186
+ the module to be looked up, but with hard-coded names. These may be the
3187
+ result of optimization gaining such level of certainty.
3188
+
3189
+ Currently they are used to represent ``sys.stdout`` usage for ``print``
3190
+ statements, but other usages will follow.
3191
+
3192
+ Locals Dict Update Statement
3193
+ ----------------------------
3194
+
3195
+ For the ``exec`` re-formulation, we apply an explicit sync back to
3196
+ locals as an explicit node. It helps us to tell the affected local
3197
+ variable traces that they might be affected. It represents the bit of
3198
+ ``exec`` in Python2, that treats ``None`` as the locals argument as an
3199
+ indication to copy back.
3200
+
3201
+ Optimizing Attribute Lookups into Method Calls for Built-ins types
3202
+ ==================================================================
3203
+
3204
+ The attribute lookup node ``ExpressionAttributeLookup`` represents
3205
+ looking up an attribute name, that is known to be a string. That's
3206
+ already a bit more special, than say what ``ExpressionBuiltinGetattr``
3207
+ does for ``getattr``, where it could be any object being looked up. From
3208
+ the Python syntax however, these are what gets created, as it's not
3209
+ allowed in any other way. So, this is where this starts.
3210
+
3211
+ Then, when we are creating an attribute node with a *fixed* name, we
3212
+ dispatch it to generated node classes, e.g.
3213
+ ``ExpressionAttributeLookupFixedAppend``. This will be the same, except
3214
+ that the attribute name is hardcoded.
3215
+
3216
+ There are generated, such that they can have code that is special for
3217
+ ``.append`` lookups. In their case, it makes sense to ask the source, if
3218
+ they are a ``list`` object exactly. It doesn't make sense to do this
3219
+ check for names that the ``list`` does not contain. So at that stage, we
3220
+ are saving both a bit of memory and time.
3221
+
3222
+ Should this question succeed, i.e. the expression the attribute values
3223
+ is looked up upon, is known to be a ``list`` exactly, we persist this
3224
+ knowledge in the also generated nodes that represent ``list.append`` and
3225
+ just that. It is called ``ExpressionAttributeLookupListAppend`` and only
3226
+ represents the knowledge gained so far.
3227
+
3228
+ We do not consider if ``ExpressionAttributeLookupFixedAppend`` is
3229
+ called, or not, passed as an argument, assigned somewhere, it doesn't
3230
+ matter yet, but for ``ExpressionAttributeLookupListAppend`` we know a
3231
+ hell of a lot more. We know its type, we know attributes for it, say
3232
+ ``__name__``, as it is a compile time constant, therefore much
3233
+ optimization can follow for them, and code generation can specialize
3234
+ them too (not yet done).
3235
+
3236
+ Should these nodes then, and say this happens later after some inlining
3237
+ happens be seen as called, we can then turn them into method call nodes,
3238
+ checking the arguments and such, this is then
3239
+ ``ExpressionListOperationAppend`` and at this point, will raising errors
3240
+ with wrong argument counts.
3241
+
3242
+ And then we have this ``ExpressionListOperationAppend`` which will
3243
+ influence the tracing of ``list`` contents, i.e. it will be able to tell
3244
+ the ``list`` in question is no more empty after this ``append``, and it
3245
+ will be able to at least predict the last element value, truth value of
3246
+ the list, etc.
3247
+
3248
+ ******************************
3249
+ Plan to add "ctypes" support
3250
+ ******************************
3251
+
3252
+ Add interfacing to C code, so Nuitka can turn a ``ctypes`` binding into
3253
+ an efficient binding as if it were written manually with Python C-API or
3254
+ better.
3255
+
3256
+ Goals/Allowances to the task
3257
+ ============================
3258
+
3259
+ #. Goal: Must not directly use any pre-existing C/C++ language file
3260
+ headers, only generate declarations in generated C code ourselves. We
3261
+ would rather write or use tools that turn an existing a C header to
3262
+ some ``ctypes`` declarations if it needs to be, but not mix and use
3263
+ declarations from existing header code.
3264
+
3265
+ .. note::
3266
+
3267
+ The "cffi" interface maybe won't have the issue, but it's not
3268
+ something we need to write or test the code for.
3269
+
3270
+ #. Allowance: May use ``ctypes`` module at compile time to ask things
3271
+ about ``ctypes`` and its types.
3272
+
3273
+ #. Goal: Should make use of ``ctypes``, to e.g. not hard code in Nuitka
3274
+ what ``ctypes.c_int()`` gives on the current platform, unless there
3275
+ is a specific benefit.
3276
+
3277
+ #. Allowance: Not all ``ctypes`` usages must be supported immediately.
3278
+
3279
+ #. Goal: Try and be as general as possible.
3280
+
3281
+ For the compiler, ``ctypes`` support should be hidden behind a
3282
+ generic interface of some sort. Supporting ``math`` module should be
3283
+ the same thing.
3284
+
3285
+ Type Inference - The Discussion
3286
+ ===============================
3287
+
3288
+ Main initial goal is to forward value knowledge. When you have ``a =
3289
+ b``, that means that a and b now "alias". And if you know the value of
3290
+ ``b`` you can assume to know the value of ``a``. This is called
3291
+ "aliasing".
3292
+
3293
+ When assigning ``a`` to something new, that won't change ``b`` at all.
3294
+ But when an attribute is set, a method called of it, that might impact
3295
+ the actual value, referenced by both. We need to understand mutable vs.
3296
+ immutable though, as some things are not affected by aliasing in any
3297
+ way.
3298
+
3299
+ .. code:: python
3300
+
3301
+ a = 3
3302
+ b = a
3303
+
3304
+ b += 4 # a is not changed
3305
+
3306
+ a = [3]
3307
+ b = a
3308
+
3309
+ b += [4] # a is changed indeed
3310
+
3311
+ If we cannot tell, we must assume that ``a`` might be changed. It's
3312
+ either ``b`` or what ``a`` was before. If the type is not mutable, we
3313
+ can assume the aliasing to be broken up, and if it is, we can assume
3314
+ both to be the same value still.
3315
+
3316
+ When that value is a compile time constant, we will want to push it
3317
+ forward, and we do that with "(Constant) Value Propagation", which is
3318
+ implemented already. We avoid too large constants, and we properly trace
3319
+ value assignments, but not yet aliases.
3320
+
3321
+ In order to fully benefit from type knowledge, the new type system must
3322
+ be able to be fully friends with existing built-in types, but for
3323
+ classes to also work with it, it should not be tied to them. The
3324
+ behavior of a type ``long``, ``str``, etc. ought to be implemented as
3325
+ far as possible with the built-in ``long``, ``str`` at compiled time as
3326
+ well.
3327
+
3328
+ .. note::
3329
+
3330
+ This "use the real thing" concept extends beyond builtin types, e.g.
3331
+ ``ctypes.c_int()`` should also be used, but we must be aware of
3332
+ platform dependencies. The maximum size of ``ctypes.c_int`` values
3333
+ would be an example of that. Of course that may not be possible for
3334
+ everything.
3335
+
3336
+ This approach has well proven itself with built-in functions already,
3337
+ where we use real built-ins where possible to make computations. We
3338
+ have the problem though that built-ins may have problems to execute
3339
+ everything with reasonable compile time cost.
3340
+
3341
+ Another example, consider the following code:
3342
+
3343
+ .. code:: python
3344
+
3345
+ len("a" * 1000000000000)
3346
+
3347
+ To predict this code, calculating it at compile time using constant
3348
+ operations, while feasible, puts an unacceptable burden on the
3349
+ compilation.
3350
+
3351
+ Esp. we wouldn't want to produce such a huge constant and stream it, the
3352
+ C++ code would become too huge. So, we need to stop the ``*`` operator
3353
+ from being used at compile time and cope with reduced knowledge, already
3354
+ here:
3355
+
3356
+ .. code:: python
3357
+
3358
+ "a" * 10000000000000
3359
+
3360
+ Instead, we would probably say that for this expression:
3361
+
3362
+ - The result is a ``str`` or a C level ``PyStringObject *``.
3363
+
3364
+ - We know its length exactly, it's ``10000000000000``.
3365
+
3366
+ - Can predict every of its elements when sub-scripted, sliced, etc., if
3367
+ need be, with a function we may create.
3368
+
3369
+ Similar is true for this horrible (in Python2) thing:
3370
+
3371
+ .. code:: python
3372
+
3373
+ range(10000000000000)
3374
+
3375
+ So it's a rather general problem, this time we know:
3376
+
3377
+ - The result is a ``list`` or C level ``PyListObject *``.
3378
+
3379
+ - We know its length exactly, ``10000000000000``.
3380
+
3381
+ - Can predict every of its elements when index, sliced, etc., if need
3382
+ be, with a function.
3383
+
3384
+ Again, we wouldn't want to create the list. Therefore Nuitka avoids
3385
+ executing these calculation, when they result in constants larger than a
3386
+ threshold of e.g. 256 elements. This concept has to be also applied to
3387
+ large integers and more CPU and memory traps.
3388
+
3389
+ Now lets look at a more complete use case:
3390
+
3391
+ .. code:: python
3392
+
3393
+ for x in range(10000000000000):
3394
+ doSomething()
3395
+
3396
+ Looking at this example, one traditional way to look at it, would be to
3397
+ turn ``range`` into ``xrange``, and to note that ``x`` is unused. That
3398
+ would already perform better. But really better is to notice that
3399
+ ``range()`` generated values are not used at all, but only the length of
3400
+ the expression matters.
3401
+
3402
+ And even if ``x`` were used, only the ability to predict the value from
3403
+ a function would be interesting, so we would use that computation
3404
+ function instead of having an iteration source. Being able to predict
3405
+ from a function could mean to have Python code to do it, as well as C
3406
+ code to do it. Then code for the loop can be generated without any
3407
+ CPython library usage at all.
3408
+
3409
+ .. note::
3410
+
3411
+ Of course, it would only make sense where such calculations are
3412
+ "O(1)" complexity, i.e. do not require recursion like "n!" does.
3413
+
3414
+ The other thing is that CPython appears to at - run time - take length
3415
+ hints from objects for some operations, and there it would help too, to
3416
+ track length of objects, and provide it, to outside code.
3417
+
3418
+ Back to the original example:
3419
+
3420
+ .. code:: python
3421
+
3422
+ len("a" * 1000000000000)
3423
+
3424
+ The theme here, is that when we can't compute all intermediate
3425
+ expressions, and we sure can't do it in the general case. But we can
3426
+ still, predict some of properties of an expression result, more or less.
3427
+
3428
+ Here we have ``len`` to look at an argument that we know the size of.
3429
+ Great. We need to ask if there are any side effects, and if there are,
3430
+ we need to maintain them of course. This is already done by existing
3431
+ optimization if an operation generates an exception.
3432
+
3433
+ .. note::
3434
+
3435
+ The optimization of ``len`` has been implemented and works for all
3436
+ kinds of container creation and ranges.
3437
+
3438
+ Applying this to "ctypes"
3439
+ =========================
3440
+
3441
+ The *not so specific* problem to be solved to understand ``ctypes``
3442
+ declarations is maybe as follows:
3443
+
3444
+ .. code:: python
3445
+
3446
+ import ctypes
3447
+
3448
+ This leads to Nuitka in its tree to have an assignment from a
3449
+ ``__import__`` expression to the variable ``ctypes``. It can be
3450
+ predicted by default to be a module object, and even better, it can be
3451
+ known as ``ctypes`` from standard library with more or less certainty.
3452
+ See the section about "Importing".
3453
+
3454
+ So that part is "easy", and it's what will happen. During optimization,
3455
+ when the module ``__import__`` expression is examined, it should say:
3456
+
3457
+ - ``ctypes`` is a module
3458
+
3459
+ - ``ctypes`` is from standard library (if it is, might not be true)
3460
+
3461
+ - ``ctypes`` then has code behind it, called ``ModuleFriend`` that
3462
+ knows things about it attributes, that should be asked.
3463
+
3464
+ The later is the generic interface, and the optimization should connect
3465
+ the two, of course via package and module full names. It will need a
3466
+ ``ModuleFriendRegistry``, from which it can be pulled. It would be nice
3467
+ if we can avoid ``ctypes`` to be loaded into Nuitka unless necessary, so
3468
+ these need to be more like a plug-in, loaded only if necessary, i.e. the
3469
+ user code actually uses ``ctypes``.
3470
+
3471
+ Coming back to the original expression, it also contains an assignment
3472
+ expression, because it re-formulated to be more like this:
3473
+
3474
+ .. code:: python
3475
+
3476
+ ctypes = __import__("ctypes")
3477
+
3478
+ The assigned to object, simply gets the type inferred propagated as part
3479
+ of an SSA form. Ideally, we could be sure that nothing in the program
3480
+ changes the variable, and therefore have only one version of that
3481
+ variable.
3482
+
3483
+ For module variables, when the execution leaves the module to unknown
3484
+ code, or unclear code, it might change the variable. Therefore, likely
3485
+ we will often only assume that it could still be ``ctypes``, but also
3486
+ something else.
3487
+
3488
+ Depending on how well we control module variable assignment, we can
3489
+ decide this more of less quickly. With "compiled modules" types, the
3490
+ expectation is that it's merely a quick C ``==`` comparison check. The
3491
+ module friend should offer code to allow a check if it applies, for
3492
+ uncertain cases.
3493
+
3494
+ Then when we come to uses of it:
3495
+
3496
+ .. code:: python
3497
+
3498
+ ctypes.c_int()
3499
+
3500
+ At this point, using SSA, we are more of less sure, that ``ctypes`` is
3501
+ at that point the module, and that we know what it's ``c_int`` attribute
3502
+ is, at compile time, and what it's call result is. We will use the
3503
+ module friend to help with that. It will attach knowledge about the
3504
+ result of that expression during the SSA collection process.
3505
+
3506
+ This is more like a value forward propagation than anything else. In
3507
+ fact, constant propagation should only be the special case of it, and
3508
+ one design goal of Nuitka was always to cover these two cases with the
3509
+ same code.
3510
+
3511
+ Excursion to Functions
3512
+ ======================
3513
+
3514
+ In order to decide what this means to functions and their call
3515
+ boundaries, if we propagate forward, how to handle this:
3516
+
3517
+ .. code:: python
3518
+
3519
+ def my_append(a, b):
3520
+ a.append(b)
3521
+
3522
+ return a
3523
+
3524
+ We annotate that ``a`` is first a "unknown but defined parameter
3525
+ object", then later on something that definitely has an ``append``
3526
+ attribute, when returned, as otherwise an exception occurs.
3527
+
3528
+ The type of ``a`` changes to that after ``a.append`` look-up succeeds.
3529
+ It might be many kinds of an object, but e.g. it could have a higher
3530
+ probability of being a ``PyListObject``. And we would know it cannot be
3531
+ a ``PyStringObject``, as that one has no ``append`` method, and would
3532
+ have raised an exception therefore.
3533
+
3534
+ .. note::
3535
+
3536
+ If classes, i.e. other types in the program, have an ``append``
3537
+ attribute, it should play a role too, there needs to be a way to
3538
+ plug-in to this decisions.
3539
+
3540
+ .. note::
3541
+
3542
+ On the other hand, types without ``append`` attribute can be
3543
+ eliminated.
3544
+
3545
+ Therefore, functions through SSA provide an automatic analysis on their
3546
+ return state, or return value types, or a quick way to predict return
3547
+ value properties, based on input value knowledge.
3548
+
3549
+ So this could work:
3550
+
3551
+ .. code:: python
3552
+
3553
+ b = my_append([], 3)
3554
+
3555
+ assert b == [3] # Could be decided now
3556
+
3557
+ Goal: The structure we use makes it easy to tell what ``my_append`` may
3558
+ be. So, there should be a means to ask it about call results with given
3559
+ type/value information. We need to be able to tell, if evaluating
3560
+ ``my_append`` makes sense with given parameters or not, if it does
3561
+ impact the return value.
3562
+
3563
+ We should e.g. be able to make ``my_append`` tell, one or more of these:
3564
+
3565
+ - Returns the first parameter value as return value (unless it raises
3566
+ an exception).
3567
+
3568
+ - The return value has the same type as ``a`` (unless it raises an
3569
+ exception).
3570
+
3571
+ - The return value has an ``append`` attribute.
3572
+
3573
+ - The return value might be a ``list`` object.
3574
+
3575
+ - The return value may not be a ``str`` object.
3576
+
3577
+ - The function will raise if first argument has no ``append``
3578
+ attribute.
3579
+
3580
+ The exactness of statements may vary. But some things may be more
3581
+ interesting. If e.g. the aliasing of a parameter value to the return
3582
+ value is known exactly, then information about it need to all be given
3583
+ up, but some can survive.
3584
+
3585
+ It would be nice, if ``my_append`` had sufficient information, so we
3586
+ could specialize with ``list`` and ``int`` from the parameters, and then
3587
+ e.g. know at least some things that it does in that case. Such
3588
+ specialization would have to be decided if it makes sense. In the
3589
+ alternative, it could be done for each variant anyway, as there won't be
3590
+ that many of them.
3591
+
3592
+ Doing this "forward" analysis appears to be best suited for functions
3593
+ and therefore long term. We will try it that way.
3594
+
3595
+ Excursion to Loops
3596
+ ==================
3597
+
3598
+ .. code:: python
3599
+
3600
+ a = 1
3601
+
3602
+ while 1: # think loop: here
3603
+ b = a + 1
3604
+ a = b
3605
+
3606
+ if cond():
3607
+ break
3608
+
3609
+ print(a)
3610
+
3611
+ The handling of loops (both ``for`` and ``while`` are re-formulated to
3612
+ this kind of loops with ``break`` statements) has its own problem. The
3613
+ loop start and may have an assumption from before it started, that ``a``
3614
+ is constant, but that is only true for the first iteration. So, we can't
3615
+ pass knowledge from outside loop forward directly into the for loop
3616
+ body.
3617
+
3618
+ So the collection for loops needs to be two pass for loops. First, to
3619
+ collect assignments, and merge these into the start state, before
3620
+ entering the loop body. The need to make two passes is special to loops.
3621
+
3622
+ For a start, it is done like this. At loop entry, all pre-existing, but
3623
+ written traces, are turned into loop merges. Knowledge is not completely
3624
+ removed about everything assigned or changed in the loop, but then it's
3625
+ not trusted anymore.
3626
+
3627
+ From that basis, the ``break`` exits are analysed, and merged, building
3628
+ up the post loop state, and ``continue`` exits of the loop replacing the
3629
+ unknown part of the loop entry state. The loop end is considered a
3630
+ ``continue`` for this purpose.
3631
+
3632
+ Excursion to Conditions
3633
+ =======================
3634
+
3635
+ .. code:: python
3636
+
3637
+ if cond:
3638
+ x = 1
3639
+ else:
3640
+ x = 2
3641
+
3642
+ b = x < 3
3643
+
3644
+ The above code contains a condition, and these have the problem, that
3645
+ when exiting the conditional block, a merge must be done, of the ``x``
3646
+ versions. It could be either one. The merge may trace the condition
3647
+ under which a choice is taken. That way, we could decide pairs of traces
3648
+ under the same condition.
3649
+
3650
+ These merges of SSA variable "versions", represent alternative values.
3651
+ They pose difficulties, and might have to be reduced to commonality. In
3652
+ the above example, the ``<`` operator will have to check for each
3653
+ version, and then to decide that both indeed give the same result.
3654
+
3655
+ The trace collection tracks variable changes in conditional branches,
3656
+ and then merges the existing state at conditional statement exits.
3657
+
3658
+ .. note::
3659
+
3660
+ A branch is considered "exiting" if it is not abortive. Should it end
3661
+ in a ``raise``, ``break``, ``continue``, or ``return``, there is no
3662
+ need to merge that branch, as execution of that branch is terminated.
3663
+
3664
+ Should both branches be abortive, that makes things really simple, as
3665
+ there is no need to even continue.
3666
+
3667
+ Should only one branch exist, but be abortive, then no merge is
3668
+ needed, and the collection can assume after the conditional
3669
+ statement, that the branch was not taken, and continue.
3670
+
3671
+ When exiting both the branches, these branches must both be merged, with
3672
+ their new information.
3673
+
3674
+ In the above case:
3675
+
3676
+ - The "yes" branch knows variable ``x`` is an ``int`` of constant value
3677
+ ``1``
3678
+
3679
+ - The "no" branch knows variable ``x`` is an ``int`` of constant value
3680
+ ``2``
3681
+
3682
+ That might be collapsed to:
3683
+
3684
+ - The variable ``x`` is an integer of value in ``(1,2)``
3685
+
3686
+ Given this, we then should be able to pre-compute the value of this:
3687
+
3688
+ .. code:: python
3689
+
3690
+ b = x < 3
3691
+
3692
+ The comparison operator can therefore decide and tell:
3693
+
3694
+ - The variable ``b`` is a boolean of constant value ``True``.
3695
+
3696
+ Were it unable to decide, it would still be able to say:
3697
+
3698
+ - The variable ``b`` is a boolean.
3699
+
3700
+ For conditional statements optimization, it's also noteworthy, that the
3701
+ condition is known to pass or not pass the truth check, inside branches,
3702
+ and in the case of non-exiting single branches, after the statement it's
3703
+ not true.
3704
+
3705
+ We may want to take advantage of it. Consider e.g.
3706
+
3707
+ .. code:: python
3708
+
3709
+ if type(a) is list:
3710
+ a.append(x)
3711
+ else:
3712
+ a += (x,)
3713
+
3714
+ In this case, the knowledge that ``a`` is a list, could be used to
3715
+ generate better code and with the definite knowledge that ``a`` is of
3716
+ type list. With that knowledge the ``append`` attribute call will become
3717
+ the ``list`` built-in type operation.
3718
+
3719
+ Excursion to ``return`` statements
3720
+ ==================================
3721
+
3722
+ The ``return`` statement (like ``break``, ``continue``, ``raise``) is
3723
+ "aborting" to control flow. It is always the last statement of inspected
3724
+ block. When there statements to follow it, optimization will remove it
3725
+ as "dead code".
3726
+
3727
+ If all branches of a conditional statement are "aborting", the statement
3728
+ is decided "aborting" too. If a loop doesn't abort with a break, it
3729
+ should be considered "aborting" too.
3730
+
3731
+ Excursion to ``yield`` expressions
3732
+ ==================================
3733
+
3734
+ The ``yield`` expression can be treated like a normal function call, and
3735
+ as such invalidates some known constraints just as much as they do. It
3736
+ executes outside code for an unknown amount of time, and then returns,
3737
+ with little about the outside world known anymore, if it's accessible
3738
+ from there.
3739
+
3740
+ Mixed Types
3741
+ ===========
3742
+
3743
+ Consider the following inside a function or module:
3744
+
3745
+ .. code:: python
3746
+
3747
+ if cond is not None:
3748
+ a = [x for x in something() if cond(x)]
3749
+ else:
3750
+ a = ()
3751
+
3752
+ A programmer will often not make a difference between ``list`` and
3753
+ ``tuple``. In fact, using a ``tuple`` is a good way to express that
3754
+ something won't be changed later, as these are mutable.
3755
+
3756
+ .. note::
3757
+
3758
+ Better programming style, would be to use this:
3759
+
3760
+ .. code:: python
3761
+
3762
+ if cond is not None:
3763
+ a = tuple(x for x in something() if cond(x))
3764
+ else:
3765
+ a = ()
3766
+
3767
+ People don't do it, because they dislike the performance hit
3768
+ encountered by the generator expression being used to initialize the
3769
+ tuple. But it would be more consistent, and so Nuitka is using it,
3770
+ and of course one day Nuitka ought to be able to make no difference
3771
+ in performance for it.
3772
+
3773
+ To Nuitka though this means, that if ``cond`` is not predictable, after
3774
+ the conditional statement we may either have a ``tuple`` or a ``list``
3775
+ type object in ``a``. In order to represent that without resorting to "I
3776
+ know nothing about it", we need a kind of ``min``/``max`` operating
3777
+ mechanism that is capable of say what is common with multiple
3778
+ alternative values.
3779
+
3780
+ .. note::
3781
+
3782
+ At this time, we don't really have that mechanism to find the
3783
+ commonality between values.
3784
+
3785
+ Back to "ctypes"
3786
+ ================
3787
+
3788
+ .. code:: python
3789
+
3790
+ v = ctypes.c_int()
3791
+
3792
+ Coming back to this example, we needed to propagate ``ctypes``, then we
3793
+ can propagate "something" from ``ctypes.int`` and then known what this
3794
+ gives with a call and no arguments, so the walk of the nodes, and
3795
+ diverse operations should be addressed by a module friend.
3796
+
3797
+ In case a module friend doesn't know what to do, it needs to say so by
3798
+ default. This should be enforced by a base class and give a warning or
3799
+ note.
3800
+
3801
+ Now to the interface
3802
+ ====================
3803
+
3804
+ The following is the intended interface:
3805
+
3806
+ - Iteration with node methods ``computeStatement`` and
3807
+ ``computeExpression``.
3808
+
3809
+ These traverse modules and functions (i.e. scopes) and visit
3810
+ everything in the order that Python executes it. The visiting object
3811
+ is ``TraceCollection`` and pass forward. Some node types, e.g.
3812
+ ``StatementConditional`` new create branch trace collections and
3813
+ handle the SSA merging at exit.
3814
+
3815
+ - Replacing nodes during the visit.
3816
+
3817
+ Both ``computeStatement`` and ``computeExpression`` are tasked to
3818
+ return potential replacements of themselves, together with "tags"
3819
+ (meaningless now), and a "message", used for verbose tracing.
3820
+
3821
+ The replacement node of ``+`` operator, may e.g. be the pre-computed
3822
+ constant result, wrapped in side effects of the node, or the
3823
+ expression raised, again wrapped in side effects.
3824
+
3825
+ - Assignments and references affect SSA.
3826
+
3827
+ The SSA tree is initialized every time a scope is visited. Then
3828
+ during traversal, traces are built up. Every assignment and merge
3829
+ starts a new trace for that matter. References to a given variable
3830
+ version are traced that way.
3831
+
3832
+ - Value escapes are traced too.
3833
+
3834
+ When an operation hands over a value to outside code, it indicates so
3835
+ to the trace collection. This is for it to know, when e.g. a constant
3836
+ value, might be mutated meanwhile.
3837
+
3838
+ - Nodes can be queried about their properties.
3839
+
3840
+ There is a type shape and a value shape that each node can be asked
3841
+ about. The type shape offers methods that allow to check if certain
3842
+ operations are at all supported or not. These can always return
3843
+ ``True`` (yes), ``False`` (no), and ``None`` (cannot decide). In the
3844
+ case of the later, optimizations may not be able do much about it.
3845
+ Lets call these values "tri-state".
3846
+
3847
+ There is also the value shape of a node. This can go deeper, and be
3848
+ more specific to a given node.
3849
+
3850
+ The default implementation will be very pessimistic. Specific node
3851
+ types and shapes may then declare, that they e.g. have no side
3852
+ effects, will not raise for certain operations, have a known truth
3853
+ value, have a known iteration length, can predict their iteration
3854
+ values, etc.
3855
+
3856
+ - Nodes are linked to certain states.
3857
+
3858
+ During the collect, a variable reference, is linked to a certain
3859
+ trace state, and that can be used by parent operations.
3860
+
3861
+ .. code:: python
3862
+
3863
+ a = 1
3864
+ b = a + a
3865
+
3866
+ In this example, the references to ``a``, can look-up the ``1`` in
3867
+ the trace, and base value shape response to ``+`` on it. For compile
3868
+ time evaluation, it may also ask ``isCompileTimeConstant()`` and if
3869
+ both nodes will respond ``True``, then "getCompileTimeConstant()"
3870
+ will return ``1``, which will be be used in computation.
3871
+
3872
+ Then ``extractSideEffects()`` for the ``a`` reference will return
3873
+ ``()`` and therefore, the result ``2`` will not be wrapped.
3874
+
3875
+ An alternative approach would be ``hasTypeSlotAdd()`` on the both
3876
+ nodes, and they both do, to see if the selection mechanism used by
3877
+ CPython can be used to find which types ``+`` should be used.
3878
+
3879
+ - Class for module import expression ``ExpressionImportModule``.
3880
+
3881
+ This one just knows that something is imported, but not how or what
3882
+ it is assigned to. It will be able in a recursive compile, to provide
3883
+ the module as an assignment source, or the module variables or
3884
+ submodules as an attribute source when referenced from a variable
3885
+ trace or in an expression.
3886
+
3887
+ - Base class for module friend ``ModuleFriendBase``.
3888
+
3889
+ This is intended to provide something to overload, which e.g. can
3890
+ handle ``math`` in a better way.
3891
+
3892
+ - Module ``ModuleFriendRegistry``
3893
+
3894
+ Provides a register function with ``name`` and instances of
3895
+ ``ValueFriendModuleBase`` to be registered. Recursed to modules
3896
+ should integrate with that too. The registry could well be done with
3897
+ a metaclass approach.
3898
+
3899
+ - The module friends should each live in a module of their own.
3900
+
3901
+ With a naming policy to be determined. These modules should add
3902
+ themselves via above mechanism to ``ModuleFriendRegistry`` and all
3903
+ shall be imported and register. Importing of e.g. ``ctypes`` should
3904
+ be delayed to when the friend is actually used. A meta class should
3905
+ aid this task.
3906
+
3907
+ The delay will avoid unnecessary blot of the compiler at run time, if
3908
+ no such module is used. For "qt" and other complex stuff, this will
3909
+ be a must.
3910
+
3911
+ - The walk should initially be single pass, and not maintain history.
3912
+
3913
+ Instead optimization that needs to look at multiple things, e.g.
3914
+ "unused assignment", will look at the whole SSA collection
3915
+ afterwards.
3916
+
3917
+ Discussing with examples
3918
+ ========================
3919
+
3920
+ The following examples:
3921
+
3922
+ .. code:: python
3923
+
3924
+ # Assignment, the source decides the type of the assigned expression
3925
+ a = b
3926
+
3927
+ # Operator "attribute look-up", the looked up expression "ctypes" decides
3928
+ # via its trace.
3929
+ ctypes.c_int
3930
+
3931
+ # Call operator, the called expressions decides with help of arguments,
3932
+ # which have been walked, before the call itself.
3933
+ called_expression_of_any_complexity()
3934
+
3935
+ # import gives a module any case, and the "ModuleRegistry" may say more.
3936
+ import ctypes
3937
+
3938
+ # From import need not give module, "x" decides what it is.
3939
+ from x import y
3940
+
3941
+ # Operations are decided by arguments, and CPython operator rules between
3942
+ # argument states.
3943
+ a + b
3944
+
3945
+ The optimization is mostly performed by walking of the tree and
3946
+ performing trace collection. When it encounters assignments and
3947
+ references to them, it considers current state of traces and uses it for
3948
+ ``computeExpression``.
3949
+
3950
+ .. note::
3951
+
3952
+ Assignments to attributes, indexes, slices, etc. will also need to
3953
+ follow the flow of ``append``, so it cannot escape attention that a
3954
+ list may be modified. Usages of ``append`` that we cannot be sure
3955
+ about, must be traced to exist, and disallow the list to be
3956
+ considered known value again.
3957
+
3958
+ Code Generation Impact
3959
+ ======================
3960
+
3961
+ Right now, code generation assumes that everything is a ``PyObject *``,
3962
+ i.e. a Python object, and does not take knowledge of ``int`` or other
3963
+ types into consideration at all, and it should remain like that for some
3964
+ time to come.
3965
+
3966
+ Instead, ``ctypes`` value friend will be asked give ``Identifiers``,
3967
+ like other codes do too. And these need to be able to convert themselves
3968
+ to objects to work with the other things.
3969
+
3970
+ But Code Generation should no longer require that operations must be
3971
+ performed on that level. Imagine e.g. the following calls:
3972
+
3973
+ .. code:: python
3974
+
3975
+ c_call(other_c_call())
3976
+
3977
+ Value returned by "other_c_call()" of say ``c_int`` type, should be
3978
+ possible to be fed directly into another call. That should be easy by
3979
+ having a ``asIntC()`` in the identifier classes, which the ``ctypes``
3980
+ Identifiers handle without conversions.
3981
+
3982
+ Code Generation should one day also become able to tell that all uses of
3983
+ a variable have only ``c_int`` value, and use ``int`` instead of
3984
+ ``PyObjectLocalVariable`` more or less directly. We could consider
3985
+ ``PyIntLocalVariable`` of similar complexity as ``int`` after the C++
3986
+ compiler performed its in-lining.
3987
+
3988
+ Such decisions would be prepared by finalization, which then would track
3989
+ the history of values throughout a function or part of it.
3990
+
3991
+ Initial Implementation
3992
+ ======================
3993
+
3994
+ The basic interface will be added to *all* expressions and a node may
3995
+ override it, potentially using trace collection state, as attached
3996
+ during ``computeExpression``.
3997
+
3998
+ Goal 1 (Reached)
3999
+ ----------------
4000
+
4001
+ Initially most things will only be able to give up on about anything.
4002
+ And it will be little more than a tool to do simple look-ups in a
4003
+ general form. It will then be the first goal to turn the following code
4004
+ into better performing one:
4005
+
4006
+ .. code:: python
4007
+
4008
+ a = 3
4009
+ b = 7
4010
+ c = a / b
4011
+ print(c)
4012
+
4013
+ to:
4014
+
4015
+ .. code:: python
4016
+
4017
+ a = 3
4018
+ b = 7
4019
+ c = 3 / 7
4020
+ print(c)
4021
+
4022
+ and then:
4023
+
4024
+ .. code:: python
4025
+
4026
+ a = 3
4027
+ b = 7
4028
+ c = 0
4029
+ print(c)
4030
+
4031
+ and then:
4032
+
4033
+ .. code:: python
4034
+
4035
+ a = 3
4036
+ b = 7
4037
+ c = 0
4038
+ print(0)
4039
+
4040
+ This depends on SSA form to be able to tell us the values of ``a``,
4041
+ ``b``, and ``c`` to be written to by constants, which can be forward
4042
+ propagated at no cost.
4043
+
4044
+ Goal 2 (Reached)
4045
+ ----------------
4046
+
4047
+ The assignments to ``a``, ``b``, and ``c`` shall all become prey to
4048
+ "unused" assignment analysis in the next step. They are all only
4049
+ assigned to, and the assignment source has no effect, so they can be
4050
+ simply dropped.
4051
+
4052
+ .. code:: python
4053
+
4054
+ print(0)
4055
+
4056
+ In the SSA form, these are then assignments without references. These
4057
+ assignments, can be removed if the assignment source has no side effect.
4058
+ Or at least they could be made "anonymous", i.e. use a temporary
4059
+ variable instead of the named one. That would have to take into account
4060
+ though, that the old version still needs a release.
4061
+
4062
+ The most general form would first merely remove assignments that have no
4063
+ impact, and leave the value as a side effect, so we arrive at this
4064
+ first:
4065
+
4066
+ .. code:: python
4067
+
4068
+ 3
4069
+ 7
4070
+ 0
4071
+ print(0)
4072
+
4073
+ When applying the removal of expression only statements without effect,
4074
+ this gives us:
4075
+
4076
+ .. code:: python
4077
+
4078
+ print(0)
4079
+
4080
+ which is the perfect result. Doing it in one step would only be an
4081
+ optimization at the cost of generalization.
4082
+
4083
+ In order to be able to manipulate nodes related to a variable trace, we
4084
+ need to attach the nodes that did it. Consider this:
4085
+
4086
+ .. code:: python
4087
+
4088
+ if cond():
4089
+ x = 1
4090
+ elif other():
4091
+ x = 3
4092
+
4093
+ # Not using "x".
4094
+ print(0)
4095
+
4096
+ In the above case, the merge of the value traces, should say that ``x``
4097
+ may be undefined, or one of ``1`` or ``3``, but since ``x`` is not used,
4098
+ apply the "dead value" trick to each branch.
4099
+
4100
+ The removal of the "merge" of the 3 ``x`` versions, should exhibit that
4101
+ the other versions are also only assigned to, and can be removed. These
4102
+ merges of course appear as usages of the ``x`` versions.
4103
+
4104
+ Goal 3
4105
+ ------
4106
+
4107
+ Then third goal is to understand all of this:
4108
+
4109
+ .. code:: python
4110
+
4111
+ def f():
4112
+ a = []
4113
+
4114
+ print(a)
4115
+
4116
+ for i in range(1000):
4117
+ print(a)
4118
+
4119
+ a.append(i)
4120
+
4121
+ return len(a)
4122
+
4123
+ .. note::
4124
+
4125
+ There are many operations in this, and all of them should be properly
4126
+ handled, or at least ignored in safe way.
4127
+
4128
+ The first goal code gave us that the ``list`` has an annotation from the
4129
+ assignment of ``[]`` and that it will be copied to ``a`` until the for
4130
+ loop in encountered. Then it must be removed, because the ``for`` loop
4131
+ somehow says so.
4132
+
4133
+ The ``a`` may change its value, due to the unknown attribute look-up of
4134
+ it already, not even the call. The for loop must be able to say "may
4135
+ change value" due to that, of course also due to the call of that
4136
+ attribute too.
4137
+
4138
+ The code should therefore become equivalent to:
4139
+
4140
+ .. code:: python
4141
+
4142
+ def f():
4143
+ a = []
4144
+
4145
+ print([])
4146
+
4147
+ for i in range(1000):
4148
+ print(a)
4149
+
4150
+ a.append(i)
4151
+
4152
+ return len(a)
4153
+
4154
+ But no other changes must occur, especially not to the ``return``
4155
+ statement, it must not assume ``a`` to be constant "[]" but an unknown
4156
+ ``a`` instead.
4157
+
4158
+ With that, we would handle this code correctly and have some form
4159
+ constant value propagation in place, handle loops at least correctly,
4160
+ and while it is not much, it is important demonstration of the concept.
4161
+
4162
+ Goal 4
4163
+ ------
4164
+
4165
+ The fourth goal is to understand the following:
4166
+
4167
+ .. code:: python
4168
+
4169
+ def f(cond):
4170
+ y = 3
4171
+
4172
+ if cond:
4173
+ x = 1
4174
+ else:
4175
+ x = 2
4176
+
4177
+ return x < y
4178
+
4179
+ In this we have a branch, and we will be required to keep track of both
4180
+ the branches separately, and then to merge with the original knowledge.
4181
+ After the conditional statement we will know that "x" is an "int" with
4182
+ possible values in ``(1,2)``, which can be used to predict that the
4183
+ return value is always ``True``.
4184
+
4185
+ The fourth goal will therefore be that the "ValueFriendConstantList"
4186
+ knows that append changes ``a`` value, but it remains a list, and that
4187
+ the size increases by one. It should provide an other value friend
4188
+ "ValueFriendList" for "a" due to that.
4189
+
4190
+ In order to do that, such code must be considered:
4191
+
4192
+ .. code:: python
4193
+
4194
+ a = []
4195
+
4196
+ a.append(1)
4197
+ a.append(2)
4198
+
4199
+ print(len(a))
4200
+
4201
+ It will be good, if ``len`` still knows that ``a`` is a list object, but
4202
+ not the constant list anymore.
4203
+
4204
+ From here, work should be done to demonstrate the correctness of it with
4205
+ the basic tests applied to discover undetected issues.
4206
+
4207
+ Fifth and optional goal: Extra bonus points for being able to track and
4208
+ predict ``append`` to update the constant list in a known way. Using
4209
+ ``list.append`` that should be done and lead to a constant result of
4210
+ ``len`` being used.
4211
+
4212
+ The sixth and challenging goal will be to make the code generation be
4213
+ impacted by the value friends types. It should have a knowledge that
4214
+ ``PyList_Append`` does the job of append and use ``PyList_Size`` for
4215
+ ``len``. The "ValueFriends" should aid the code generation too.
4216
+
4217
+ Last and right now optional goal will be to make ``range`` have a value
4218
+ friend, that can interact with iteration of the for loop, and ``append``
4219
+ of the ``list`` value friend, so it knows it's possible to iterate 5000
4220
+ times, and that "a" has then after the "loop" this size, so ``len(a)``
4221
+ could be predicted. For during the loop, about a the range of its length
4222
+ should be known to be less than 5000. That would make the code of goal 2
4223
+ completely analyzed at compile time.
4224
+
4225
+ Limitations for now
4226
+ ===================
4227
+
4228
+ - Aim only for limited examples. For ``ctypes`` that means to compile
4229
+ time evaluate:
4230
+
4231
+ .. code:: python
4232
+
4233
+ print(ctypes.c_int(17) + ctypes.c_long(19))
4234
+
4235
+ Later then call to "libc" or something else universally available,
4236
+ e.g. "strlen()" or "strcmp()" from full blown declarations of the
4237
+ callable.
4238
+
4239
+ - We won't have the ability to test that optimization are actually
4240
+ performed, we will check the generated code by hand.
4241
+
4242
+ With time, we will add XML based checks with "xpath" queries,
4243
+ expressed as hints, but that is some work that will be based on this
4244
+ work here. The "hints" fits into the "ValueFriends" concept nicely or
4245
+ so the hope is.
4246
+
4247
+ - No inter-function optimization functions yet
4248
+
4249
+ Of course, once in place, it will make the ``ctypes`` annotation even
4250
+ more usable. Using ``ctypes`` objects inside functions, while
4251
+ creating them on the module level, is therefore not immediately going
4252
+ to work.
4253
+
4254
+ - No loops yet
4255
+
4256
+ Loops break value propagation. For the ``ctypes`` use case, this
4257
+ won't be much of a difficulty. Due to the strangeness of the task, it
4258
+ should be tackled later on at a higher priority.
4259
+
4260
+ - Not too much.
4261
+
4262
+ Try and get simple things to work now. We shall see, what kinds of
4263
+ constraints really make the most sense. Understanding ``list``
4264
+ subscript/slice values e.g. is not strictly useful for much code and
4265
+ should not block us.
4266
+
4267
+ .. note::
4268
+
4269
+ This design is not likely to be the final one.
4270
+
4271
+ ***********************************
4272
+ How to make Features Experimental
4273
+ ***********************************
4274
+
4275
+ Every experimental feature needs a name. We have a rule to pick a name
4276
+ with lower case and ``_`` as separators. An example of with would be the
4277
+ name ``jinja_generated_add`` that has been used in the past.
4278
+
4279
+ Command Line
4280
+ ============
4281
+
4282
+ Experimental features are enabled with the command line argument
4283
+
4284
+ .. code:: bash
4285
+
4286
+ nuitka --experimental=jinja_generated_add ...
4287
+
4288
+ In C code
4289
+ =========
4290
+
4291
+ In Scons, all experimental features automatically are converted into C
4292
+ defines, and can be used like this:
4293
+
4294
+ .. code:: C
4295
+
4296
+ #ifdef _NUITKA_EXPERIMENTAL_JINJA_GENERATED_ADD
4297
+ #include "HelpersOperationGeneratedBinaryAdd.c"
4298
+ #else
4299
+ #include "HelpersOperationBinaryAdd.c"
4300
+ #endif
4301
+
4302
+ The C pre-processor is the only thing that makes an experimental feature
4303
+ usable.
4304
+
4305
+ In Python
4306
+ =========
4307
+
4308
+ You can query experimental features using ``Options.isExperimental()``
4309
+ with e.g. code like this:
4310
+
4311
+ .. code:: python
4312
+
4313
+ if Options.isExperimental("use_feature"):
4314
+ experimental_code()
4315
+ else:
4316
+ standard_code()
4317
+
4318
+ When to use it
4319
+ ==============
4320
+
4321
+ Often we need to keep feature in parallel because they are not finished,
4322
+ or need to be tested after merge and should not break. Then we can do
4323
+ code changes that will not make a difference except when the
4324
+ experimental flag is given on the command line to Nuitka.
4325
+
4326
+ The testing of Nuitka is very heavy weight when e.g. all Python code is
4327
+ compiled, and very often, it is interesting to compare behavior with and
4328
+ without a change.
4329
+
4330
+ When to remove it
4331
+ =================
4332
+
4333
+ When a feature becomes default, we might choose to keep the old variant
4334
+ around, but normally we do not. Then we remove the ``if`` and ``#if``
4335
+ checks and drop the old code.
4336
+
4337
+ At this time, large scale testing will have demonstrated the viability
4338
+ of the code.
4339
+
4340
+ *******************************
4341
+ Adding dependencies to Nuitka
4342
+ *******************************
4343
+
4344
+ First of all, there is an important distinction to make, run time or
4345
+ development time. The first kind of dependency is used when Nuitka is
4346
+ executing.
4347
+
4348
+ Adding a Run Time Dependency
4349
+ ============================
4350
+
4351
+ This is the kind of dependency that is the most scrutinized. As we want
4352
+ Nuitka to run on latest greatest Python as well as relatively old ones,
4353
+ we have to be very careful with these ones.
4354
+
4355
+ There is also a distinction of optional dependencies. Right now e.g. the
4356
+ ``lxml`` package is relatively optional, and Nuitka can work without it
4357
+ being installed, because e.g. on some platforms it will not be easy to
4358
+ do so. That bar has lifted somewhat, but it means e.g. that XML based
4359
+ optimization tests are not run with all Python versions.
4360
+
4361
+ The list of run time dependencies is in ``requirements.txt`` and it is
4362
+ for those the case, that they are not really required to be installed by
4363
+ the user, consider this snippet:
4364
+
4365
+ .. code:: python
4366
+
4367
+ # Folders to use for cache files.
4368
+ appdirs
4369
+
4370
+ # Scons is the backend building tool to turn C files to binaries.
4371
+ scons
4372
+
4373
+ For both these dependencies, there is either an inline copy (Scons) that
4374
+ we handle to use in case, if Scons is not available (in fact we have a
4375
+ version that works with Python 2.6 and 2.7 still), and also the same for
4376
+ appdirs and every dependency.
4377
+
4378
+ But since inline copies are against the rules on some platforms that
4379
+ still do not contain the package, we often even have our own wrapper
4380
+ which provides a minimal fallback or exposes a sane interface for the
4381
+ subset of functionality that we use.
4382
+
4383
+ .. note::
4384
+
4385
+ Therefore, please if you consider adding one of these, get in touch
4386
+ with ``@Nuitka-pushers`` first and get a green light.
4387
+
4388
+ Adding a Development Dependency
4389
+ ===============================
4390
+
4391
+ A typical example of a development dependency is ``black`` which is used
4392
+ by our autoformat tool, and then in turn by the git pre-commit hook. It
4393
+ is used to format source code, and doesn't have a role at run time of
4394
+ the actual compiler code of Nuitka.
4395
+
4396
+ Much less strict rules apply to these in comparison to runtime
4397
+ dependencies. Generally please take care that the tool must be well
4398
+ maintained an available on newer Pythons. Then we can use it, no problem
4399
+ normally. But if it's really big, say all of SciPy, we might want to
4400
+ justify it a bit better.
4401
+
4402
+ The list of development dependencies is in ``requirements-devel.txt``
4403
+ and it is for example like this:
4404
+
4405
+ .. code:: python
4406
+
4407
+ # Autoformat needs this
4408
+ rstfmt == 0.0.10 ; python_version >= '3.7'
4409
+
4410
+ We always add the version, so that when tests run on as old versions as
4411
+ Python 2.6, the installation would fail with that version, so we need to
4412
+ make a version requirement. Sometimes we use older versions for Python2
4413
+ than for Python3, ``Jinaj2`` being a notable candidate, but generally we
4414
+ ought to avoid that. For many tools only being available for currently
4415
+ 3.7 or higher is good enough, esp. if they are run as development tools,
4416
+ like ``autoformat-nuitka-source`` is.
4417
+
4418
+ **********
4419
+ Idea Bin
4420
+ **********
4421
+
4422
+ This an area where to drop random ideas on our minds, to later sort it
4423
+ out, and out it into action, which could be code changes, plan changes,
4424
+ issues created, etc.
4425
+
4426
+ - Make "SELECT_METACLASS" meta class selection transparent.
4427
+
4428
+ Looking at the "SELECT_METACLASS" it should become an anonymous
4429
+ helper function. In that way, the optimization process can remove
4430
+ choices at compile time, and e.g. in-line the effect of a meta class,
4431
+ if it is known.
4432
+
4433
+ This of course makes most sense, if we have the optimizations in
4434
+ place that will allow this to actually happen.
4435
+
4436
+ - Keeping track of iterations
4437
+
4438
+ The trace collection trace should become the place, where variables
4439
+ or values track their use state. The iterator should keep track of
4440
+ the "next()" calls made to it, so it can tell which value to given in
4441
+ that case.
4442
+
4443
+ That would solve the "iteration of constants" as a side effect and it
4444
+ would allow to tell that they can be removed.
4445
+
4446
+ That would mean to go back in the tree and modify it long after.
4447
+
4448
+ .. code:: python
4449
+
4450
+ a = iter((2, 3))
4451
+ b = next(a)
4452
+ c = next(a)
4453
+ del a
4454
+
4455
+ It would be sweet if we could recognize that as:
4456
+
4457
+ .. code:: python
4458
+
4459
+ a = iter((2, 3))
4460
+ b = side_effect(next(a), 2)
4461
+ c = side_effect(next(a), 3)
4462
+ del a
4463
+
4464
+ That trivially becomes:
4465
+
4466
+ .. code:: python
4467
+
4468
+ a = iter((2, 3))
4469
+ next(a)
4470
+ b = 2
4471
+ next(a)
4472
+ c = 3
4473
+ del a
4474
+
4475
+ When the ``del a`` is examined at the end of scope, or due to another
4476
+ assignment to the same variable, ending the trace, we would have to
4477
+ consider of the ``next`` uses, and retrofit the information that they
4478
+ had no effect.
4479
+
4480
+ .. code:: python
4481
+
4482
+ a = iter((2, 3))
4483
+ b = 2
4484
+ b = 3
4485
+ del a
4486
+
4487
+ - Aliasing
4488
+
4489
+ Each time an assignment is made, an alias is created. A value may
4490
+ have different names.
4491
+
4492
+ .. code:: python
4493
+
4494
+ a = iter(range(9))
4495
+ b = a
4496
+ c = next(b)
4497
+ d = next(a)
4498
+
4499
+ If we fail to detect the aliasing nature, we will calculate ``d``
4500
+ wrongly. We may incref and decref values to trace it.
4501
+
4502
+ Aliasing is automatically traced already in SSA form. The ``b`` is
4503
+ assigned to version of ``a``. So, that should allow to replace it
4504
+ with this:
4505
+
4506
+ .. code:: python
4507
+
4508
+ a = iter(range(9))
4509
+ c = next(a)
4510
+ d = next(a)
4511
+
4512
+ Which then will be properly handled.
4513
+
4514
+ - Tail recursion optimization.
4515
+
4516
+ Functions that return the results of calls, can be optimized. The
4517
+ Stackless Python does it already.
4518
+
4519
+ - Integrate with "upx" compression.
4520
+
4521
+ Calling "upx" on the created binaries, would be easy.
4522
+
4523
+ - In-lining constant "exec" and "eval".
4524
+
4525
+ It should be possible to re-formulate at least cases without "locals"
4526
+ or "globals" given.
4527
+
4528
+ .. code:: python
4529
+
4530
+ def f():
4531
+ a = 1
4532
+ b = 2
4533
+
4534
+ exec("""a+=b;c=1""")
4535
+
4536
+ return a, c
4537
+
4538
+ Should become this here:
4539
+
4540
+ .. code:: python
4541
+
4542
+ def f():
4543
+ a = 1
4544
+ b = 2
4545
+
4546
+ a += b #
4547
+ c = 1 # MaybeLocalVariables for everything except known local ones.
4548
+
4549
+ return a, c
4550
+
4551
+ If this holds up, inlining ``exec`` should be relatively easy.
4552
+
4553
+ - Original and overloaded built-ins
4554
+
4555
+ This is about making things visible in the node tree. In Nuitka
4556
+ things that are not visible in the node tree tend to be wrong. We
4557
+ already pushed around information to the node tree a lot.
4558
+
4559
+ Later versions, Nuitka will become able to determine it has to be the
4560
+ original built-in at compile time, then a condition that checks will
4561
+ be optimized away, together with the slow path. Or the other path, if
4562
+ it won't be. Then it will be optimized away, or if doubt exists, it
4563
+ will be correct. That is the goal.
4564
+
4565
+ Right now, the change would mean to effectively disable all built-in
4566
+ call optimization, which is why we don't immediately do it.
4567
+
4568
+ Making the compatible version, will also require a full listing of
4569
+ all built-ins, which is typing work merely, but not needed now. And a
4570
+ way to stop built-in optimization from optimizing built-in calls that
4571
+ it used in a wrap. Probably just some flag to indicate it when it
4572
+ visits it to skip it. That's for later.
4573
+
4574
+ But should we have that both, I figure, we could not raise a
4575
+ ``RuntimeError`` error, but just do the correct thing, in all cases.
4576
+ An earlier step may raise ``RuntimeError`` error, when built-in
4577
+ module values are written to, that we don't support.
4578
+
4579
+ ******************
4580
+ Prongs of Action
4581
+ ******************
4582
+
4583
+ In this chapter, we keep track of prongs of action currently ongoing.
4584
+ This can get detailed and shows things we strive for.
4585
+
4586
+ Builtin optimization
4587
+ ====================
4588
+
4589
+ Definitely want to get built-in names under full control, so that
4590
+ variable references to module variables do not have a twofold role.
4591
+ Currently they reference the module variable and also the potential
4592
+ built-in as a fallback.
4593
+
4594
+ In terms of generated code size and complexity for modules with many
4595
+ variables and uses of them that is horrible. But ``some_var`` (normally)
4596
+ cannot be a built-in and therefore needs no code to check for that each
4597
+ time.
4598
+
4599
+ This is also critical to getting to whole program optimization. Being
4600
+ certain what is what there on module level, will enable more definitely
4601
+ knowledge about data flows and module interfaces.
4602
+
4603
+ Class Creation Overhead Reduction
4604
+ =================================
4605
+
4606
+ This is more of a meta goal. Some work for the metaclass has already
4607
+ been done, but that is Python2 only currently. Being able to to decide
4608
+ built-ins and to distinguish between global only variables, and
4609
+ built-ins more clearly will help this a lot.
4610
+
4611
+ In the end, empty classes should be able to be statically converted to
4612
+ calls to ``type`` with static dictionaries. The inlining of class
4613
+ creation function is also needed for this, but on Python3 cannot happen
4614
+ yet.
4615
+
4616
+ Memory Usage at Compile Time
4617
+ ============================
4618
+
4619
+ We will need to store more and more information in the future. Getting
4620
+ the tree to be tight shaped is therefore an effort, where we will be
4621
+ spending time too.
4622
+
4623
+ The mix-ins prevent slots usage, so lets try and get rid of those. The
4624
+ "children having" should become more simple and faster code. I am even
4625
+ thinking of even generating code in the meta class, so it's both optimal
4626
+ and doesn't need that mix-in any more. This is going to be ugly then.
4627
+
4628
+ Coverage Testing
4629
+ ================
4630
+
4631
+ And then there is coverage, it should be taken and merged from all
4632
+ Python versions and OSes, but I never managed to merge between Windows
4633
+ and Linux for unknown reasons.
4634
+
4635
+ Python3 Performance
4636
+ ===================
4637
+
4638
+ The Python3 lock for thread state is making it slower by a lot. I have
4639
+ only experimental code that just ignores the lock, but it likely only
4640
+ works on Linux, and I wonder why there is that lock in the first place.
4641
+
4642
+ Ignoring the locks cannot be good. But what updates that thread state
4643
+ pointer ever without a thread change, and is this what ABI flags are
4644
+ about in this context, are there some that allow us to ignore the locks.
4645
+
4646
+ An important bit would be to use a thread state once acquired for as
4647
+ much as possible, currently exception helpers do not accept it as an
4648
+ argument, but that ought to become an option, that way saving and
4649
+ restoring an exception will be much faster, not to mention checking and
4650
+ dropping non interesting, or rewriting exceptions.
4651
+
4652
+ Caching of Python level compilation
4653
+ ===================================
4654
+
4655
+ While the C compilation result is already cached with `ccache` and
4656
+ friends now, we need to also cover our bases and save the resulting node
4657
+ tree of potential expensive optimization on the module level.
4658
+
4659
+ *************************
4660
+ Updates for this Manual
4661
+ *************************
4662
+
4663
+ This document is written in REST. That is an ASCII format which is
4664
+ readable to human, but easily used to generate PDF or HTML documents.
4665
+
4666
+ You will find the current source under:
4667
+ https://github.com/Nuitka/Nuitka/blob/develop/Developer_Manual.rst
4668
+
4669
+ And the current PDF under: https://nuitka.net/doc/Developer_Manual.pdf