Nuitka-winsvc 2.3.11__cp311-cp311-win_amd64.whl → 2.4.1__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 (210) hide show
  1. Nuitka_winsvc-2.3.11.data/scripts/nuitka-run.bat → Nuitka_winsvc-2.4.1.data/scripts/nuitka-run.cmd +1 -1
  2. {Nuitka_winsvc-2.3.11.dist-info → Nuitka_winsvc-2.4.1.dist-info}/METADATA +1 -1
  3. {Nuitka_winsvc-2.3.11.dist-info → Nuitka_winsvc-2.4.1.dist-info}/RECORD +210 -207
  4. {Nuitka_winsvc-2.3.11.dist-info → Nuitka_winsvc-2.4.1.dist-info}/WHEEL +1 -1
  5. nuitka/CacheCleanup.py +6 -1
  6. nuitka/HardImportRegistry.py +29 -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/PythonFlavors.py +22 -4
  14. nuitka/PythonVersions.py +18 -0
  15. nuitka/TreeXML.py +6 -3
  16. nuitka/Version.py +1 -1
  17. nuitka/__main__.py +55 -10
  18. nuitka/build/Backend.scons +6 -1
  19. nuitka/build/CCompilerVersion.scons +1 -0
  20. nuitka/build/Onefile.scons +4 -0
  21. nuitka/build/SconsCaching.py +1 -0
  22. nuitka/build/SconsCompilerSettings.py +1 -0
  23. nuitka/build/SconsHacks.py +5 -1
  24. nuitka/build/SconsInterface.py +2 -0
  25. nuitka/build/SconsUtils.py +4 -1
  26. nuitka/build/include/nuitka/allocator.h +27 -5
  27. nuitka/build/include/nuitka/calling.h +1 -1
  28. nuitka/build/include/nuitka/compiled_frame.h +23 -23
  29. nuitka/build/include/nuitka/compiled_method.h +1 -1
  30. nuitka/build/include/nuitka/exception_groups.h +0 -2
  31. nuitka/build/include/nuitka/helper/attributes.h +7 -1
  32. nuitka/build/include/nuitka/helper/subscripts.h +1 -1
  33. nuitka/build/include/nuitka/helpers.h +7 -4
  34. nuitka/build/include/nuitka/prelude.h +6 -10
  35. nuitka/build/include/nuitka/printing.h +2 -0
  36. nuitka/build/include/nuitka/unfreezing.h +5 -5
  37. nuitka/build/inline_copy/tqdm/tqdm/_monitor.py +4 -1
  38. nuitka/build/static_src/CompiledAsyncgenType.c +2 -4
  39. nuitka/build/static_src/CompiledCellType.c +7 -7
  40. nuitka/build/static_src/CompiledCodeHelpers.c +49 -36
  41. nuitka/build/static_src/CompiledCoroutineType.c +2 -4
  42. nuitka/build/static_src/CompiledFrameType.c +109 -82
  43. nuitka/build/static_src/CompiledFunctionType.c +36 -9
  44. nuitka/build/static_src/CompiledGeneratorType.c +12 -10
  45. nuitka/build/static_src/CompiledGeneratorTypeUncompiledIntegration.c +2 -2
  46. nuitka/build/static_src/CompiledMethodType.c +14 -13
  47. nuitka/build/static_src/HelpersAttributes.c +13 -15
  48. nuitka/build/static_src/HelpersBuiltin.c +16 -7
  49. nuitka/build/static_src/HelpersCalling.c +13 -13
  50. nuitka/build/static_src/HelpersCallingGenerated.c +22 -22
  51. nuitka/build/static_src/HelpersComparisonEq.c +110 -110
  52. nuitka/build/static_src/HelpersComparisonEqUtils.c +1 -1
  53. nuitka/build/static_src/HelpersComparisonGe.c +110 -110
  54. nuitka/build/static_src/HelpersComparisonGt.c +110 -110
  55. nuitka/build/static_src/HelpersComparisonLe.c +110 -110
  56. nuitka/build/static_src/HelpersComparisonLt.c +110 -110
  57. nuitka/build/static_src/HelpersComparisonNe.c +110 -110
  58. nuitka/build/static_src/HelpersConstantsBlob.c +480 -481
  59. nuitka/build/static_src/HelpersDictionaries.c +9 -0
  60. nuitka/build/static_src/HelpersFiles.c +2 -2
  61. nuitka/build/static_src/HelpersFilesystemPaths.c +28 -13
  62. nuitka/build/static_src/HelpersImport.c +1 -1
  63. nuitka/build/static_src/HelpersLists.c +5 -1
  64. nuitka/build/static_src/HelpersMatching.c +95 -35
  65. nuitka/build/static_src/HelpersOperationInplaceAdd.c +23 -23
  66. nuitka/build/static_src/HelpersOperationInplaceAddUtils.c +1 -0
  67. nuitka/build/static_src/HelpersOperationInplaceBitand.c +11 -11
  68. nuitka/build/static_src/HelpersOperationInplaceBitor.c +11 -11
  69. nuitka/build/static_src/HelpersOperationInplaceBitxor.c +11 -11
  70. nuitka/build/static_src/HelpersOperationInplaceFloordiv.c +17 -17
  71. nuitka/build/static_src/HelpersOperationInplaceLshift.c +9 -9
  72. nuitka/build/static_src/HelpersOperationInplaceMatmult.c +10 -10
  73. nuitka/build/static_src/HelpersOperationInplaceMod.c +47 -47
  74. nuitka/build/static_src/HelpersOperationInplaceMult.c +28 -28
  75. nuitka/build/static_src/HelpersOperationInplaceOlddiv.c +17 -17
  76. nuitka/build/static_src/HelpersOperationInplacePow.c +17 -17
  77. nuitka/build/static_src/HelpersOperationInplaceRshift.c +9 -9
  78. nuitka/build/static_src/HelpersOperationInplaceSub.c +17 -17
  79. nuitka/build/static_src/HelpersOperationInplaceTruediv.c +17 -17
  80. nuitka/build/static_src/HelpersSequences.c +1 -1
  81. nuitka/build/static_src/HelpersTypes.c +8 -4
  82. nuitka/build/static_src/MainProgram.c +28 -9
  83. nuitka/build/static_src/MetaPathBasedLoader.c +124 -108
  84. nuitka/build/static_src/MetaPathBasedLoaderImportlibMetadataDistribution.c +13 -4
  85. nuitka/build/static_src/MetaPathBasedLoaderResourceReaderFiles.c +1 -1
  86. nuitka/build/static_src/OnefileBootstrap.c +34 -6
  87. nuitka/code_generation/AttributeCodes.py +12 -10
  88. nuitka/code_generation/CodeGeneration.py +6 -7
  89. nuitka/code_generation/ConstantCodes.py +53 -10
  90. nuitka/code_generation/GlobalConstants.py +6 -6
  91. nuitka/code_generation/Indentation.py +3 -4
  92. nuitka/code_generation/LoaderCodes.py +3 -0
  93. nuitka/code_generation/LocalsDictCodes.py +36 -14
  94. nuitka/code_generation/MatchCodes.py +23 -4
  95. nuitka/code_generation/ModuleCodes.py +0 -7
  96. nuitka/code_generation/Namify.py +2 -0
  97. nuitka/code_generation/PackageResourceCodes.py +5 -1
  98. nuitka/code_generation/templates/CodeTemplatesConstants.py +6 -4
  99. nuitka/code_generation/templates/CodeTemplatesLoader.py +1 -1
  100. nuitka/code_generation/templates/CodeTemplatesModules.py +3 -3
  101. nuitka/code_generation/templates/CodeTemplatesVariables.py +16 -2
  102. nuitka/code_generation/templates_c/CodeTemplateCallsMethodPositional.c.j2 +2 -2
  103. nuitka/code_generation/templates_c/HelperOperationBinary.c.j2 +1 -1
  104. nuitka/code_generation/templates_c/HelperOperationInplace.c.j2 +1 -1
  105. nuitka/code_generation/templates_c/HelperSlotsBinary.c.j2 +7 -7
  106. nuitka/freezer/DependsExe.py +3 -1
  107. nuitka/freezer/DllDependenciesMacOS.py +5 -12
  108. nuitka/freezer/IncludedDataFiles.py +12 -3
  109. nuitka/freezer/IncludedEntryPoints.py +8 -2
  110. nuitka/freezer/Onefile.py +6 -1
  111. nuitka/freezer/Standalone.py +9 -2
  112. nuitka/importing/Importing.py +14 -5
  113. nuitka/importing/Recursion.py +3 -0
  114. nuitka/nodes/AttributeNodesGenerated.py +21 -12
  115. nuitka/nodes/BuiltinOpenNodes.py +5 -0
  116. nuitka/nodes/BuiltinOperationNodeBasesGenerated.py +11 -11
  117. nuitka/nodes/BuiltinRefNodes.py +41 -1
  118. nuitka/nodes/ChildrenHavingMixins.py +143 -355
  119. nuitka/nodes/ClassNodes.py +30 -12
  120. nuitka/nodes/CodeObjectSpecs.py +9 -0
  121. nuitka/nodes/ExpressionBasesGenerated.py +11 -11
  122. nuitka/nodes/FunctionNodes.py +7 -11
  123. nuitka/nodes/FutureSpecs.py +16 -3
  124. nuitka/nodes/GeneratorNodes.py +2 -2
  125. nuitka/nodes/HardImportNodesGenerated.py +11 -134
  126. nuitka/nodes/LocalsScopes.py +19 -23
  127. nuitka/nodes/MatchNodes.py +18 -7
  128. nuitka/nodes/ModuleAttributeNodes.py +1 -20
  129. nuitka/nodes/ModuleNodes.py +23 -6
  130. nuitka/nodes/NodeBases.py +3 -2
  131. nuitka/nodes/NodeMetaClasses.py +26 -10
  132. nuitka/nodes/ReturnNodes.py +1 -1
  133. nuitka/nodes/StatementBasesGenerated.py +11 -11
  134. nuitka/nodes/SubscriptNodes.py +4 -4
  135. nuitka/nodes/VariableAssignNodes.py +1 -1
  136. nuitka/nodes/VariableRefNodes.py +28 -2
  137. nuitka/optimizations/FunctionInlining.py +3 -6
  138. nuitka/optimizations/Optimization.py +13 -12
  139. nuitka/optimizations/TraceCollections.py +19 -4
  140. nuitka/plugins/PluginBase.py +121 -133
  141. nuitka/plugins/Plugins.py +91 -3
  142. nuitka/plugins/YamlPluginBase.py +121 -0
  143. nuitka/plugins/standard/AntiBloatPlugin.py +87 -28
  144. nuitka/plugins/standard/DataFilesPlugin.py +15 -6
  145. nuitka/plugins/standard/DelvewheelPlugin.py +7 -3
  146. nuitka/plugins/standard/DllFilesPlugin.py +5 -3
  147. nuitka/plugins/standard/ImplicitImports.py +34 -20
  148. nuitka/plugins/standard/MatplotlibPlugin.py +3 -1
  149. nuitka/plugins/standard/MultiprocessingPlugin.py +2 -2
  150. nuitka/plugins/standard/OptionsNannyPlugin.py +1 -1
  151. nuitka/plugins/standard/PySidePyQtPlugin.py +11 -12
  152. nuitka/plugins/standard/SpacyPlugin.py +136 -0
  153. nuitka/plugins/standard/standard.nuitka-package.config.yml +462 -179
  154. nuitka/plugins/standard/stdlib3.nuitka-package.config.yml +6 -0
  155. nuitka/reports/Reports.py +53 -5
  156. nuitka/specs/BuiltinParameterSpecs.py +1 -1
  157. nuitka/specs/HardImportSpecs.py +0 -6
  158. nuitka/tools/data_composer/DataComposer.py +29 -27
  159. nuitka/tools/environments/CreateEnvironment.py +1 -0
  160. nuitka/tools/environments/Virtualenv.py +25 -11
  161. nuitka/tools/general/find_module/FindModuleCode.py +13 -3
  162. nuitka/tools/onefile_compressor/OnefileCompressor.py +21 -4
  163. nuitka/tools/scanning/DisplayPackageDLLs.py +17 -3
  164. nuitka/tools/specialize/CTypeDescriptions.py +13 -7
  165. nuitka/tools/specialize/SpecializePython.py +18 -1
  166. nuitka/tools/testing/Common.py +19 -6
  167. nuitka/tools/testing/check_reference_counts/__main__.py +1 -1
  168. nuitka/tools/testing/run_nuitka_tests/__main__.py +0 -20
  169. nuitka/tools/watch/AutoStage.py +144 -0
  170. nuitka/tools/watch/__main__.py +79 -32
  171. nuitka/tree/Building.py +105 -104
  172. nuitka/tree/ComplexCallHelperFunctions.py +16 -26
  173. nuitka/tree/InternalModule.py +8 -0
  174. nuitka/tree/ReformulationAssignmentStatements.py +29 -59
  175. nuitka/tree/ReformulationClasses.py +10 -17
  176. nuitka/tree/ReformulationClasses3.py +69 -43
  177. nuitka/tree/ReformulationComparisonExpressions.py +6 -16
  178. nuitka/tree/ReformulationContractionExpressions.py +14 -23
  179. nuitka/tree/ReformulationDictionaryCreation.py +6 -10
  180. nuitka/tree/ReformulationExecStatements.py +10 -10
  181. nuitka/tree/ReformulationForLoopStatements.py +6 -12
  182. nuitka/tree/ReformulationFunctionStatements.py +21 -28
  183. nuitka/tree/ReformulationImportStatements.py +8 -10
  184. nuitka/tree/ReformulationLambdaExpressions.py +3 -6
  185. nuitka/tree/ReformulationMatchStatements.py +166 -60
  186. nuitka/tree/ReformulationMultidist.py +3 -1
  187. nuitka/tree/ReformulationNamespacePackages.py +1 -1
  188. nuitka/tree/ReformulationPrintStatements.py +3 -6
  189. nuitka/tree/ReformulationSequenceCreation.py +13 -26
  190. nuitka/tree/ReformulationTryFinallyStatements.py +15 -0
  191. nuitka/tree/ReformulationWithStatements.py +12 -16
  192. nuitka/tree/SourceHandling.py +13 -8
  193. nuitka/tree/VariableClosure.py +5 -21
  194. nuitka/utils/Distributions.py +80 -11
  195. nuitka/utils/Download.py +38 -31
  196. nuitka/utils/Execution.py +13 -2
  197. nuitka/utils/FileOperations.py +55 -28
  198. nuitka/utils/Images.py +6 -1
  199. nuitka/utils/Importing.py +1 -1
  200. nuitka/utils/ModuleNames.py +11 -5
  201. nuitka/utils/ReExecute.py +17 -13
  202. nuitka/utils/SharedLibraries.py +32 -8
  203. nuitka/utils/Signing.py +3 -1
  204. nuitka/utils/StaticLibraries.py +51 -41
  205. nuitka/utils/Timing.py +1 -1
  206. nuitka/utils/Utils.py +29 -7
  207. /Nuitka_winsvc-2.3.11.data/scripts/nuitka.bat → /Nuitka_winsvc-2.4.1.data/scripts/nuitka.cmd +0 -0
  208. {Nuitka_winsvc-2.3.11.dist-info → Nuitka_winsvc-2.4.1.dist-info}/LICENSE.txt +0 -0
  209. {Nuitka_winsvc-2.3.11.dist-info → Nuitka_winsvc-2.4.1.dist-info}/entry_points.txt +0 -0
  210. {Nuitka_winsvc-2.3.11.dist-info → Nuitka_winsvc-2.4.1.dist-info}/top_level.txt +0 -0
