Nuitka-winsvc 2.3.11__cp311-cp311-win_amd64.whl → 2.4.5__cp311-cp311-win_amd64.whl

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

Potentially problematic release.


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

Files changed (213) hide show
  1. Nuitka_winsvc-2.3.11.data/scripts/nuitka-run.bat → Nuitka_winsvc-2.4.5.data/scripts/nuitka-run.cmd +1 -1
  2. {Nuitka_winsvc-2.3.11.dist-info → Nuitka_winsvc-2.4.5.dist-info}/METADATA +1 -1
  3. {Nuitka_winsvc-2.3.11.dist-info → Nuitka_winsvc-2.4.5.dist-info}/RECORD +213 -210
  4. {Nuitka_winsvc-2.3.11.dist-info → Nuitka_winsvc-2.4.5.dist-info}/WHEEL +1 -1
  5. nuitka/CacheCleanup.py +6 -1
  6. nuitka/HardImportRegistry.py +30 -2
  7. nuitka/MainControl.py +62 -35
  8. nuitka/ModuleRegistry.py +11 -3
  9. nuitka/OptionParsing.py +78 -39
  10. nuitka/Options.py +142 -35
  11. nuitka/OutputDirectories.py +5 -0
  12. nuitka/PostProcessing.py +23 -14
  13. nuitka/Progress.py +2 -1
  14. nuitka/PythonFlavors.py +22 -4
  15. nuitka/PythonVersions.py +18 -0
  16. nuitka/Tracing.py +1 -0
  17. nuitka/TreeXML.py +6 -3
  18. nuitka/Version.py +1 -1
  19. nuitka/__main__.py +55 -10
  20. nuitka/__past__.py +5 -0
  21. nuitka/build/Backend.scons +6 -1
  22. nuitka/build/CCompilerVersion.scons +1 -0
  23. nuitka/build/Onefile.scons +4 -0
  24. nuitka/build/SconsCaching.py +2 -1
  25. nuitka/build/SconsCompilerSettings.py +1 -0
  26. nuitka/build/SconsHacks.py +5 -1
  27. nuitka/build/SconsInterface.py +2 -0
  28. nuitka/build/SconsUtils.py +4 -1
  29. nuitka/build/include/nuitka/allocator.h +27 -5
  30. nuitka/build/include/nuitka/calling.h +1 -1
  31. nuitka/build/include/nuitka/compiled_frame.h +23 -23
  32. nuitka/build/include/nuitka/compiled_method.h +1 -1
  33. nuitka/build/include/nuitka/exception_groups.h +0 -2
  34. nuitka/build/include/nuitka/helper/attributes.h +7 -1
  35. nuitka/build/include/nuitka/helper/subscripts.h +1 -1
  36. nuitka/build/include/nuitka/helpers.h +10 -3
  37. nuitka/build/include/nuitka/prelude.h +6 -15
  38. nuitka/build/include/nuitka/printing.h +2 -0
  39. nuitka/build/include/nuitka/unfreezing.h +11 -5
  40. nuitka/build/inline_copy/tqdm/tqdm/_monitor.py +4 -1
  41. nuitka/build/static_src/CompiledAsyncgenType.c +2 -4
  42. nuitka/build/static_src/CompiledCellType.c +7 -7
  43. nuitka/build/static_src/CompiledCodeHelpers.c +49 -36
  44. nuitka/build/static_src/CompiledCoroutineType.c +2 -4
  45. nuitka/build/static_src/CompiledFrameType.c +109 -82
  46. nuitka/build/static_src/CompiledFunctionType.c +36 -9
  47. nuitka/build/static_src/CompiledGeneratorType.c +12 -10
  48. nuitka/build/static_src/CompiledGeneratorTypeUncompiledIntegration.c +2 -2
  49. nuitka/build/static_src/CompiledMethodType.c +14 -13
  50. nuitka/build/static_src/HelpersAttributes.c +13 -15
  51. nuitka/build/static_src/HelpersBuiltin.c +16 -7
  52. nuitka/build/static_src/HelpersCalling.c +13 -13
  53. nuitka/build/static_src/HelpersCallingGenerated.c +22 -22
  54. nuitka/build/static_src/HelpersComparisonEq.c +110 -110
  55. nuitka/build/static_src/HelpersComparisonEqUtils.c +1 -1
  56. nuitka/build/static_src/HelpersComparisonGe.c +110 -110
  57. nuitka/build/static_src/HelpersComparisonGt.c +110 -110
  58. nuitka/build/static_src/HelpersComparisonLe.c +110 -110
  59. nuitka/build/static_src/HelpersComparisonLt.c +110 -110
  60. nuitka/build/static_src/HelpersComparisonNe.c +110 -110
  61. nuitka/build/static_src/HelpersConstantsBlob.c +480 -481
  62. nuitka/build/static_src/HelpersDictionaries.c +9 -0
  63. nuitka/build/static_src/HelpersFilesystemPaths.c +28 -13
  64. nuitka/build/static_src/HelpersImport.c +1 -1
  65. nuitka/build/static_src/HelpersLists.c +5 -1
  66. nuitka/build/static_src/HelpersMatching.c +95 -35
  67. nuitka/build/static_src/HelpersOperationInplaceAdd.c +23 -23
  68. nuitka/build/static_src/HelpersOperationInplaceAddUtils.c +1 -0
  69. nuitka/build/static_src/HelpersOperationInplaceBitand.c +11 -11
  70. nuitka/build/static_src/HelpersOperationInplaceBitor.c +11 -11
  71. nuitka/build/static_src/HelpersOperationInplaceBitxor.c +11 -11
  72. nuitka/build/static_src/HelpersOperationInplaceFloordiv.c +17 -17
  73. nuitka/build/static_src/HelpersOperationInplaceLshift.c +9 -9
  74. nuitka/build/static_src/HelpersOperationInplaceMatmult.c +10 -10
  75. nuitka/build/static_src/HelpersOperationInplaceMod.c +47 -47
  76. nuitka/build/static_src/HelpersOperationInplaceMult.c +28 -28
  77. nuitka/build/static_src/HelpersOperationInplaceOlddiv.c +17 -17
  78. nuitka/build/static_src/HelpersOperationInplacePow.c +17 -17
  79. nuitka/build/static_src/HelpersOperationInplaceRshift.c +9 -9
  80. nuitka/build/static_src/HelpersOperationInplaceSub.c +17 -17
  81. nuitka/build/static_src/HelpersOperationInplaceTruediv.c +17 -17
  82. nuitka/build/static_src/HelpersSequences.c +1 -1
  83. nuitka/build/static_src/HelpersTypes.c +8 -4
  84. nuitka/build/static_src/InspectPatcher.c +14 -2
  85. nuitka/build/static_src/MainProgram.c +20 -1
  86. nuitka/build/static_src/MetaPathBasedLoader.c +163 -140
  87. nuitka/build/static_src/MetaPathBasedLoaderImportlibMetadataDistribution.c +13 -4
  88. nuitka/build/static_src/OnefileBootstrap.c +100 -6
  89. nuitka/code_generation/AttributeCodes.py +12 -10
  90. nuitka/code_generation/CodeGeneration.py +6 -7
  91. nuitka/code_generation/ConstantCodes.py +53 -10
  92. nuitka/code_generation/Emission.py +1 -1
  93. nuitka/code_generation/GlobalConstants.py +6 -6
  94. nuitka/code_generation/Indentation.py +4 -5
  95. nuitka/code_generation/LoaderCodes.py +3 -0
  96. nuitka/code_generation/LocalsDictCodes.py +36 -14
  97. nuitka/code_generation/MatchCodes.py +23 -4
  98. nuitka/code_generation/ModuleCodes.py +1 -8
  99. nuitka/code_generation/Namify.py +2 -0
  100. nuitka/code_generation/PackageResourceCodes.py +5 -1
  101. nuitka/code_generation/templates/CodeTemplatesConstants.py +22 -4
  102. nuitka/code_generation/templates/CodeTemplatesLoader.py +1 -1
  103. nuitka/code_generation/templates/CodeTemplatesModules.py +27 -9
  104. nuitka/code_generation/templates/CodeTemplatesVariables.py +16 -2
  105. nuitka/code_generation/templates_c/CodeTemplateCallsMethodPositional.c.j2 +2 -2
  106. nuitka/code_generation/templates_c/HelperOperationBinary.c.j2 +1 -1
  107. nuitka/code_generation/templates_c/HelperOperationInplace.c.j2 +1 -1
  108. nuitka/code_generation/templates_c/HelperSlotsBinary.c.j2 +7 -7
  109. nuitka/freezer/DependsExe.py +3 -1
  110. nuitka/freezer/DllDependenciesMacOS.py +5 -12
  111. nuitka/freezer/IncludedDataFiles.py +15 -4
  112. nuitka/freezer/IncludedEntryPoints.py +8 -2
  113. nuitka/freezer/Onefile.py +6 -1
  114. nuitka/freezer/Standalone.py +9 -2
  115. nuitka/importing/Importing.py +14 -5
  116. nuitka/importing/Recursion.py +3 -0
  117. nuitka/nodes/AttributeNodesGenerated.py +21 -12
  118. nuitka/nodes/BuiltinOpenNodes.py +5 -0
  119. nuitka/nodes/BuiltinOperationNodeBasesGenerated.py +11 -11
  120. nuitka/nodes/BuiltinRefNodes.py +41 -1
  121. nuitka/nodes/ChildrenHavingMixins.py +143 -355
  122. nuitka/nodes/ClassNodes.py +30 -12
  123. nuitka/nodes/CodeObjectSpecs.py +9 -0
  124. nuitka/nodes/ExpressionBasesGenerated.py +11 -11
  125. nuitka/nodes/FunctionNodes.py +7 -11
  126. nuitka/nodes/FutureSpecs.py +16 -3
  127. nuitka/nodes/GeneratorNodes.py +2 -2
  128. nuitka/nodes/HardImportNodesGenerated.py +11 -134
  129. nuitka/nodes/LocalsScopes.py +19 -23
  130. nuitka/nodes/MatchNodes.py +18 -7
  131. nuitka/nodes/ModuleAttributeNodes.py +1 -20
  132. nuitka/nodes/ModuleNodes.py +23 -6
  133. nuitka/nodes/NodeBases.py +3 -2
  134. nuitka/nodes/NodeMetaClasses.py +26 -10
  135. nuitka/nodes/ReturnNodes.py +1 -1
  136. nuitka/nodes/StatementBasesGenerated.py +11 -11
  137. nuitka/nodes/SubscriptNodes.py +4 -4
  138. nuitka/nodes/VariableAssignNodes.py +1 -1
  139. nuitka/nodes/VariableRefNodes.py +28 -2
  140. nuitka/optimizations/FunctionInlining.py +3 -6
  141. nuitka/optimizations/Optimization.py +13 -12
  142. nuitka/optimizations/TraceCollections.py +19 -4
  143. nuitka/plugins/PluginBase.py +121 -133
  144. nuitka/plugins/Plugins.py +92 -4
  145. nuitka/plugins/YamlPluginBase.py +121 -0
  146. nuitka/plugins/standard/AntiBloatPlugin.py +87 -28
  147. nuitka/plugins/standard/DataFilesPlugin.py +15 -6
  148. nuitka/plugins/standard/DelvewheelPlugin.py +7 -3
  149. nuitka/plugins/standard/DllFilesPlugin.py +5 -3
  150. nuitka/plugins/standard/ImplicitImports.py +34 -20
  151. nuitka/plugins/standard/MatplotlibPlugin.py +3 -1
  152. nuitka/plugins/standard/MultiprocessingPlugin.py +2 -2
  153. nuitka/plugins/standard/OptionsNannyPlugin.py +1 -1
  154. nuitka/plugins/standard/PySidePyQtPlugin.py +11 -12
  155. nuitka/plugins/standard/SpacyPlugin.py +136 -0
  156. nuitka/plugins/standard/standard.nuitka-package.config.yml +489 -182
  157. nuitka/plugins/standard/stdlib3.nuitka-package.config.yml +6 -0
  158. nuitka/reports/Reports.py +53 -5
  159. nuitka/specs/BuiltinParameterSpecs.py +1 -1
  160. nuitka/specs/HardImportSpecs.py +0 -6
  161. nuitka/tools/data_composer/DataComposer.py +29 -27
  162. nuitka/tools/environments/CreateEnvironment.py +1 -0
  163. nuitka/tools/environments/Virtualenv.py +25 -11
  164. nuitka/tools/general/find_module/FindModuleCode.py +13 -3
  165. nuitka/tools/onefile_compressor/OnefileCompressor.py +21 -4
  166. nuitka/tools/scanning/DisplayPackageDLLs.py +17 -3
  167. nuitka/tools/specialize/CTypeDescriptions.py +13 -7
  168. nuitka/tools/specialize/SpecializePython.py +18 -1
  169. nuitka/tools/testing/Common.py +19 -6
  170. nuitka/tools/testing/check_reference_counts/__main__.py +1 -1
  171. nuitka/tools/testing/run_nuitka_tests/__main__.py +0 -20
  172. nuitka/tools/watch/AutoStage.py +144 -0
  173. nuitka/tools/watch/__main__.py +79 -32
  174. nuitka/tree/Building.py +105 -104
  175. nuitka/tree/ComplexCallHelperFunctions.py +16 -26
  176. nuitka/tree/InternalModule.py +8 -0
  177. nuitka/tree/ReformulationAssignmentStatements.py +29 -59
  178. nuitka/tree/ReformulationClasses.py +10 -17
  179. nuitka/tree/ReformulationClasses3.py +69 -43
  180. nuitka/tree/ReformulationComparisonExpressions.py +6 -16
  181. nuitka/tree/ReformulationContractionExpressions.py +14 -23
  182. nuitka/tree/ReformulationDictionaryCreation.py +6 -10
  183. nuitka/tree/ReformulationExecStatements.py +10 -10
  184. nuitka/tree/ReformulationForLoopStatements.py +6 -12
  185. nuitka/tree/ReformulationFunctionStatements.py +21 -28
  186. nuitka/tree/ReformulationImportStatements.py +8 -10
  187. nuitka/tree/ReformulationLambdaExpressions.py +3 -6
  188. nuitka/tree/ReformulationMatchStatements.py +166 -60
  189. nuitka/tree/ReformulationMultidist.py +3 -1
  190. nuitka/tree/ReformulationNamespacePackages.py +1 -1
  191. nuitka/tree/ReformulationPrintStatements.py +3 -6
  192. nuitka/tree/ReformulationSequenceCreation.py +13 -26
  193. nuitka/tree/ReformulationTryFinallyStatements.py +15 -0
  194. nuitka/tree/ReformulationWithStatements.py +12 -16
  195. nuitka/tree/SourceHandling.py +13 -8
  196. nuitka/tree/VariableClosure.py +5 -21
  197. nuitka/utils/Distributions.py +80 -11
  198. nuitka/utils/Download.py +38 -31
  199. nuitka/utils/Execution.py +13 -2
  200. nuitka/utils/FileOperations.py +55 -28
  201. nuitka/utils/Images.py +6 -1
  202. nuitka/utils/Importing.py +1 -1
  203. nuitka/utils/ModuleNames.py +11 -5
  204. nuitka/utils/ReExecute.py +17 -13
  205. nuitka/utils/SharedLibraries.py +32 -8
  206. nuitka/utils/Signing.py +3 -1
  207. nuitka/utils/StaticLibraries.py +51 -41
  208. nuitka/utils/Timing.py +1 -1
  209. nuitka/utils/Utils.py +29 -7
  210. /Nuitka_winsvc-2.3.11.data/scripts/nuitka.bat → /Nuitka_winsvc-2.4.5.data/scripts/nuitka.cmd +0 -0
  211. {Nuitka_winsvc-2.3.11.dist-info → Nuitka_winsvc-2.4.5.dist-info}/LICENSE.txt +0 -0
  212. {Nuitka_winsvc-2.3.11.dist-info → Nuitka_winsvc-2.4.5.dist-info}/entry_points.txt +0 -0
  213. {Nuitka_winsvc-2.3.11.dist-info → Nuitka_winsvc-2.4.5.dist-info}/top_level.txt +0 -0
