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