@@ -71,7 +71,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
71
71
  // If the types are equal, we may get away immediately except for instances.
72
72
  if (type1 == type2 && !PyInstance_Check(operand1)) {
73
73
 
74
- richcmpfunc frich = RICHCOMPARE(type1);
74
+ richcmpfunc frich = TP_RICHCOMPARE(type1);
75
75
 
76
76
  if (frich != NULL) {
77
77
  PyObject *result = (*frich)(operand1, operand2, Py_GT);
@@ -132,7 +132,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
132
132
  richcmpfunc f;
133
133
 
134
134
  if (type1 != type2 && Nuitka_Type_IsSubtype(type2, type1)) {
135
- f = RICHCOMPARE(type2);
135
+ f = TP_RICHCOMPARE(type2);
136
136
 
137
137
  if (f != NULL) {
138
138
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -147,7 +147,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
147
147
  }
148
148
  }
149
149
 
150
- f = RICHCOMPARE(type1);
150
+ f = TP_RICHCOMPARE(type1);
151
151
  if (f != NULL) {
152
152
  PyObject *result = (*f)(operand1, operand2, Py_GT);
153
153
 
@@ -160,7 +160,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
160
160
  Py_DECREF_IMMORTAL(result);
161
161
  }
162
162
 
163
- f = RICHCOMPARE(type2);
163
+ f = TP_RICHCOMPARE(type2);
164
164
  if (f != NULL) {
165
165
  PyObject *result = (*f)(operand2, operand1, Py_LT);
166
166
 
@@ -265,7 +265,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
265
265
  richcmpfunc f;
266
266
 
267
267
  if (type1 != type2 && Nuitka_Type_IsSubtype(type2, type1)) {
268
- f = RICHCOMPARE(type2);
268
+ f = TP_RICHCOMPARE(type2);
269
269
 
270
270
  if (f != NULL) {
271
271
  checked_reverse_op = true;
@@ -282,7 +282,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
282
282
  }
283
283
  }
284
284
 
285
- f = RICHCOMPARE(type1);
285
+ f = TP_RICHCOMPARE(type1);
286
286
 
287
287
  if (f != NULL) {
288
288
  PyObject *result = (*f)(operand1, operand2, Py_GT);
@@ -297,7 +297,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
297
297
  }
298
298
 
299
299
  if (checked_reverse_op == false) {
300
- f = RICHCOMPARE(type2);
300
+ f = TP_RICHCOMPARE(type2);
301
301
 
302
302
  if (f != NULL) {
303
303
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -367,7 +367,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
367
367
  // If the types are equal, we may get away immediately except for instances.
368
368
  if (type1 == type2 && !PyInstance_Check(operand1)) {
369
369
 
370
- richcmpfunc frich = RICHCOMPARE(type1);
370
+ richcmpfunc frich = TP_RICHCOMPARE(type1);
371
371
 
372
372
  if (frich != NULL) {
373
373
  PyObject *result = (*frich)(operand1, operand2, Py_GT);
@@ -436,7 +436,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
436
436
  richcmpfunc f;
437
437
 
438
438
  if (type1 != type2 && Nuitka_Type_IsSubtype(type2, type1)) {
439
- f = RICHCOMPARE(type2);
439
+ f = TP_RICHCOMPARE(type2);
440
440
 
441
441
  if (f != NULL) {
442
442
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -459,7 +459,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
459
459
  }
460
460
  }
461
461
 
462
- f = RICHCOMPARE(type1);
462
+ f = TP_RICHCOMPARE(type1);
463
463
  if (f != NULL) {
464
464
  PyObject *result = (*f)(operand1, operand2, Py_GT);
465
465
 
@@ -480,7 +480,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
480
480
  Py_DECREF_IMMORTAL(result);
481
481
  }
482
482
 
483
- f = RICHCOMPARE(type2);
483
+ f = TP_RICHCOMPARE(type2);
484
484
  if (f != NULL) {
485
485
  PyObject *result = (*f)(operand2, operand1, Py_LT);
486
486
 
@@ -593,7 +593,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
593
593
  richcmpfunc f;
594
594
 
595
595
  if (type1 != type2 && Nuitka_Type_IsSubtype(type2, type1)) {
596
- f = RICHCOMPARE(type2);
596
+ f = TP_RICHCOMPARE(type2);
597
597
 
598
598
  if (f != NULL) {
599
599
  checked_reverse_op = true;
@@ -618,7 +618,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
618
618
  }
619
619
  }
620
620
 
621
- f = RICHCOMPARE(type1);
621
+ f = TP_RICHCOMPARE(type1);
622
622
 
623
623
  if (f != NULL) {
624
624
  PyObject *result = (*f)(operand1, operand2, Py_GT);
@@ -641,7 +641,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
641
641
  }
642
642
 
643
643
  if (checked_reverse_op == false) {
644
- f = RICHCOMPARE(type2);
644
+ f = TP_RICHCOMPARE(type2);
645
645
 
646
646
  if (f != NULL) {
647
647
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -839,7 +839,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_OBJECT_STR(PyObject *operand1, PyObject *operan
839
839
  }
840
840
  }
841
841
 
842
- f = RICHCOMPARE(type1);
842
+ f = TP_RICHCOMPARE(type1);
843
843
  if (f != NULL) {
844
844
  PyObject *result = (*f)(operand1, operand2, Py_GT);
845
845
 
@@ -974,7 +974,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_OBJECT_STR(PyObject *operand1, PyObject *operan
974
974
  }
975
975
  }
976
976
 
977
- f = RICHCOMPARE(type1);
977
+ f = TP_RICHCOMPARE(type1);
978
978
 
979
979
  if (f != NULL) {
980
980
  PyObject *result = (*f)(operand1, operand2, Py_GT);
@@ -1118,7 +1118,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_STR_OBJECT(PyObject *operand1, PyObject *operan
1118
1118
  richcmpfunc f;
1119
1119
 
1120
1120
  if (&PyString_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyString_Type)) {
1121
- f = RICHCOMPARE(type2);
1121
+ f = TP_RICHCOMPARE(type2);
1122
1122
 
1123
1123
  if (f != NULL) {
1124
1124
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -1146,7 +1146,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_STR_OBJECT(PyObject *operand1, PyObject *operan
1146
1146
  Py_DECREF_IMMORTAL(result);
1147
1147
  }
1148
1148
 
1149
- f = RICHCOMPARE(type2);
1149
+ f = TP_RICHCOMPARE(type2);
1150
1150
  if (f != NULL) {
1151
1151
  PyObject *result = (*f)(operand2, operand1, Py_LT);
1152
1152
 
@@ -1251,7 +1251,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_STR_OBJECT(PyObject *operand1, PyObject *operan
1251
1251
  richcmpfunc f;
1252
1252
 
1253
1253
  if (&PyString_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyString_Type)) {
1254
- f = RICHCOMPARE(type2);
1254
+ f = TP_RICHCOMPARE(type2);
1255
1255
 
1256
1256
  if (f != NULL) {
1257
1257
  checked_reverse_op = true;
@@ -1283,7 +1283,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_STR_OBJECT(PyObject *operand1, PyObject *operan
1283
1283
  }
1284
1284
 
1285
1285
  if (checked_reverse_op == false) {
1286
- f = RICHCOMPARE(type2);
1286
+ f = TP_RICHCOMPARE(type2);
1287
1287
 
1288
1288
  if (f != NULL) {
1289
1289
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -1489,7 +1489,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_OBJECT_STR(PyObject *operand1, PyObject *opera
1489
1489
  }
1490
1490
  }
1491
1491
 
1492
- f = RICHCOMPARE(type1);
1492
+ f = TP_RICHCOMPARE(type1);
1493
1493
  if (f != NULL) {
1494
1494
  PyObject *result = (*f)(operand1, operand2, Py_GT);
1495
1495
 
@@ -1648,7 +1648,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_OBJECT_STR(PyObject *operand1, PyObject *opera
1648
1648
  }
1649
1649
  }
1650
1650
 
1651
- f = RICHCOMPARE(type1);
1651
+ f = TP_RICHCOMPARE(type1);
1652
1652
 
1653
1653
  if (f != NULL) {
1654
1654
  PyObject *result = (*f)(operand1, operand2, Py_GT);
@@ -1816,7 +1816,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_STR_OBJECT(PyObject *operand1, PyObject *opera
1816
1816
  richcmpfunc f;
1817
1817
 
1818
1818
  if (&PyString_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyString_Type)) {
1819
- f = RICHCOMPARE(type2);
1819
+ f = TP_RICHCOMPARE(type2);
1820
1820
 
1821
1821
  if (f != NULL) {
1822
1822
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -1860,7 +1860,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_STR_OBJECT(PyObject *operand1, PyObject *opera
1860
1860
  Py_DECREF_IMMORTAL(result);
1861
1861
  }
1862
1862
 
1863
- f = RICHCOMPARE(type2);
1863
+ f = TP_RICHCOMPARE(type2);
1864
1864
  if (f != NULL) {
1865
1865
  PyObject *result = (*f)(operand2, operand1, Py_LT);
1866
1866
 
@@ -1973,7 +1973,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_STR_OBJECT(PyObject *operand1, PyObject *opera
1973
1973
  richcmpfunc f;
1974
1974
 
1975
1975
  if (&PyString_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyString_Type)) {
1976
- f = RICHCOMPARE(type2);
1976
+ f = TP_RICHCOMPARE(type2);
1977
1977
 
1978
1978
  if (f != NULL) {
1979
1979
  checked_reverse_op = true;
@@ -2021,7 +2021,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_STR_OBJECT(PyObject *operand1, PyObject *opera
2021
2021
  }
2022
2022
 
2023
2023
  if (checked_reverse_op == false) {
2024
- f = RICHCOMPARE(type2);
2024
+ f = TP_RICHCOMPARE(type2);
2025
2025
 
2026
2026
  if (f != NULL) {
2027
2027
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -2196,7 +2196,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_OBJECT_UNICODE(PyObject *operand1, PyObject *op
2196
2196
  }
2197
2197
  }
2198
2198
 
2199
- f = RICHCOMPARE(type1);
2199
+ f = TP_RICHCOMPARE(type1);
2200
2200
  if (f != NULL) {
2201
2201
  PyObject *result = (*f)(operand1, operand2, Py_GT);
2202
2202
 
@@ -2331,7 +2331,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_OBJECT_UNICODE(PyObject *operand1, PyObject *op
2331
2331
  }
2332
2332
  }
2333
2333
 
2334
- f = RICHCOMPARE(type1);
2334
+ f = TP_RICHCOMPARE(type1);
2335
2335
 
2336
2336
  if (f != NULL) {
2337
2337
  PyObject *result = (*f)(operand1, operand2, Py_GT);
@@ -2475,7 +2475,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_UNICODE_OBJECT(PyObject *operand1, PyObject *op
2475
2475
  richcmpfunc f;
2476
2476
 
2477
2477
  if (&PyUnicode_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyUnicode_Type)) {
2478
- f = RICHCOMPARE(type2);
2478
+ f = TP_RICHCOMPARE(type2);
2479
2479
 
2480
2480
  if (f != NULL) {
2481
2481
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -2503,7 +2503,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_UNICODE_OBJECT(PyObject *operand1, PyObject *op
2503
2503
  Py_DECREF_IMMORTAL(result);
2504
2504
  }
2505
2505
 
2506
- f = RICHCOMPARE(type2);
2506
+ f = TP_RICHCOMPARE(type2);
2507
2507
  if (f != NULL) {
2508
2508
  PyObject *result = (*f)(operand2, operand1, Py_LT);
2509
2509
 
@@ -2608,7 +2608,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_UNICODE_OBJECT(PyObject *operand1, PyObject *op
2608
2608
  richcmpfunc f;
2609
2609
 
2610
2610
  if (&PyUnicode_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyUnicode_Type)) {
2611
- f = RICHCOMPARE(type2);
2611
+ f = TP_RICHCOMPARE(type2);
2612
2612
 
2613
2613
  if (f != NULL) {
2614
2614
  checked_reverse_op = true;
@@ -2640,7 +2640,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_UNICODE_OBJECT(PyObject *operand1, PyObject *op
2640
2640
  }
2641
2641
 
2642
2642
  if (checked_reverse_op == false) {
2643
- f = RICHCOMPARE(type2);
2643
+ f = TP_RICHCOMPARE(type2);
2644
2644
 
2645
2645
  if (f != NULL) {
2646
2646
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -2828,7 +2828,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_OBJECT_UNICODE(PyObject *operand1, PyObject *o
2828
2828
  }
2829
2829
  }
2830
2830
 
2831
- f = RICHCOMPARE(type1);
2831
+ f = TP_RICHCOMPARE(type1);
2832
2832
  if (f != NULL) {
2833
2833
  PyObject *result = (*f)(operand1, operand2, Py_GT);
2834
2834
 
@@ -2987,7 +2987,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_OBJECT_UNICODE(PyObject *operand1, PyObject *o
2987
2987
  }
2988
2988
  }
2989
2989
 
2990
- f = RICHCOMPARE(type1);
2990
+ f = TP_RICHCOMPARE(type1);
2991
2991
 
2992
2992
  if (f != NULL) {
2993
2993
  PyObject *result = (*f)(operand1, operand2, Py_GT);
@@ -3155,7 +3155,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_UNICODE_OBJECT(PyObject *operand1, PyObject *o
3155
3155
  richcmpfunc f;
3156
3156
 
3157
3157
  if (&PyUnicode_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyUnicode_Type)) {
3158
- f = RICHCOMPARE(type2);
3158
+ f = TP_RICHCOMPARE(type2);
3159
3159
 
3160
3160
  if (f != NULL) {
3161
3161
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -3199,7 +3199,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_UNICODE_OBJECT(PyObject *operand1, PyObject *o
3199
3199
  Py_DECREF_IMMORTAL(result);
3200
3200
  }
3201
3201
 
3202
- f = RICHCOMPARE(type2);
3202
+ f = TP_RICHCOMPARE(type2);
3203
3203
  if (f != NULL) {
3204
3204
  PyObject *result = (*f)(operand2, operand1, Py_LT);
3205
3205
 
@@ -3312,7 +3312,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_UNICODE_OBJECT(PyObject *operand1, PyObject *o
3312
3312
  richcmpfunc f;
3313
3313
 
3314
3314
  if (&PyUnicode_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyUnicode_Type)) {
3315
- f = RICHCOMPARE(type2);
3315
+ f = TP_RICHCOMPARE(type2);
3316
3316
 
3317
3317
  if (f != NULL) {
3318
3318
  checked_reverse_op = true;
@@ -3360,7 +3360,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_UNICODE_OBJECT(PyObject *operand1, PyObject *o
3360
3360
  }
3361
3361
 
3362
3362
  if (checked_reverse_op == false) {
3363
- f = RICHCOMPARE(type2);
3363
+ f = TP_RICHCOMPARE(type2);
3364
3364
 
3365
3365
  if (f != NULL) {
3366
3366
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -3559,7 +3559,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_OBJECT_BYTES(PyObject *operand1, PyObject *oper
3559
3559
  }
3560
3560
  }
3561
3561
 
3562
- f = RICHCOMPARE(type1);
3562
+ f = TP_RICHCOMPARE(type1);
3563
3563
  if (f != NULL) {
3564
3564
  PyObject *result = (*f)(operand1, operand2, Py_GT);
3565
3565
 
@@ -3694,7 +3694,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_OBJECT_BYTES(PyObject *operand1, PyObject *oper
3694
3694
  }
3695
3695
  }
3696
3696
 
3697
- f = RICHCOMPARE(type1);
3697
+ f = TP_RICHCOMPARE(type1);
3698
3698
 
3699
3699
  if (f != NULL) {
3700
3700
  PyObject *result = (*f)(operand1, operand2, Py_GT);
@@ -3838,7 +3838,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_BYTES_OBJECT(PyObject *operand1, PyObject *oper
3838
3838
  richcmpfunc f;
3839
3839
 
3840
3840
  if (&PyBytes_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyBytes_Type)) {
3841
- f = RICHCOMPARE(type2);
3841
+ f = TP_RICHCOMPARE(type2);
3842
3842
 
3843
3843
  if (f != NULL) {
3844
3844
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -3866,7 +3866,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_BYTES_OBJECT(PyObject *operand1, PyObject *oper
3866
3866
  Py_DECREF_IMMORTAL(result);
3867
3867
  }
3868
3868
 
3869
- f = RICHCOMPARE(type2);
3869
+ f = TP_RICHCOMPARE(type2);
3870
3870
  if (f != NULL) {
3871
3871
  PyObject *result = (*f)(operand2, operand1, Py_LT);
3872
3872
 
@@ -3971,7 +3971,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_BYTES_OBJECT(PyObject *operand1, PyObject *oper
3971
3971
  richcmpfunc f;
3972
3972
 
3973
3973
  if (&PyBytes_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyBytes_Type)) {
3974
- f = RICHCOMPARE(type2);
3974
+ f = TP_RICHCOMPARE(type2);
3975
3975
 
3976
3976
  if (f != NULL) {
3977
3977
  checked_reverse_op = true;
@@ -4003,7 +4003,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_BYTES_OBJECT(PyObject *operand1, PyObject *oper
4003
4003
  }
4004
4004
 
4005
4005
  if (checked_reverse_op == false) {
4006
- f = RICHCOMPARE(type2);
4006
+ f = TP_RICHCOMPARE(type2);
4007
4007
 
4008
4008
  if (f != NULL) {
4009
4009
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -4209,7 +4209,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_OBJECT_BYTES(PyObject *operand1, PyObject *ope
4209
4209
  }
4210
4210
  }
4211
4211
 
4212
- f = RICHCOMPARE(type1);
4212
+ f = TP_RICHCOMPARE(type1);
4213
4213
  if (f != NULL) {
4214
4214
  PyObject *result = (*f)(operand1, operand2, Py_GT);
4215
4215
 
@@ -4368,7 +4368,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_OBJECT_BYTES(PyObject *operand1, PyObject *ope
4368
4368
  }
4369
4369
  }
4370
4370
 
4371
- f = RICHCOMPARE(type1);
4371
+ f = TP_RICHCOMPARE(type1);
4372
4372
 
4373
4373
  if (f != NULL) {
4374
4374
  PyObject *result = (*f)(operand1, operand2, Py_GT);
@@ -4536,7 +4536,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_BYTES_OBJECT(PyObject *operand1, PyObject *ope
4536
4536
  richcmpfunc f;
4537
4537
 
4538
4538
  if (&PyBytes_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyBytes_Type)) {
4539
- f = RICHCOMPARE(type2);
4539
+ f = TP_RICHCOMPARE(type2);
4540
4540
 
4541
4541
  if (f != NULL) {
4542
4542
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -4580,7 +4580,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_BYTES_OBJECT(PyObject *operand1, PyObject *ope
4580
4580
  Py_DECREF_IMMORTAL(result);
4581
4581
  }
4582
4582
 
4583
- f = RICHCOMPARE(type2);
4583
+ f = TP_RICHCOMPARE(type2);
4584
4584
  if (f != NULL) {
4585
4585
  PyObject *result = (*f)(operand2, operand1, Py_LT);
4586
4586
 
@@ -4693,7 +4693,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_BYTES_OBJECT(PyObject *operand1, PyObject *ope
4693
4693
  richcmpfunc f;
4694
4694
 
4695
4695
  if (&PyBytes_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyBytes_Type)) {
4696
- f = RICHCOMPARE(type2);
4696
+ f = TP_RICHCOMPARE(type2);
4697
4697
 
4698
4698
  if (f != NULL) {
4699
4699
  checked_reverse_op = true;
@@ -4741,7 +4741,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_BYTES_OBJECT(PyObject *operand1, PyObject *ope
4741
4741
  }
4742
4742
 
4743
4743
  if (checked_reverse_op == false) {
4744
- f = RICHCOMPARE(type2);
4744
+ f = TP_RICHCOMPARE(type2);
4745
4745
 
4746
4746
  if (f != NULL) {
4747
4747
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -4893,7 +4893,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_OBJECT_INT(PyObject *operand1, PyObject *operan
4893
4893
  }
4894
4894
  }
4895
4895
 
4896
- f = RICHCOMPARE(type1);
4896
+ f = TP_RICHCOMPARE(type1);
4897
4897
  if (f != NULL) {
4898
4898
  PyObject *result = (*f)(operand1, operand2, Py_GT);
4899
4899
 
@@ -5028,7 +5028,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_OBJECT_INT(PyObject *operand1, PyObject *operan
5028
5028
  }
5029
5029
  }
5030
5030
 
5031
- f = RICHCOMPARE(type1);
5031
+ f = TP_RICHCOMPARE(type1);
5032
5032
 
5033
5033
  if (f != NULL) {
5034
5034
  PyObject *result = (*f)(operand1, operand2, Py_GT);
@@ -5172,7 +5172,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_INT_OBJECT(PyObject *operand1, PyObject *operan
5172
5172
  richcmpfunc f;
5173
5173
 
5174
5174
  if (&PyInt_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyInt_Type)) {
5175
- f = RICHCOMPARE(type2);
5175
+ f = TP_RICHCOMPARE(type2);
5176
5176
 
5177
5177
  if (f != NULL) {
5178
5178
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -5200,7 +5200,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_INT_OBJECT(PyObject *operand1, PyObject *operan
5200
5200
  Py_DECREF_IMMORTAL(result);
5201
5201
  }
5202
5202
 
5203
- f = RICHCOMPARE(type2);
5203
+ f = TP_RICHCOMPARE(type2);
5204
5204
  if (f != NULL) {
5205
5205
  PyObject *result = (*f)(operand2, operand1, Py_LT);
5206
5206
 
@@ -5305,7 +5305,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_INT_OBJECT(PyObject *operand1, PyObject *operan
5305
5305
  richcmpfunc f;
5306
5306
 
5307
5307
  if (&PyInt_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyInt_Type)) {
5308
- f = RICHCOMPARE(type2);
5308
+ f = TP_RICHCOMPARE(type2);
5309
5309
 
5310
5310
  if (f != NULL) {
5311
5311
  checked_reverse_op = true;
@@ -5337,7 +5337,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_INT_OBJECT(PyObject *operand1, PyObject *operan
5337
5337
  }
5338
5338
 
5339
5339
  if (checked_reverse_op == false) {
5340
- f = RICHCOMPARE(type2);
5340
+ f = TP_RICHCOMPARE(type2);
5341
5341
 
5342
5342
  if (f != NULL) {
5343
5343
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -5497,7 +5497,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_OBJECT_INT(PyObject *operand1, PyObject *opera
5497
5497
  }
5498
5498
  }
5499
5499
 
5500
- f = RICHCOMPARE(type1);
5500
+ f = TP_RICHCOMPARE(type1);
5501
5501
  if (f != NULL) {
5502
5502
  PyObject *result = (*f)(operand1, operand2, Py_GT);
5503
5503
 
@@ -5656,7 +5656,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_OBJECT_INT(PyObject *operand1, PyObject *opera
5656
5656
  }
5657
5657
  }
5658
5658
 
5659
- f = RICHCOMPARE(type1);
5659
+ f = TP_RICHCOMPARE(type1);
5660
5660
 
5661
5661
  if (f != NULL) {
5662
5662
  PyObject *result = (*f)(operand1, operand2, Py_GT);
@@ -5824,7 +5824,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_INT_OBJECT(PyObject *operand1, PyObject *opera
5824
5824
  richcmpfunc f;
5825
5825
 
5826
5826
  if (&PyInt_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyInt_Type)) {
5827
- f = RICHCOMPARE(type2);
5827
+ f = TP_RICHCOMPARE(type2);
5828
5828
 
5829
5829
  if (f != NULL) {
5830
5830
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -5868,7 +5868,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_INT_OBJECT(PyObject *operand1, PyObject *opera
5868
5868
  Py_DECREF_IMMORTAL(result);
5869
5869
  }
5870
5870
 
5871
- f = RICHCOMPARE(type2);
5871
+ f = TP_RICHCOMPARE(type2);
5872
5872
  if (f != NULL) {
5873
5873
  PyObject *result = (*f)(operand2, operand1, Py_LT);
5874
5874
 
@@ -5981,7 +5981,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_INT_OBJECT(PyObject *operand1, PyObject *opera
5981
5981
  richcmpfunc f;
5982
5982
 
5983
5983
  if (&PyInt_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyInt_Type)) {
5984
- f = RICHCOMPARE(type2);
5984
+ f = TP_RICHCOMPARE(type2);
5985
5985
 
5986
5986
  if (f != NULL) {
5987
5987
  checked_reverse_op = true;
@@ -6029,7 +6029,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_INT_OBJECT(PyObject *operand1, PyObject *opera
6029
6029
  }
6030
6030
 
6031
6031
  if (checked_reverse_op == false) {
6032
- f = RICHCOMPARE(type2);
6032
+ f = TP_RICHCOMPARE(type2);
6033
6033
 
6034
6034
  if (f != NULL) {
6035
6035
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -6219,7 +6219,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_OBJECT_LONG(PyObject *operand1, PyObject *opera
6219
6219
  }
6220
6220
  }
6221
6221
 
6222
- f = RICHCOMPARE(type1);
6222
+ f = TP_RICHCOMPARE(type1);
6223
6223
  if (f != NULL) {
6224
6224
  PyObject *result = (*f)(operand1, operand2, Py_GT);
6225
6225
 
@@ -6354,7 +6354,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_OBJECT_LONG(PyObject *operand1, PyObject *opera
6354
6354
  }
6355
6355
  }
6356
6356
 
6357
- f = RICHCOMPARE(type1);
6357
+ f = TP_RICHCOMPARE(type1);
6358
6358
 
6359
6359
  if (f != NULL) {
6360
6360
  PyObject *result = (*f)(operand1, operand2, Py_GT);
@@ -6498,7 +6498,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_LONG_OBJECT(PyObject *operand1, PyObject *opera
6498
6498
  richcmpfunc f;
6499
6499
 
6500
6500
  if (&PyLong_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyLong_Type)) {
6501
- f = RICHCOMPARE(type2);
6501
+ f = TP_RICHCOMPARE(type2);
6502
6502
 
6503
6503
  if (f != NULL) {
6504
6504
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -6526,7 +6526,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_LONG_OBJECT(PyObject *operand1, PyObject *opera
6526
6526
  Py_DECREF_IMMORTAL(result);
6527
6527
  }
6528
6528
 
6529
- f = RICHCOMPARE(type2);
6529
+ f = TP_RICHCOMPARE(type2);
6530
6530
  if (f != NULL) {
6531
6531
  PyObject *result = (*f)(operand2, operand1, Py_LT);
6532
6532
 
@@ -6631,7 +6631,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_LONG_OBJECT(PyObject *operand1, PyObject *opera
6631
6631
  richcmpfunc f;
6632
6632
 
6633
6633
  if (&PyLong_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyLong_Type)) {
6634
- f = RICHCOMPARE(type2);
6634
+ f = TP_RICHCOMPARE(type2);
6635
6635
 
6636
6636
  if (f != NULL) {
6637
6637
  checked_reverse_op = true;
@@ -6663,7 +6663,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_LONG_OBJECT(PyObject *operand1, PyObject *opera
6663
6663
  }
6664
6664
 
6665
6665
  if (checked_reverse_op == false) {
6666
- f = RICHCOMPARE(type2);
6666
+ f = TP_RICHCOMPARE(type2);
6667
6667
 
6668
6668
  if (f != NULL) {
6669
6669
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -6862,7 +6862,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_OBJECT_LONG(PyObject *operand1, PyObject *oper
6862
6862
  }
6863
6863
  }
6864
6864
 
6865
- f = RICHCOMPARE(type1);
6865
+ f = TP_RICHCOMPARE(type1);
6866
6866
  if (f != NULL) {
6867
6867
  PyObject *result = (*f)(operand1, operand2, Py_GT);
6868
6868
 
@@ -7021,7 +7021,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_OBJECT_LONG(PyObject *operand1, PyObject *oper
7021
7021
  }
7022
7022
  }
7023
7023
 
7024
- f = RICHCOMPARE(type1);
7024
+ f = TP_RICHCOMPARE(type1);
7025
7025
 
7026
7026
  if (f != NULL) {
7027
7027
  PyObject *result = (*f)(operand1, operand2, Py_GT);
@@ -7189,7 +7189,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_LONG_OBJECT(PyObject *operand1, PyObject *oper
7189
7189
  richcmpfunc f;
7190
7190
 
7191
7191
  if (&PyLong_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyLong_Type)) {
7192
- f = RICHCOMPARE(type2);
7192
+ f = TP_RICHCOMPARE(type2);
7193
7193
 
7194
7194
  if (f != NULL) {
7195
7195
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -7233,7 +7233,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_LONG_OBJECT(PyObject *operand1, PyObject *oper
7233
7233
  Py_DECREF_IMMORTAL(result);
7234
7234
  }
7235
7235
 
7236
- f = RICHCOMPARE(type2);
7236
+ f = TP_RICHCOMPARE(type2);
7237
7237
  if (f != NULL) {
7238
7238
  PyObject *result = (*f)(operand2, operand1, Py_LT);
7239
7239
 
@@ -7346,7 +7346,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_LONG_OBJECT(PyObject *operand1, PyObject *oper
7346
7346
  richcmpfunc f;
7347
7347
 
7348
7348
  if (&PyLong_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyLong_Type)) {
7349
- f = RICHCOMPARE(type2);
7349
+ f = TP_RICHCOMPARE(type2);
7350
7350
 
7351
7351
  if (f != NULL) {
7352
7352
  checked_reverse_op = true;
@@ -7394,7 +7394,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_LONG_OBJECT(PyObject *operand1, PyObject *oper
7394
7394
  }
7395
7395
 
7396
7396
  if (checked_reverse_op == false) {
7397
- f = RICHCOMPARE(type2);
7397
+ f = TP_RICHCOMPARE(type2);
7398
7398
 
7399
7399
  if (f != NULL) {
7400
7400
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -7562,7 +7562,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_OBJECT_FLOAT(PyObject *operand1, PyObject *oper
7562
7562
  }
7563
7563
  }
7564
7564
 
7565
- f = RICHCOMPARE(type1);
7565
+ f = TP_RICHCOMPARE(type1);
7566
7566
  if (f != NULL) {
7567
7567
  PyObject *result = (*f)(operand1, operand2, Py_GT);
7568
7568
 
@@ -7697,7 +7697,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_OBJECT_FLOAT(PyObject *operand1, PyObject *oper
7697
7697
  }
7698
7698
  }
7699
7699
 
7700
- f = RICHCOMPARE(type1);
7700
+ f = TP_RICHCOMPARE(type1);
7701
7701
 
7702
7702
  if (f != NULL) {
7703
7703
  PyObject *result = (*f)(operand1, operand2, Py_GT);
@@ -7839,7 +7839,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_FLOAT_OBJECT(PyObject *operand1, PyObject *oper
7839
7839
  richcmpfunc f;
7840
7840
 
7841
7841
  if (&PyFloat_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyFloat_Type)) {
7842
- f = RICHCOMPARE(type2);
7842
+ f = TP_RICHCOMPARE(type2);
7843
7843
 
7844
7844
  if (f != NULL) {
7845
7845
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -7867,7 +7867,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_FLOAT_OBJECT(PyObject *operand1, PyObject *oper
7867
7867
  Py_DECREF_IMMORTAL(result);
7868
7868
  }
7869
7869
 
7870
- f = RICHCOMPARE(type2);
7870
+ f = TP_RICHCOMPARE(type2);
7871
7871
  if (f != NULL) {
7872
7872
  PyObject *result = (*f)(operand2, operand1, Py_LT);
7873
7873
 
@@ -7972,7 +7972,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_FLOAT_OBJECT(PyObject *operand1, PyObject *oper
7972
7972
  richcmpfunc f;
7973
7973
 
7974
7974
  if (&PyFloat_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyFloat_Type)) {
7975
- f = RICHCOMPARE(type2);
7975
+ f = TP_RICHCOMPARE(type2);
7976
7976
 
7977
7977
  if (f != NULL) {
7978
7978
  checked_reverse_op = true;
@@ -8004,7 +8004,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_FLOAT_OBJECT(PyObject *operand1, PyObject *oper
8004
8004
  }
8005
8005
 
8006
8006
  if (checked_reverse_op == false) {
8007
- f = RICHCOMPARE(type2);
8007
+ f = TP_RICHCOMPARE(type2);
8008
8008
 
8009
8009
  if (f != NULL) {
8010
8010
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -8178,7 +8178,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_OBJECT_FLOAT(PyObject *operand1, PyObject *ope
8178
8178
  }
8179
8179
  }
8180
8180
 
8181
- f = RICHCOMPARE(type1);
8181
+ f = TP_RICHCOMPARE(type1);
8182
8182
  if (f != NULL) {
8183
8183
  PyObject *result = (*f)(operand1, operand2, Py_GT);
8184
8184
 
@@ -8337,7 +8337,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_OBJECT_FLOAT(PyObject *operand1, PyObject *ope
8337
8337
  }
8338
8338
  }
8339
8339
 
8340
- f = RICHCOMPARE(type1);
8340
+ f = TP_RICHCOMPARE(type1);
8341
8341
 
8342
8342
  if (f != NULL) {
8343
8343
  PyObject *result = (*f)(operand1, operand2, Py_GT);
@@ -8503,7 +8503,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_FLOAT_OBJECT(PyObject *operand1, PyObject *ope
8503
8503
  richcmpfunc f;
8504
8504
 
8505
8505
  if (&PyFloat_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyFloat_Type)) {
8506
- f = RICHCOMPARE(type2);
8506
+ f = TP_RICHCOMPARE(type2);
8507
8507
 
8508
8508
  if (f != NULL) {
8509
8509
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -8547,7 +8547,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_FLOAT_OBJECT(PyObject *operand1, PyObject *ope
8547
8547
  Py_DECREF_IMMORTAL(result);
8548
8548
  }
8549
8549
 
8550
- f = RICHCOMPARE(type2);
8550
+ f = TP_RICHCOMPARE(type2);
8551
8551
  if (f != NULL) {
8552
8552
  PyObject *result = (*f)(operand2, operand1, Py_LT);
8553
8553
 
@@ -8660,7 +8660,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_FLOAT_OBJECT(PyObject *operand1, PyObject *ope
8660
8660
  richcmpfunc f;
8661
8661
 
8662
8662
  if (&PyFloat_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyFloat_Type)) {
8663
- f = RICHCOMPARE(type2);
8663
+ f = TP_RICHCOMPARE(type2);
8664
8664
 
8665
8665
  if (f != NULL) {
8666
8666
  checked_reverse_op = true;
@@ -8708,7 +8708,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_FLOAT_OBJECT(PyObject *operand1, PyObject *ope
8708
8708
  }
8709
8709
 
8710
8710
  if (checked_reverse_op == false) {
8711
- f = RICHCOMPARE(type2);
8711
+ f = TP_RICHCOMPARE(type2);
8712
8712
 
8713
8713
  if (f != NULL) {
8714
8714
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -8905,7 +8905,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_OBJECT_TUPLE(PyObject *operand1, PyObject *oper
8905
8905
  }
8906
8906
  }
8907
8907
 
8908
- f = RICHCOMPARE(type1);
8908
+ f = TP_RICHCOMPARE(type1);
8909
8909
  if (f != NULL) {
8910
8910
  PyObject *result = (*f)(operand1, operand2, Py_GT);
8911
8911
 
@@ -9040,7 +9040,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_OBJECT_TUPLE(PyObject *operand1, PyObject *oper
9040
9040
  }
9041
9041
  }
9042
9042
 
9043
- f = RICHCOMPARE(type1);
9043
+ f = TP_RICHCOMPARE(type1);
9044
9044
 
9045
9045
  if (f != NULL) {
9046
9046
  PyObject *result = (*f)(operand1, operand2, Py_GT);
@@ -9182,7 +9182,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_TUPLE_OBJECT(PyObject *operand1, PyObject *oper
9182
9182
  richcmpfunc f;
9183
9183
 
9184
9184
  if (&PyTuple_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyTuple_Type)) {
9185
- f = RICHCOMPARE(type2);
9185
+ f = TP_RICHCOMPARE(type2);
9186
9186
 
9187
9187
  if (f != NULL) {
9188
9188
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -9210,7 +9210,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_TUPLE_OBJECT(PyObject *operand1, PyObject *oper
9210
9210
  Py_DECREF_IMMORTAL(result);
9211
9211
  }
9212
9212
 
9213
- f = RICHCOMPARE(type2);
9213
+ f = TP_RICHCOMPARE(type2);
9214
9214
  if (f != NULL) {
9215
9215
  PyObject *result = (*f)(operand2, operand1, Py_LT);
9216
9216
 
@@ -9315,7 +9315,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_TUPLE_OBJECT(PyObject *operand1, PyObject *oper
9315
9315
  richcmpfunc f;
9316
9316
 
9317
9317
  if (&PyTuple_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyTuple_Type)) {
9318
- f = RICHCOMPARE(type2);
9318
+ f = TP_RICHCOMPARE(type2);
9319
9319
 
9320
9320
  if (f != NULL) {
9321
9321
  checked_reverse_op = true;
@@ -9347,7 +9347,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_TUPLE_OBJECT(PyObject *operand1, PyObject *oper
9347
9347
  }
9348
9348
 
9349
9349
  if (checked_reverse_op == false) {
9350
- f = RICHCOMPARE(type2);
9350
+ f = TP_RICHCOMPARE(type2);
9351
9351
 
9352
9352
  if (f != NULL) {
9353
9353
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -9558,7 +9558,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_OBJECT_TUPLE(PyObject *operand1, PyObject *ope
9558
9558
  }
9559
9559
  }
9560
9560
 
9561
- f = RICHCOMPARE(type1);
9561
+ f = TP_RICHCOMPARE(type1);
9562
9562
  if (f != NULL) {
9563
9563
  PyObject *result = (*f)(operand1, operand2, Py_GT);
9564
9564
 
@@ -9717,7 +9717,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_OBJECT_TUPLE(PyObject *operand1, PyObject *ope
9717
9717
  }
9718
9718
  }
9719
9719
 
9720
- f = RICHCOMPARE(type1);
9720
+ f = TP_RICHCOMPARE(type1);
9721
9721
 
9722
9722
  if (f != NULL) {
9723
9723
  PyObject *result = (*f)(operand1, operand2, Py_GT);
@@ -9883,7 +9883,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_TUPLE_OBJECT(PyObject *operand1, PyObject *ope
9883
9883
  richcmpfunc f;
9884
9884
 
9885
9885
  if (&PyTuple_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyTuple_Type)) {
9886
- f = RICHCOMPARE(type2);
9886
+ f = TP_RICHCOMPARE(type2);
9887
9887
 
9888
9888
  if (f != NULL) {
9889
9889
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -9927,7 +9927,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_TUPLE_OBJECT(PyObject *operand1, PyObject *ope
9927
9927
  Py_DECREF_IMMORTAL(result);
9928
9928
  }
9929
9929
 
9930
- f = RICHCOMPARE(type2);
9930
+ f = TP_RICHCOMPARE(type2);
9931
9931
  if (f != NULL) {
9932
9932
  PyObject *result = (*f)(operand2, operand1, Py_LT);
9933
9933
 
@@ -10040,7 +10040,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_TUPLE_OBJECT(PyObject *operand1, PyObject *ope
10040
10040
  richcmpfunc f;
10041
10041
 
10042
10042
  if (&PyTuple_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyTuple_Type)) {
10043
- f = RICHCOMPARE(type2);
10043
+ f = TP_RICHCOMPARE(type2);
10044
10044
 
10045
10045
  if (f != NULL) {
10046
10046
  checked_reverse_op = true;
@@ -10088,7 +10088,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_TUPLE_OBJECT(PyObject *operand1, PyObject *ope
10088
10088
  }
10089
10089
 
10090
10090
  if (checked_reverse_op == false) {
10091
- f = RICHCOMPARE(type2);
10091
+ f = TP_RICHCOMPARE(type2);
10092
10092
 
10093
10093
  if (f != NULL) {
10094
10094
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -10292,7 +10292,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_OBJECT_LIST(PyObject *operand1, PyObject *opera
10292
10292
  }
10293
10293
  }
10294
10294
 
10295
- f = RICHCOMPARE(type1);
10295
+ f = TP_RICHCOMPARE(type1);
10296
10296
  if (f != NULL) {
10297
10297
  PyObject *result = (*f)(operand1, operand2, Py_GT);
10298
10298
 
@@ -10427,7 +10427,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_OBJECT_LIST(PyObject *operand1, PyObject *opera
10427
10427
  }
10428
10428
  }
10429
10429
 
10430
- f = RICHCOMPARE(type1);
10430
+ f = TP_RICHCOMPARE(type1);
10431
10431
 
10432
10432
  if (f != NULL) {
10433
10433
  PyObject *result = (*f)(operand1, operand2, Py_GT);
@@ -10569,7 +10569,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_LIST_OBJECT(PyObject *operand1, PyObject *opera
10569
10569
  richcmpfunc f;
10570
10570
 
10571
10571
  if (&PyList_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyList_Type)) {
10572
- f = RICHCOMPARE(type2);
10572
+ f = TP_RICHCOMPARE(type2);
10573
10573
 
10574
10574
  if (f != NULL) {
10575
10575
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -10597,7 +10597,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_LIST_OBJECT(PyObject *operand1, PyObject *opera
10597
10597
  Py_DECREF_IMMORTAL(result);
10598
10598
  }
10599
10599
 
10600
- f = RICHCOMPARE(type2);
10600
+ f = TP_RICHCOMPARE(type2);
10601
10601
  if (f != NULL) {
10602
10602
  PyObject *result = (*f)(operand2, operand1, Py_LT);
10603
10603
 
@@ -10702,7 +10702,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_LIST_OBJECT(PyObject *operand1, PyObject *opera
10702
10702
  richcmpfunc f;
10703
10703
 
10704
10704
  if (&PyList_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyList_Type)) {
10705
- f = RICHCOMPARE(type2);
10705
+ f = TP_RICHCOMPARE(type2);
10706
10706
 
10707
10707
  if (f != NULL) {
10708
10708
  checked_reverse_op = true;
@@ -10734,7 +10734,7 @@ PyObject *RICH_COMPARE_GT_OBJECT_LIST_OBJECT(PyObject *operand1, PyObject *opera
10734
10734
  }
10735
10735
 
10736
10736
  if (checked_reverse_op == false) {
10737
- f = RICHCOMPARE(type2);
10737
+ f = TP_RICHCOMPARE(type2);
10738
10738
 
10739
10739
  if (f != NULL) {
10740
10740
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -10946,7 +10946,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_OBJECT_LIST(PyObject *operand1, PyObject *oper
10946
10946
  }
10947
10947
  }
10948
10948
 
10949
- f = RICHCOMPARE(type1);
10949
+ f = TP_RICHCOMPARE(type1);
10950
10950
  if (f != NULL) {
10951
10951
  PyObject *result = (*f)(operand1, operand2, Py_GT);
10952
10952
 
@@ -11105,7 +11105,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_OBJECT_LIST(PyObject *operand1, PyObject *oper
11105
11105
  }
11106
11106
  }
11107
11107
 
11108
- f = RICHCOMPARE(type1);
11108
+ f = TP_RICHCOMPARE(type1);
11109
11109
 
11110
11110
  if (f != NULL) {
11111
11111
  PyObject *result = (*f)(operand1, operand2, Py_GT);
@@ -11271,7 +11271,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_LIST_OBJECT(PyObject *operand1, PyObject *oper
11271
11271
  richcmpfunc f;
11272
11272
 
11273
11273
  if (&PyList_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyList_Type)) {
11274
- f = RICHCOMPARE(type2);
11274
+ f = TP_RICHCOMPARE(type2);
11275
11275
 
11276
11276
  if (f != NULL) {
11277
11277
  PyObject *result = (*f)(operand2, operand1, Py_LT);
@@ -11315,7 +11315,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_LIST_OBJECT(PyObject *operand1, PyObject *oper
11315
11315
  Py_DECREF_IMMORTAL(result);
11316
11316
  }
11317
11317
 
11318
- f = RICHCOMPARE(type2);
11318
+ f = TP_RICHCOMPARE(type2);
11319
11319
  if (f != NULL) {
11320
11320
  PyObject *result = (*f)(operand2, operand1, Py_LT);
11321
11321
 
@@ -11428,7 +11428,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_LIST_OBJECT(PyObject *operand1, PyObject *oper
11428
11428
  richcmpfunc f;
11429
11429
 
11430
11430
  if (&PyList_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyList_Type)) {
11431
- f = RICHCOMPARE(type2);
11431
+ f = TP_RICHCOMPARE(type2);
11432
11432
 
11433
11433
  if (f != NULL) {
11434
11434
  checked_reverse_op = true;
@@ -11476,7 +11476,7 @@ nuitka_bool RICH_COMPARE_GT_NBOOL_LIST_OBJECT(PyObject *operand1, PyObject *oper
11476
11476
  }
11477
11477
 
11478
11478
  if (checked_reverse_op == false) {
11479
- f = RICHCOMPARE(type2);
11479
+ f = TP_RICHCOMPARE(type2);
11480
11480
 
11481
11481
  if (f != NULL) {
11482
11482
  PyObject *result = (*f)(operand2, operand1, Py_LT);