@@ -79,7 +79,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
79
79
  // If the types are equal, we may get away immediately except for instances.
80
80
  if (type1 == type2 && !PyInstance_Check(operand1)) {
81
81
 
82
- richcmpfunc frich = RICHCOMPARE(type1);
82
+ richcmpfunc frich = TP_RICHCOMPARE(type1);
83
83
 
84
84
  if (frich != NULL) {
85
85
  PyObject *result = (*frich)(operand1, operand2, Py_NE);
@@ -140,7 +140,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
140
140
  richcmpfunc f;
141
141
 
142
142
  if (type1 != type2 && Nuitka_Type_IsSubtype(type2, type1)) {
143
- f = RICHCOMPARE(type2);
143
+ f = TP_RICHCOMPARE(type2);
144
144
 
145
145
  if (f != NULL) {
146
146
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -155,7 +155,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
155
155
  }
156
156
  }
157
157
 
158
- f = RICHCOMPARE(type1);
158
+ f = TP_RICHCOMPARE(type1);
159
159
  if (f != NULL) {
160
160
  PyObject *result = (*f)(operand1, operand2, Py_NE);
161
161
 
@@ -168,7 +168,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
168
168
  Py_DECREF_IMMORTAL(result);
169
169
  }
170
170
 
171
- f = RICHCOMPARE(type2);
171
+ f = TP_RICHCOMPARE(type2);
172
172
  if (f != NULL) {
173
173
  PyObject *result = (*f)(operand2, operand1, Py_NE);
174
174
 
@@ -273,7 +273,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
273
273
  richcmpfunc f;
274
274
 
275
275
  if (type1 != type2 && Nuitka_Type_IsSubtype(type2, type1)) {
276
- f = RICHCOMPARE(type2);
276
+ f = TP_RICHCOMPARE(type2);
277
277
 
278
278
  if (f != NULL) {
279
279
  checked_reverse_op = true;
@@ -290,7 +290,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
290
290
  }
291
291
  }
292
292
 
293
- f = RICHCOMPARE(type1);
293
+ f = TP_RICHCOMPARE(type1);
294
294
 
295
295
  if (f != NULL) {
296
296
  PyObject *result = (*f)(operand1, operand2, Py_NE);
@@ -305,7 +305,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
305
305
  }
306
306
 
307
307
  if (checked_reverse_op == false) {
308
- f = RICHCOMPARE(type2);
308
+ f = TP_RICHCOMPARE(type2);
309
309
 
310
310
  if (f != NULL) {
311
311
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -383,7 +383,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
383
383
  // If the types are equal, we may get away immediately except for instances.
384
384
  if (type1 == type2 && !PyInstance_Check(operand1)) {
385
385
 
386
- richcmpfunc frich = RICHCOMPARE(type1);
386
+ richcmpfunc frich = TP_RICHCOMPARE(type1);
387
387
 
388
388
  if (frich != NULL) {
389
389
  PyObject *result = (*frich)(operand1, operand2, Py_NE);
@@ -452,7 +452,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
452
452
  richcmpfunc f;
453
453
 
454
454
  if (type1 != type2 && Nuitka_Type_IsSubtype(type2, type1)) {
455
- f = RICHCOMPARE(type2);
455
+ f = TP_RICHCOMPARE(type2);
456
456
 
457
457
  if (f != NULL) {
458
458
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -475,7 +475,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
475
475
  }
476
476
  }
477
477
 
478
- f = RICHCOMPARE(type1);
478
+ f = TP_RICHCOMPARE(type1);
479
479
  if (f != NULL) {
480
480
  PyObject *result = (*f)(operand1, operand2, Py_NE);
481
481
 
@@ -496,7 +496,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
496
496
  Py_DECREF_IMMORTAL(result);
497
497
  }
498
498
 
499
- f = RICHCOMPARE(type2);
499
+ f = TP_RICHCOMPARE(type2);
500
500
  if (f != NULL) {
501
501
  PyObject *result = (*f)(operand2, operand1, Py_NE);
502
502
 
@@ -609,7 +609,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
609
609
  richcmpfunc f;
610
610
 
611
611
  if (type1 != type2 && Nuitka_Type_IsSubtype(type2, type1)) {
612
- f = RICHCOMPARE(type2);
612
+ f = TP_RICHCOMPARE(type2);
613
613
 
614
614
  if (f != NULL) {
615
615
  checked_reverse_op = true;
@@ -634,7 +634,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
634
634
  }
635
635
  }
636
636
 
637
- f = RICHCOMPARE(type1);
637
+ f = TP_RICHCOMPARE(type1);
638
638
 
639
639
  if (f != NULL) {
640
640
  PyObject *result = (*f)(operand1, operand2, Py_NE);
@@ -657,7 +657,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
657
657
  }
658
658
 
659
659
  if (checked_reverse_op == false) {
660
- f = RICHCOMPARE(type2);
660
+ f = TP_RICHCOMPARE(type2);
661
661
 
662
662
  if (f != NULL) {
663
663
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -856,7 +856,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_OBJECT_STR(PyObject *operand1, PyObject *operan
856
856
  }
857
857
  }
858
858
 
859
- f = RICHCOMPARE(type1);
859
+ f = TP_RICHCOMPARE(type1);
860
860
  if (f != NULL) {
861
861
  PyObject *result = (*f)(operand1, operand2, Py_NE);
862
862
 
@@ -991,7 +991,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_OBJECT_STR(PyObject *operand1, PyObject *operan
991
991
  }
992
992
  }
993
993
 
994
- f = RICHCOMPARE(type1);
994
+ f = TP_RICHCOMPARE(type1);
995
995
 
996
996
  if (f != NULL) {
997
997
  PyObject *result = (*f)(operand1, operand2, Py_NE);
@@ -1135,7 +1135,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_STR_OBJECT(PyObject *operand1, PyObject *operan
1135
1135
  richcmpfunc f;
1136
1136
 
1137
1137
  if (&PyString_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyString_Type)) {
1138
- f = RICHCOMPARE(type2);
1138
+ f = TP_RICHCOMPARE(type2);
1139
1139
 
1140
1140
  if (f != NULL) {
1141
1141
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -1163,7 +1163,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_STR_OBJECT(PyObject *operand1, PyObject *operan
1163
1163
  Py_DECREF_IMMORTAL(result);
1164
1164
  }
1165
1165
 
1166
- f = RICHCOMPARE(type2);
1166
+ f = TP_RICHCOMPARE(type2);
1167
1167
  if (f != NULL) {
1168
1168
  PyObject *result = (*f)(operand2, operand1, Py_NE);
1169
1169
 
@@ -1268,7 +1268,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_STR_OBJECT(PyObject *operand1, PyObject *operan
1268
1268
  richcmpfunc f;
1269
1269
 
1270
1270
  if (&PyString_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyString_Type)) {
1271
- f = RICHCOMPARE(type2);
1271
+ f = TP_RICHCOMPARE(type2);
1272
1272
 
1273
1273
  if (f != NULL) {
1274
1274
  checked_reverse_op = true;
@@ -1300,7 +1300,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_STR_OBJECT(PyObject *operand1, PyObject *operan
1300
1300
  }
1301
1301
 
1302
1302
  if (checked_reverse_op == false) {
1303
- f = RICHCOMPARE(type2);
1303
+ f = TP_RICHCOMPARE(type2);
1304
1304
 
1305
1305
  if (f != NULL) {
1306
1306
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -1507,7 +1507,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_OBJECT_STR(PyObject *operand1, PyObject *opera
1507
1507
  }
1508
1508
  }
1509
1509
 
1510
- f = RICHCOMPARE(type1);
1510
+ f = TP_RICHCOMPARE(type1);
1511
1511
  if (f != NULL) {
1512
1512
  PyObject *result = (*f)(operand1, operand2, Py_NE);
1513
1513
 
@@ -1666,7 +1666,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_OBJECT_STR(PyObject *operand1, PyObject *opera
1666
1666
  }
1667
1667
  }
1668
1668
 
1669
- f = RICHCOMPARE(type1);
1669
+ f = TP_RICHCOMPARE(type1);
1670
1670
 
1671
1671
  if (f != NULL) {
1672
1672
  PyObject *result = (*f)(operand1, operand2, Py_NE);
@@ -1834,7 +1834,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_STR_OBJECT(PyObject *operand1, PyObject *opera
1834
1834
  richcmpfunc f;
1835
1835
 
1836
1836
  if (&PyString_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyString_Type)) {
1837
- f = RICHCOMPARE(type2);
1837
+ f = TP_RICHCOMPARE(type2);
1838
1838
 
1839
1839
  if (f != NULL) {
1840
1840
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -1878,7 +1878,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_STR_OBJECT(PyObject *operand1, PyObject *opera
1878
1878
  Py_DECREF_IMMORTAL(result);
1879
1879
  }
1880
1880
 
1881
- f = RICHCOMPARE(type2);
1881
+ f = TP_RICHCOMPARE(type2);
1882
1882
  if (f != NULL) {
1883
1883
  PyObject *result = (*f)(operand2, operand1, Py_NE);
1884
1884
 
@@ -1991,7 +1991,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_STR_OBJECT(PyObject *operand1, PyObject *opera
1991
1991
  richcmpfunc f;
1992
1992
 
1993
1993
  if (&PyString_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyString_Type)) {
1994
- f = RICHCOMPARE(type2);
1994
+ f = TP_RICHCOMPARE(type2);
1995
1995
 
1996
1996
  if (f != NULL) {
1997
1997
  checked_reverse_op = true;
@@ -2039,7 +2039,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_STR_OBJECT(PyObject *operand1, PyObject *opera
2039
2039
  }
2040
2040
 
2041
2041
  if (checked_reverse_op == false) {
2042
- f = RICHCOMPARE(type2);
2042
+ f = TP_RICHCOMPARE(type2);
2043
2043
 
2044
2044
  if (f != NULL) {
2045
2045
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -2269,7 +2269,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_OBJECT_UNICODE(PyObject *operand1, PyObject *op
2269
2269
  }
2270
2270
  }
2271
2271
 
2272
- f = RICHCOMPARE(type1);
2272
+ f = TP_RICHCOMPARE(type1);
2273
2273
  if (f != NULL) {
2274
2274
  PyObject *result = (*f)(operand1, operand2, Py_NE);
2275
2275
 
@@ -2404,7 +2404,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_OBJECT_UNICODE(PyObject *operand1, PyObject *op
2404
2404
  }
2405
2405
  }
2406
2406
 
2407
- f = RICHCOMPARE(type1);
2407
+ f = TP_RICHCOMPARE(type1);
2408
2408
 
2409
2409
  if (f != NULL) {
2410
2410
  PyObject *result = (*f)(operand1, operand2, Py_NE);
@@ -2548,7 +2548,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_UNICODE_OBJECT(PyObject *operand1, PyObject *op
2548
2548
  richcmpfunc f;
2549
2549
 
2550
2550
  if (&PyUnicode_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyUnicode_Type)) {
2551
- f = RICHCOMPARE(type2);
2551
+ f = TP_RICHCOMPARE(type2);
2552
2552
 
2553
2553
  if (f != NULL) {
2554
2554
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -2576,7 +2576,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_UNICODE_OBJECT(PyObject *operand1, PyObject *op
2576
2576
  Py_DECREF_IMMORTAL(result);
2577
2577
  }
2578
2578
 
2579
- f = RICHCOMPARE(type2);
2579
+ f = TP_RICHCOMPARE(type2);
2580
2580
  if (f != NULL) {
2581
2581
  PyObject *result = (*f)(operand2, operand1, Py_NE);
2582
2582
 
@@ -2681,7 +2681,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_UNICODE_OBJECT(PyObject *operand1, PyObject *op
2681
2681
  richcmpfunc f;
2682
2682
 
2683
2683
  if (&PyUnicode_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyUnicode_Type)) {
2684
- f = RICHCOMPARE(type2);
2684
+ f = TP_RICHCOMPARE(type2);
2685
2685
 
2686
2686
  if (f != NULL) {
2687
2687
  checked_reverse_op = true;
@@ -2713,7 +2713,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_UNICODE_OBJECT(PyObject *operand1, PyObject *op
2713
2713
  }
2714
2714
 
2715
2715
  if (checked_reverse_op == false) {
2716
- f = RICHCOMPARE(type2);
2716
+ f = TP_RICHCOMPARE(type2);
2717
2717
 
2718
2718
  if (f != NULL) {
2719
2719
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -2952,7 +2952,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_OBJECT_UNICODE(PyObject *operand1, PyObject *o
2952
2952
  }
2953
2953
  }
2954
2954
 
2955
- f = RICHCOMPARE(type1);
2955
+ f = TP_RICHCOMPARE(type1);
2956
2956
  if (f != NULL) {
2957
2957
  PyObject *result = (*f)(operand1, operand2, Py_NE);
2958
2958
 
@@ -3111,7 +3111,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_OBJECT_UNICODE(PyObject *operand1, PyObject *o
3111
3111
  }
3112
3112
  }
3113
3113
 
3114
- f = RICHCOMPARE(type1);
3114
+ f = TP_RICHCOMPARE(type1);
3115
3115
 
3116
3116
  if (f != NULL) {
3117
3117
  PyObject *result = (*f)(operand1, operand2, Py_NE);
@@ -3279,7 +3279,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_UNICODE_OBJECT(PyObject *operand1, PyObject *o
3279
3279
  richcmpfunc f;
3280
3280
 
3281
3281
  if (&PyUnicode_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyUnicode_Type)) {
3282
- f = RICHCOMPARE(type2);
3282
+ f = TP_RICHCOMPARE(type2);
3283
3283
 
3284
3284
  if (f != NULL) {
3285
3285
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -3323,7 +3323,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_UNICODE_OBJECT(PyObject *operand1, PyObject *o
3323
3323
  Py_DECREF_IMMORTAL(result);
3324
3324
  }
3325
3325
 
3326
- f = RICHCOMPARE(type2);
3326
+ f = TP_RICHCOMPARE(type2);
3327
3327
  if (f != NULL) {
3328
3328
  PyObject *result = (*f)(operand2, operand1, Py_NE);
3329
3329
 
@@ -3436,7 +3436,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_UNICODE_OBJECT(PyObject *operand1, PyObject *o
3436
3436
  richcmpfunc f;
3437
3437
 
3438
3438
  if (&PyUnicode_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyUnicode_Type)) {
3439
- f = RICHCOMPARE(type2);
3439
+ f = TP_RICHCOMPARE(type2);
3440
3440
 
3441
3441
  if (f != NULL) {
3442
3442
  checked_reverse_op = true;
@@ -3484,7 +3484,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_UNICODE_OBJECT(PyObject *operand1, PyObject *o
3484
3484
  }
3485
3485
 
3486
3486
  if (checked_reverse_op == false) {
3487
- f = RICHCOMPARE(type2);
3487
+ f = TP_RICHCOMPARE(type2);
3488
3488
 
3489
3489
  if (f != NULL) {
3490
3490
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -3684,7 +3684,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_OBJECT_BYTES(PyObject *operand1, PyObject *oper
3684
3684
  }
3685
3685
  }
3686
3686
 
3687
- f = RICHCOMPARE(type1);
3687
+ f = TP_RICHCOMPARE(type1);
3688
3688
  if (f != NULL) {
3689
3689
  PyObject *result = (*f)(operand1, operand2, Py_NE);
3690
3690
 
@@ -3819,7 +3819,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_OBJECT_BYTES(PyObject *operand1, PyObject *oper
3819
3819
  }
3820
3820
  }
3821
3821
 
3822
- f = RICHCOMPARE(type1);
3822
+ f = TP_RICHCOMPARE(type1);
3823
3823
 
3824
3824
  if (f != NULL) {
3825
3825
  PyObject *result = (*f)(operand1, operand2, Py_NE);
@@ -3963,7 +3963,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_BYTES_OBJECT(PyObject *operand1, PyObject *oper
3963
3963
  richcmpfunc f;
3964
3964
 
3965
3965
  if (&PyBytes_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyBytes_Type)) {
3966
- f = RICHCOMPARE(type2);
3966
+ f = TP_RICHCOMPARE(type2);
3967
3967
 
3968
3968
  if (f != NULL) {
3969
3969
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -3991,7 +3991,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_BYTES_OBJECT(PyObject *operand1, PyObject *oper
3991
3991
  Py_DECREF_IMMORTAL(result);
3992
3992
  }
3993
3993
 
3994
- f = RICHCOMPARE(type2);
3994
+ f = TP_RICHCOMPARE(type2);
3995
3995
  if (f != NULL) {
3996
3996
  PyObject *result = (*f)(operand2, operand1, Py_NE);
3997
3997
 
@@ -4096,7 +4096,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_BYTES_OBJECT(PyObject *operand1, PyObject *oper
4096
4096
  richcmpfunc f;
4097
4097
 
4098
4098
  if (&PyBytes_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyBytes_Type)) {
4099
- f = RICHCOMPARE(type2);
4099
+ f = TP_RICHCOMPARE(type2);
4100
4100
 
4101
4101
  if (f != NULL) {
4102
4102
  checked_reverse_op = true;
@@ -4128,7 +4128,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_BYTES_OBJECT(PyObject *operand1, PyObject *oper
4128
4128
  }
4129
4129
 
4130
4130
  if (checked_reverse_op == false) {
4131
- f = RICHCOMPARE(type2);
4131
+ f = TP_RICHCOMPARE(type2);
4132
4132
 
4133
4133
  if (f != NULL) {
4134
4134
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -4335,7 +4335,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_OBJECT_BYTES(PyObject *operand1, PyObject *ope
4335
4335
  }
4336
4336
  }
4337
4337
 
4338
- f = RICHCOMPARE(type1);
4338
+ f = TP_RICHCOMPARE(type1);
4339
4339
  if (f != NULL) {
4340
4340
  PyObject *result = (*f)(operand1, operand2, Py_NE);
4341
4341
 
@@ -4494,7 +4494,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_OBJECT_BYTES(PyObject *operand1, PyObject *ope
4494
4494
  }
4495
4495
  }
4496
4496
 
4497
- f = RICHCOMPARE(type1);
4497
+ f = TP_RICHCOMPARE(type1);
4498
4498
 
4499
4499
  if (f != NULL) {
4500
4500
  PyObject *result = (*f)(operand1, operand2, Py_NE);
@@ -4662,7 +4662,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_BYTES_OBJECT(PyObject *operand1, PyObject *ope
4662
4662
  richcmpfunc f;
4663
4663
 
4664
4664
  if (&PyBytes_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyBytes_Type)) {
4665
- f = RICHCOMPARE(type2);
4665
+ f = TP_RICHCOMPARE(type2);
4666
4666
 
4667
4667
  if (f != NULL) {
4668
4668
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -4706,7 +4706,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_BYTES_OBJECT(PyObject *operand1, PyObject *ope
4706
4706
  Py_DECREF_IMMORTAL(result);
4707
4707
  }
4708
4708
 
4709
- f = RICHCOMPARE(type2);
4709
+ f = TP_RICHCOMPARE(type2);
4710
4710
  if (f != NULL) {
4711
4711
  PyObject *result = (*f)(operand2, operand1, Py_NE);
4712
4712
 
@@ -4819,7 +4819,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_BYTES_OBJECT(PyObject *operand1, PyObject *ope
4819
4819
  richcmpfunc f;
4820
4820
 
4821
4821
  if (&PyBytes_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyBytes_Type)) {
4822
- f = RICHCOMPARE(type2);
4822
+ f = TP_RICHCOMPARE(type2);
4823
4823
 
4824
4824
  if (f != NULL) {
4825
4825
  checked_reverse_op = true;
@@ -4867,7 +4867,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_BYTES_OBJECT(PyObject *operand1, PyObject *ope
4867
4867
  }
4868
4868
 
4869
4869
  if (checked_reverse_op == false) {
4870
- f = RICHCOMPARE(type2);
4870
+ f = TP_RICHCOMPARE(type2);
4871
4871
 
4872
4872
  if (f != NULL) {
4873
4873
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -5019,7 +5019,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_OBJECT_INT(PyObject *operand1, PyObject *operan
5019
5019
  }
5020
5020
  }
5021
5021
 
5022
- f = RICHCOMPARE(type1);
5022
+ f = TP_RICHCOMPARE(type1);
5023
5023
  if (f != NULL) {
5024
5024
  PyObject *result = (*f)(operand1, operand2, Py_NE);
5025
5025
 
@@ -5154,7 +5154,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_OBJECT_INT(PyObject *operand1, PyObject *operan
5154
5154
  }
5155
5155
  }
5156
5156
 
5157
- f = RICHCOMPARE(type1);
5157
+ f = TP_RICHCOMPARE(type1);
5158
5158
 
5159
5159
  if (f != NULL) {
5160
5160
  PyObject *result = (*f)(operand1, operand2, Py_NE);
@@ -5298,7 +5298,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_INT_OBJECT(PyObject *operand1, PyObject *operan
5298
5298
  richcmpfunc f;
5299
5299
 
5300
5300
  if (&PyInt_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyInt_Type)) {
5301
- f = RICHCOMPARE(type2);
5301
+ f = TP_RICHCOMPARE(type2);
5302
5302
 
5303
5303
  if (f != NULL) {
5304
5304
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -5326,7 +5326,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_INT_OBJECT(PyObject *operand1, PyObject *operan
5326
5326
  Py_DECREF_IMMORTAL(result);
5327
5327
  }
5328
5328
 
5329
- f = RICHCOMPARE(type2);
5329
+ f = TP_RICHCOMPARE(type2);
5330
5330
  if (f != NULL) {
5331
5331
  PyObject *result = (*f)(operand2, operand1, Py_NE);
5332
5332
 
@@ -5431,7 +5431,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_INT_OBJECT(PyObject *operand1, PyObject *operan
5431
5431
  richcmpfunc f;
5432
5432
 
5433
5433
  if (&PyInt_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyInt_Type)) {
5434
- f = RICHCOMPARE(type2);
5434
+ f = TP_RICHCOMPARE(type2);
5435
5435
 
5436
5436
  if (f != NULL) {
5437
5437
  checked_reverse_op = true;
@@ -5463,7 +5463,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_INT_OBJECT(PyObject *operand1, PyObject *operan
5463
5463
  }
5464
5464
 
5465
5465
  if (checked_reverse_op == false) {
5466
- f = RICHCOMPARE(type2);
5466
+ f = TP_RICHCOMPARE(type2);
5467
5467
 
5468
5468
  if (f != NULL) {
5469
5469
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -5623,7 +5623,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_OBJECT_INT(PyObject *operand1, PyObject *opera
5623
5623
  }
5624
5624
  }
5625
5625
 
5626
- f = RICHCOMPARE(type1);
5626
+ f = TP_RICHCOMPARE(type1);
5627
5627
  if (f != NULL) {
5628
5628
  PyObject *result = (*f)(operand1, operand2, Py_NE);
5629
5629
 
@@ -5782,7 +5782,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_OBJECT_INT(PyObject *operand1, PyObject *opera
5782
5782
  }
5783
5783
  }
5784
5784
 
5785
- f = RICHCOMPARE(type1);
5785
+ f = TP_RICHCOMPARE(type1);
5786
5786
 
5787
5787
  if (f != NULL) {
5788
5788
  PyObject *result = (*f)(operand1, operand2, Py_NE);
@@ -5950,7 +5950,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_INT_OBJECT(PyObject *operand1, PyObject *opera
5950
5950
  richcmpfunc f;
5951
5951
 
5952
5952
  if (&PyInt_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyInt_Type)) {
5953
- f = RICHCOMPARE(type2);
5953
+ f = TP_RICHCOMPARE(type2);
5954
5954
 
5955
5955
  if (f != NULL) {
5956
5956
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -5994,7 +5994,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_INT_OBJECT(PyObject *operand1, PyObject *opera
5994
5994
  Py_DECREF_IMMORTAL(result);
5995
5995
  }
5996
5996
 
5997
- f = RICHCOMPARE(type2);
5997
+ f = TP_RICHCOMPARE(type2);
5998
5998
  if (f != NULL) {
5999
5999
  PyObject *result = (*f)(operand2, operand1, Py_NE);
6000
6000
 
@@ -6107,7 +6107,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_INT_OBJECT(PyObject *operand1, PyObject *opera
6107
6107
  richcmpfunc f;
6108
6108
 
6109
6109
  if (&PyInt_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyInt_Type)) {
6110
- f = RICHCOMPARE(type2);
6110
+ f = TP_RICHCOMPARE(type2);
6111
6111
 
6112
6112
  if (f != NULL) {
6113
6113
  checked_reverse_op = true;
@@ -6155,7 +6155,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_INT_OBJECT(PyObject *operand1, PyObject *opera
6155
6155
  }
6156
6156
 
6157
6157
  if (checked_reverse_op == false) {
6158
- f = RICHCOMPARE(type2);
6158
+ f = TP_RICHCOMPARE(type2);
6159
6159
 
6160
6160
  if (f != NULL) {
6161
6161
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -6340,7 +6340,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_OBJECT_LONG(PyObject *operand1, PyObject *opera
6340
6340
  }
6341
6341
  }
6342
6342
 
6343
- f = RICHCOMPARE(type1);
6343
+ f = TP_RICHCOMPARE(type1);
6344
6344
  if (f != NULL) {
6345
6345
  PyObject *result = (*f)(operand1, operand2, Py_NE);
6346
6346
 
@@ -6475,7 +6475,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_OBJECT_LONG(PyObject *operand1, PyObject *opera
6475
6475
  }
6476
6476
  }
6477
6477
 
6478
- f = RICHCOMPARE(type1);
6478
+ f = TP_RICHCOMPARE(type1);
6479
6479
 
6480
6480
  if (f != NULL) {
6481
6481
  PyObject *result = (*f)(operand1, operand2, Py_NE);
@@ -6619,7 +6619,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_LONG_OBJECT(PyObject *operand1, PyObject *opera
6619
6619
  richcmpfunc f;
6620
6620
 
6621
6621
  if (&PyLong_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyLong_Type)) {
6622
- f = RICHCOMPARE(type2);
6622
+ f = TP_RICHCOMPARE(type2);
6623
6623
 
6624
6624
  if (f != NULL) {
6625
6625
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -6647,7 +6647,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_LONG_OBJECT(PyObject *operand1, PyObject *opera
6647
6647
  Py_DECREF_IMMORTAL(result);
6648
6648
  }
6649
6649
 
6650
- f = RICHCOMPARE(type2);
6650
+ f = TP_RICHCOMPARE(type2);
6651
6651
  if (f != NULL) {
6652
6652
  PyObject *result = (*f)(operand2, operand1, Py_NE);
6653
6653
 
@@ -6752,7 +6752,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_LONG_OBJECT(PyObject *operand1, PyObject *opera
6752
6752
  richcmpfunc f;
6753
6753
 
6754
6754
  if (&PyLong_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyLong_Type)) {
6755
- f = RICHCOMPARE(type2);
6755
+ f = TP_RICHCOMPARE(type2);
6756
6756
 
6757
6757
  if (f != NULL) {
6758
6758
  checked_reverse_op = true;
@@ -6784,7 +6784,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_LONG_OBJECT(PyObject *operand1, PyObject *opera
6784
6784
  }
6785
6785
 
6786
6786
  if (checked_reverse_op == false) {
6787
- f = RICHCOMPARE(type2);
6787
+ f = TP_RICHCOMPARE(type2);
6788
6788
 
6789
6789
  if (f != NULL) {
6790
6790
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -6978,7 +6978,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_OBJECT_LONG(PyObject *operand1, PyObject *oper
6978
6978
  }
6979
6979
  }
6980
6980
 
6981
- f = RICHCOMPARE(type1);
6981
+ f = TP_RICHCOMPARE(type1);
6982
6982
  if (f != NULL) {
6983
6983
  PyObject *result = (*f)(operand1, operand2, Py_NE);
6984
6984
 
@@ -7137,7 +7137,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_OBJECT_LONG(PyObject *operand1, PyObject *oper
7137
7137
  }
7138
7138
  }
7139
7139
 
7140
- f = RICHCOMPARE(type1);
7140
+ f = TP_RICHCOMPARE(type1);
7141
7141
 
7142
7142
  if (f != NULL) {
7143
7143
  PyObject *result = (*f)(operand1, operand2, Py_NE);
@@ -7305,7 +7305,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_LONG_OBJECT(PyObject *operand1, PyObject *oper
7305
7305
  richcmpfunc f;
7306
7306
 
7307
7307
  if (&PyLong_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyLong_Type)) {
7308
- f = RICHCOMPARE(type2);
7308
+ f = TP_RICHCOMPARE(type2);
7309
7309
 
7310
7310
  if (f != NULL) {
7311
7311
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -7349,7 +7349,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_LONG_OBJECT(PyObject *operand1, PyObject *oper
7349
7349
  Py_DECREF_IMMORTAL(result);
7350
7350
  }
7351
7351
 
7352
- f = RICHCOMPARE(type2);
7352
+ f = TP_RICHCOMPARE(type2);
7353
7353
  if (f != NULL) {
7354
7354
  PyObject *result = (*f)(operand2, operand1, Py_NE);
7355
7355
 
@@ -7462,7 +7462,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_LONG_OBJECT(PyObject *operand1, PyObject *oper
7462
7462
  richcmpfunc f;
7463
7463
 
7464
7464
  if (&PyLong_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyLong_Type)) {
7465
- f = RICHCOMPARE(type2);
7465
+ f = TP_RICHCOMPARE(type2);
7466
7466
 
7467
7467
  if (f != NULL) {
7468
7468
  checked_reverse_op = true;
@@ -7510,7 +7510,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_LONG_OBJECT(PyObject *operand1, PyObject *oper
7510
7510
  }
7511
7511
 
7512
7512
  if (checked_reverse_op == false) {
7513
- f = RICHCOMPARE(type2);
7513
+ f = TP_RICHCOMPARE(type2);
7514
7514
 
7515
7515
  if (f != NULL) {
7516
7516
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -7678,7 +7678,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_OBJECT_FLOAT(PyObject *operand1, PyObject *oper
7678
7678
  }
7679
7679
  }
7680
7680
 
7681
- f = RICHCOMPARE(type1);
7681
+ f = TP_RICHCOMPARE(type1);
7682
7682
  if (f != NULL) {
7683
7683
  PyObject *result = (*f)(operand1, operand2, Py_NE);
7684
7684
 
@@ -7813,7 +7813,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_OBJECT_FLOAT(PyObject *operand1, PyObject *oper
7813
7813
  }
7814
7814
  }
7815
7815
 
7816
- f = RICHCOMPARE(type1);
7816
+ f = TP_RICHCOMPARE(type1);
7817
7817
 
7818
7818
  if (f != NULL) {
7819
7819
  PyObject *result = (*f)(operand1, operand2, Py_NE);
@@ -7955,7 +7955,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_FLOAT_OBJECT(PyObject *operand1, PyObject *oper
7955
7955
  richcmpfunc f;
7956
7956
 
7957
7957
  if (&PyFloat_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyFloat_Type)) {
7958
- f = RICHCOMPARE(type2);
7958
+ f = TP_RICHCOMPARE(type2);
7959
7959
 
7960
7960
  if (f != NULL) {
7961
7961
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -7983,7 +7983,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_FLOAT_OBJECT(PyObject *operand1, PyObject *oper
7983
7983
  Py_DECREF_IMMORTAL(result);
7984
7984
  }
7985
7985
 
7986
- f = RICHCOMPARE(type2);
7986
+ f = TP_RICHCOMPARE(type2);
7987
7987
  if (f != NULL) {
7988
7988
  PyObject *result = (*f)(operand2, operand1, Py_NE);
7989
7989
 
@@ -8088,7 +8088,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_FLOAT_OBJECT(PyObject *operand1, PyObject *oper
8088
8088
  richcmpfunc f;
8089
8089
 
8090
8090
  if (&PyFloat_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyFloat_Type)) {
8091
- f = RICHCOMPARE(type2);
8091
+ f = TP_RICHCOMPARE(type2);
8092
8092
 
8093
8093
  if (f != NULL) {
8094
8094
  checked_reverse_op = true;
@@ -8120,7 +8120,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_FLOAT_OBJECT(PyObject *operand1, PyObject *oper
8120
8120
  }
8121
8121
 
8122
8122
  if (checked_reverse_op == false) {
8123
- f = RICHCOMPARE(type2);
8123
+ f = TP_RICHCOMPARE(type2);
8124
8124
 
8125
8125
  if (f != NULL) {
8126
8126
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -8294,7 +8294,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_OBJECT_FLOAT(PyObject *operand1, PyObject *ope
8294
8294
  }
8295
8295
  }
8296
8296
 
8297
- f = RICHCOMPARE(type1);
8297
+ f = TP_RICHCOMPARE(type1);
8298
8298
  if (f != NULL) {
8299
8299
  PyObject *result = (*f)(operand1, operand2, Py_NE);
8300
8300
 
@@ -8453,7 +8453,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_OBJECT_FLOAT(PyObject *operand1, PyObject *ope
8453
8453
  }
8454
8454
  }
8455
8455
 
8456
- f = RICHCOMPARE(type1);
8456
+ f = TP_RICHCOMPARE(type1);
8457
8457
 
8458
8458
  if (f != NULL) {
8459
8459
  PyObject *result = (*f)(operand1, operand2, Py_NE);
@@ -8619,7 +8619,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_FLOAT_OBJECT(PyObject *operand1, PyObject *ope
8619
8619
  richcmpfunc f;
8620
8620
 
8621
8621
  if (&PyFloat_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyFloat_Type)) {
8622
- f = RICHCOMPARE(type2);
8622
+ f = TP_RICHCOMPARE(type2);
8623
8623
 
8624
8624
  if (f != NULL) {
8625
8625
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -8663,7 +8663,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_FLOAT_OBJECT(PyObject *operand1, PyObject *ope
8663
8663
  Py_DECREF_IMMORTAL(result);
8664
8664
  }
8665
8665
 
8666
- f = RICHCOMPARE(type2);
8666
+ f = TP_RICHCOMPARE(type2);
8667
8667
  if (f != NULL) {
8668
8668
  PyObject *result = (*f)(operand2, operand1, Py_NE);
8669
8669
 
@@ -8776,7 +8776,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_FLOAT_OBJECT(PyObject *operand1, PyObject *ope
8776
8776
  richcmpfunc f;
8777
8777
 
8778
8778
  if (&PyFloat_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyFloat_Type)) {
8779
- f = RICHCOMPARE(type2);
8779
+ f = TP_RICHCOMPARE(type2);
8780
8780
 
8781
8781
  if (f != NULL) {
8782
8782
  checked_reverse_op = true;
@@ -8824,7 +8824,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_FLOAT_OBJECT(PyObject *operand1, PyObject *ope
8824
8824
  }
8825
8825
 
8826
8826
  if (checked_reverse_op == false) {
8827
- f = RICHCOMPARE(type2);
8827
+ f = TP_RICHCOMPARE(type2);
8828
8828
 
8829
8829
  if (f != NULL) {
8830
8830
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -9024,7 +9024,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_OBJECT_TUPLE(PyObject *operand1, PyObject *oper
9024
9024
  }
9025
9025
  }
9026
9026
 
9027
- f = RICHCOMPARE(type1);
9027
+ f = TP_RICHCOMPARE(type1);
9028
9028
  if (f != NULL) {
9029
9029
  PyObject *result = (*f)(operand1, operand2, Py_NE);
9030
9030
 
@@ -9159,7 +9159,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_OBJECT_TUPLE(PyObject *operand1, PyObject *oper
9159
9159
  }
9160
9160
  }
9161
9161
 
9162
- f = RICHCOMPARE(type1);
9162
+ f = TP_RICHCOMPARE(type1);
9163
9163
 
9164
9164
  if (f != NULL) {
9165
9165
  PyObject *result = (*f)(operand1, operand2, Py_NE);
@@ -9301,7 +9301,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_TUPLE_OBJECT(PyObject *operand1, PyObject *oper
9301
9301
  richcmpfunc f;
9302
9302
 
9303
9303
  if (&PyTuple_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyTuple_Type)) {
9304
- f = RICHCOMPARE(type2);
9304
+ f = TP_RICHCOMPARE(type2);
9305
9305
 
9306
9306
  if (f != NULL) {
9307
9307
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -9329,7 +9329,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_TUPLE_OBJECT(PyObject *operand1, PyObject *oper
9329
9329
  Py_DECREF_IMMORTAL(result);
9330
9330
  }
9331
9331
 
9332
- f = RICHCOMPARE(type2);
9332
+ f = TP_RICHCOMPARE(type2);
9333
9333
  if (f != NULL) {
9334
9334
  PyObject *result = (*f)(operand2, operand1, Py_NE);
9335
9335
 
@@ -9434,7 +9434,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_TUPLE_OBJECT(PyObject *operand1, PyObject *oper
9434
9434
  richcmpfunc f;
9435
9435
 
9436
9436
  if (&PyTuple_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyTuple_Type)) {
9437
- f = RICHCOMPARE(type2);
9437
+ f = TP_RICHCOMPARE(type2);
9438
9438
 
9439
9439
  if (f != NULL) {
9440
9440
  checked_reverse_op = true;
@@ -9466,7 +9466,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_TUPLE_OBJECT(PyObject *operand1, PyObject *oper
9466
9466
  }
9467
9467
 
9468
9468
  if (checked_reverse_op == false) {
9469
- f = RICHCOMPARE(type2);
9469
+ f = TP_RICHCOMPARE(type2);
9470
9470
 
9471
9471
  if (f != NULL) {
9472
9472
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -9680,7 +9680,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_OBJECT_TUPLE(PyObject *operand1, PyObject *ope
9680
9680
  }
9681
9681
  }
9682
9682
 
9683
- f = RICHCOMPARE(type1);
9683
+ f = TP_RICHCOMPARE(type1);
9684
9684
  if (f != NULL) {
9685
9685
  PyObject *result = (*f)(operand1, operand2, Py_NE);
9686
9686
 
@@ -9839,7 +9839,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_OBJECT_TUPLE(PyObject *operand1, PyObject *ope
9839
9839
  }
9840
9840
  }
9841
9841
 
9842
- f = RICHCOMPARE(type1);
9842
+ f = TP_RICHCOMPARE(type1);
9843
9843
 
9844
9844
  if (f != NULL) {
9845
9845
  PyObject *result = (*f)(operand1, operand2, Py_NE);
@@ -10005,7 +10005,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_TUPLE_OBJECT(PyObject *operand1, PyObject *ope
10005
10005
  richcmpfunc f;
10006
10006
 
10007
10007
  if (&PyTuple_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyTuple_Type)) {
10008
- f = RICHCOMPARE(type2);
10008
+ f = TP_RICHCOMPARE(type2);
10009
10009
 
10010
10010
  if (f != NULL) {
10011
10011
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -10049,7 +10049,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_TUPLE_OBJECT(PyObject *operand1, PyObject *ope
10049
10049
  Py_DECREF_IMMORTAL(result);
10050
10050
  }
10051
10051
 
10052
- f = RICHCOMPARE(type2);
10052
+ f = TP_RICHCOMPARE(type2);
10053
10053
  if (f != NULL) {
10054
10054
  PyObject *result = (*f)(operand2, operand1, Py_NE);
10055
10055
 
@@ -10162,7 +10162,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_TUPLE_OBJECT(PyObject *operand1, PyObject *ope
10162
10162
  richcmpfunc f;
10163
10163
 
10164
10164
  if (&PyTuple_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyTuple_Type)) {
10165
- f = RICHCOMPARE(type2);
10165
+ f = TP_RICHCOMPARE(type2);
10166
10166
 
10167
10167
  if (f != NULL) {
10168
10168
  checked_reverse_op = true;
@@ -10210,7 +10210,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_TUPLE_OBJECT(PyObject *operand1, PyObject *ope
10210
10210
  }
10211
10211
 
10212
10212
  if (checked_reverse_op == false) {
10213
- f = RICHCOMPARE(type2);
10213
+ f = TP_RICHCOMPARE(type2);
10214
10214
 
10215
10215
  if (f != NULL) {
10216
10216
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -10423,7 +10423,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_OBJECT_LIST(PyObject *operand1, PyObject *opera
10423
10423
  }
10424
10424
  }
10425
10425
 
10426
- f = RICHCOMPARE(type1);
10426
+ f = TP_RICHCOMPARE(type1);
10427
10427
  if (f != NULL) {
10428
10428
  PyObject *result = (*f)(operand1, operand2, Py_NE);
10429
10429
 
@@ -10558,7 +10558,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_OBJECT_LIST(PyObject *operand1, PyObject *opera
10558
10558
  }
10559
10559
  }
10560
10560
 
10561
- f = RICHCOMPARE(type1);
10561
+ f = TP_RICHCOMPARE(type1);
10562
10562
 
10563
10563
  if (f != NULL) {
10564
10564
  PyObject *result = (*f)(operand1, operand2, Py_NE);
@@ -10700,7 +10700,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_LIST_OBJECT(PyObject *operand1, PyObject *opera
10700
10700
  richcmpfunc f;
10701
10701
 
10702
10702
  if (&PyList_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyList_Type)) {
10703
- f = RICHCOMPARE(type2);
10703
+ f = TP_RICHCOMPARE(type2);
10704
10704
 
10705
10705
  if (f != NULL) {
10706
10706
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -10728,7 +10728,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_LIST_OBJECT(PyObject *operand1, PyObject *opera
10728
10728
  Py_DECREF_IMMORTAL(result);
10729
10729
  }
10730
10730
 
10731
- f = RICHCOMPARE(type2);
10731
+ f = TP_RICHCOMPARE(type2);
10732
10732
  if (f != NULL) {
10733
10733
  PyObject *result = (*f)(operand2, operand1, Py_NE);
10734
10734
 
@@ -10833,7 +10833,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_LIST_OBJECT(PyObject *operand1, PyObject *opera
10833
10833
  richcmpfunc f;
10834
10834
 
10835
10835
  if (&PyList_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyList_Type)) {
10836
- f = RICHCOMPARE(type2);
10836
+ f = TP_RICHCOMPARE(type2);
10837
10837
 
10838
10838
  if (f != NULL) {
10839
10839
  checked_reverse_op = true;
@@ -10865,7 +10865,7 @@ PyObject *RICH_COMPARE_NE_OBJECT_LIST_OBJECT(PyObject *operand1, PyObject *opera
10865
10865
  }
10866
10866
 
10867
10867
  if (checked_reverse_op == false) {
10868
- f = RICHCOMPARE(type2);
10868
+ f = TP_RICHCOMPARE(type2);
10869
10869
 
10870
10870
  if (f != NULL) {
10871
10871
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -11086,7 +11086,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_OBJECT_LIST(PyObject *operand1, PyObject *oper
11086
11086
  }
11087
11087
  }
11088
11088
 
11089
- f = RICHCOMPARE(type1);
11089
+ f = TP_RICHCOMPARE(type1);
11090
11090
  if (f != NULL) {
11091
11091
  PyObject *result = (*f)(operand1, operand2, Py_NE);
11092
11092
 
@@ -11245,7 +11245,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_OBJECT_LIST(PyObject *operand1, PyObject *oper
11245
11245
  }
11246
11246
  }
11247
11247
 
11248
- f = RICHCOMPARE(type1);
11248
+ f = TP_RICHCOMPARE(type1);
11249
11249
 
11250
11250
  if (f != NULL) {
11251
11251
  PyObject *result = (*f)(operand1, operand2, Py_NE);
@@ -11411,7 +11411,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_LIST_OBJECT(PyObject *operand1, PyObject *oper
11411
11411
  richcmpfunc f;
11412
11412
 
11413
11413
  if (&PyList_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyList_Type)) {
11414
- f = RICHCOMPARE(type2);
11414
+ f = TP_RICHCOMPARE(type2);
11415
11415
 
11416
11416
  if (f != NULL) {
11417
11417
  PyObject *result = (*f)(operand2, operand1, Py_NE);
@@ -11455,7 +11455,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_LIST_OBJECT(PyObject *operand1, PyObject *oper
11455
11455
  Py_DECREF_IMMORTAL(result);
11456
11456
  }
11457
11457
 
11458
- f = RICHCOMPARE(type2);
11458
+ f = TP_RICHCOMPARE(type2);
11459
11459
  if (f != NULL) {
11460
11460
  PyObject *result = (*f)(operand2, operand1, Py_NE);
11461
11461
 
@@ -11568,7 +11568,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_LIST_OBJECT(PyObject *operand1, PyObject *oper
11568
11568
  richcmpfunc f;
11569
11569
 
11570
11570
  if (&PyList_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyList_Type)) {
11571
- f = RICHCOMPARE(type2);
11571
+ f = TP_RICHCOMPARE(type2);
11572
11572
 
11573
11573
  if (f != NULL) {
11574
11574
  checked_reverse_op = true;
@@ -11616,7 +11616,7 @@ nuitka_bool RICH_COMPARE_NE_NBOOL_LIST_OBJECT(PyObject *operand1, PyObject *oper
11616
11616
  }
11617
11617
 
11618
11618
  if (checked_reverse_op == false) {
11619
- f = RICHCOMPARE(type2);
11619
+ f = TP_RICHCOMPARE(type2);
11620
11620
 
11621
11621
  if (f != NULL) {
11622
11622
  PyObject *result = (*f)(operand2, operand1, Py_NE);