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
@@ -79,7 +79,7 @@ PyObject *RICH_COMPARE_GE_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_GE);
@@ -140,7 +140,7 @@ PyObject *RICH_COMPARE_GE_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_LE);
@@ -155,7 +155,7 @@ PyObject *RICH_COMPARE_GE_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_GE);
161
161
 
@@ -168,7 +168,7 @@ PyObject *RICH_COMPARE_GE_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_LE);
174
174
 
@@ -273,7 +273,7 @@ PyObject *RICH_COMPARE_GE_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_GE_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_GE);
@@ -305,7 +305,7 @@ PyObject *RICH_COMPARE_GE_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_LE);
@@ -383,7 +383,7 @@ nuitka_bool RICH_COMPARE_GE_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_GE);
@@ -452,7 +452,7 @@ nuitka_bool RICH_COMPARE_GE_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_LE);
@@ -475,7 +475,7 @@ nuitka_bool RICH_COMPARE_GE_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_GE);
481
481
 
@@ -496,7 +496,7 @@ nuitka_bool RICH_COMPARE_GE_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_LE);
502
502
 
@@ -609,7 +609,7 @@ nuitka_bool RICH_COMPARE_GE_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_GE_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_GE);
@@ -657,7 +657,7 @@ nuitka_bool RICH_COMPARE_GE_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_LE);
@@ -855,7 +855,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_OBJECT_STR(PyObject *operand1, PyObject *operan
855
855
  }
856
856
  }
857
857
 
858
- f = RICHCOMPARE(type1);
858
+ f = TP_RICHCOMPARE(type1);
859
859
  if (f != NULL) {
860
860
  PyObject *result = (*f)(operand1, operand2, Py_GE);
861
861
 
@@ -990,7 +990,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_OBJECT_STR(PyObject *operand1, PyObject *operan
990
990
  }
991
991
  }
992
992
 
993
- f = RICHCOMPARE(type1);
993
+ f = TP_RICHCOMPARE(type1);
994
994
 
995
995
  if (f != NULL) {
996
996
  PyObject *result = (*f)(operand1, operand2, Py_GE);
@@ -1134,7 +1134,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_STR_OBJECT(PyObject *operand1, PyObject *operan
1134
1134
  richcmpfunc f;
1135
1135
 
1136
1136
  if (&PyString_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyString_Type)) {
1137
- f = RICHCOMPARE(type2);
1137
+ f = TP_RICHCOMPARE(type2);
1138
1138
 
1139
1139
  if (f != NULL) {
1140
1140
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -1162,7 +1162,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_STR_OBJECT(PyObject *operand1, PyObject *operan
1162
1162
  Py_DECREF_IMMORTAL(result);
1163
1163
  }
1164
1164
 
1165
- f = RICHCOMPARE(type2);
1165
+ f = TP_RICHCOMPARE(type2);
1166
1166
  if (f != NULL) {
1167
1167
  PyObject *result = (*f)(operand2, operand1, Py_LE);
1168
1168
 
@@ -1267,7 +1267,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_STR_OBJECT(PyObject *operand1, PyObject *operan
1267
1267
  richcmpfunc f;
1268
1268
 
1269
1269
  if (&PyString_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyString_Type)) {
1270
- f = RICHCOMPARE(type2);
1270
+ f = TP_RICHCOMPARE(type2);
1271
1271
 
1272
1272
  if (f != NULL) {
1273
1273
  checked_reverse_op = true;
@@ -1299,7 +1299,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_STR_OBJECT(PyObject *operand1, PyObject *operan
1299
1299
  }
1300
1300
 
1301
1301
  if (checked_reverse_op == false) {
1302
- f = RICHCOMPARE(type2);
1302
+ f = TP_RICHCOMPARE(type2);
1303
1303
 
1304
1304
  if (f != NULL) {
1305
1305
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -1505,7 +1505,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_OBJECT_STR(PyObject *operand1, PyObject *opera
1505
1505
  }
1506
1506
  }
1507
1507
 
1508
- f = RICHCOMPARE(type1);
1508
+ f = TP_RICHCOMPARE(type1);
1509
1509
  if (f != NULL) {
1510
1510
  PyObject *result = (*f)(operand1, operand2, Py_GE);
1511
1511
 
@@ -1664,7 +1664,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_OBJECT_STR(PyObject *operand1, PyObject *opera
1664
1664
  }
1665
1665
  }
1666
1666
 
1667
- f = RICHCOMPARE(type1);
1667
+ f = TP_RICHCOMPARE(type1);
1668
1668
 
1669
1669
  if (f != NULL) {
1670
1670
  PyObject *result = (*f)(operand1, operand2, Py_GE);
@@ -1832,7 +1832,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_STR_OBJECT(PyObject *operand1, PyObject *opera
1832
1832
  richcmpfunc f;
1833
1833
 
1834
1834
  if (&PyString_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyString_Type)) {
1835
- f = RICHCOMPARE(type2);
1835
+ f = TP_RICHCOMPARE(type2);
1836
1836
 
1837
1837
  if (f != NULL) {
1838
1838
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -1876,7 +1876,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_STR_OBJECT(PyObject *operand1, PyObject *opera
1876
1876
  Py_DECREF_IMMORTAL(result);
1877
1877
  }
1878
1878
 
1879
- f = RICHCOMPARE(type2);
1879
+ f = TP_RICHCOMPARE(type2);
1880
1880
  if (f != NULL) {
1881
1881
  PyObject *result = (*f)(operand2, operand1, Py_LE);
1882
1882
 
@@ -1989,7 +1989,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_STR_OBJECT(PyObject *operand1, PyObject *opera
1989
1989
  richcmpfunc f;
1990
1990
 
1991
1991
  if (&PyString_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyString_Type)) {
1992
- f = RICHCOMPARE(type2);
1992
+ f = TP_RICHCOMPARE(type2);
1993
1993
 
1994
1994
  if (f != NULL) {
1995
1995
  checked_reverse_op = true;
@@ -2037,7 +2037,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_STR_OBJECT(PyObject *operand1, PyObject *opera
2037
2037
  }
2038
2038
 
2039
2039
  if (checked_reverse_op == false) {
2040
- f = RICHCOMPARE(type2);
2040
+ f = TP_RICHCOMPARE(type2);
2041
2041
 
2042
2042
  if (f != NULL) {
2043
2043
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -2212,7 +2212,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_OBJECT_UNICODE(PyObject *operand1, PyObject *op
2212
2212
  }
2213
2213
  }
2214
2214
 
2215
- f = RICHCOMPARE(type1);
2215
+ f = TP_RICHCOMPARE(type1);
2216
2216
  if (f != NULL) {
2217
2217
  PyObject *result = (*f)(operand1, operand2, Py_GE);
2218
2218
 
@@ -2347,7 +2347,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_OBJECT_UNICODE(PyObject *operand1, PyObject *op
2347
2347
  }
2348
2348
  }
2349
2349
 
2350
- f = RICHCOMPARE(type1);
2350
+ f = TP_RICHCOMPARE(type1);
2351
2351
 
2352
2352
  if (f != NULL) {
2353
2353
  PyObject *result = (*f)(operand1, operand2, Py_GE);
@@ -2491,7 +2491,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_UNICODE_OBJECT(PyObject *operand1, PyObject *op
2491
2491
  richcmpfunc f;
2492
2492
 
2493
2493
  if (&PyUnicode_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyUnicode_Type)) {
2494
- f = RICHCOMPARE(type2);
2494
+ f = TP_RICHCOMPARE(type2);
2495
2495
 
2496
2496
  if (f != NULL) {
2497
2497
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -2519,7 +2519,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_UNICODE_OBJECT(PyObject *operand1, PyObject *op
2519
2519
  Py_DECREF_IMMORTAL(result);
2520
2520
  }
2521
2521
 
2522
- f = RICHCOMPARE(type2);
2522
+ f = TP_RICHCOMPARE(type2);
2523
2523
  if (f != NULL) {
2524
2524
  PyObject *result = (*f)(operand2, operand1, Py_LE);
2525
2525
 
@@ -2624,7 +2624,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_UNICODE_OBJECT(PyObject *operand1, PyObject *op
2624
2624
  richcmpfunc f;
2625
2625
 
2626
2626
  if (&PyUnicode_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyUnicode_Type)) {
2627
- f = RICHCOMPARE(type2);
2627
+ f = TP_RICHCOMPARE(type2);
2628
2628
 
2629
2629
  if (f != NULL) {
2630
2630
  checked_reverse_op = true;
@@ -2656,7 +2656,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_UNICODE_OBJECT(PyObject *operand1, PyObject *op
2656
2656
  }
2657
2657
 
2658
2658
  if (checked_reverse_op == false) {
2659
- f = RICHCOMPARE(type2);
2659
+ f = TP_RICHCOMPARE(type2);
2660
2660
 
2661
2661
  if (f != NULL) {
2662
2662
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -2844,7 +2844,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_OBJECT_UNICODE(PyObject *operand1, PyObject *o
2844
2844
  }
2845
2845
  }
2846
2846
 
2847
- f = RICHCOMPARE(type1);
2847
+ f = TP_RICHCOMPARE(type1);
2848
2848
  if (f != NULL) {
2849
2849
  PyObject *result = (*f)(operand1, operand2, Py_GE);
2850
2850
 
@@ -3003,7 +3003,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_OBJECT_UNICODE(PyObject *operand1, PyObject *o
3003
3003
  }
3004
3004
  }
3005
3005
 
3006
- f = RICHCOMPARE(type1);
3006
+ f = TP_RICHCOMPARE(type1);
3007
3007
 
3008
3008
  if (f != NULL) {
3009
3009
  PyObject *result = (*f)(operand1, operand2, Py_GE);
@@ -3171,7 +3171,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_UNICODE_OBJECT(PyObject *operand1, PyObject *o
3171
3171
  richcmpfunc f;
3172
3172
 
3173
3173
  if (&PyUnicode_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyUnicode_Type)) {
3174
- f = RICHCOMPARE(type2);
3174
+ f = TP_RICHCOMPARE(type2);
3175
3175
 
3176
3176
  if (f != NULL) {
3177
3177
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -3215,7 +3215,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_UNICODE_OBJECT(PyObject *operand1, PyObject *o
3215
3215
  Py_DECREF_IMMORTAL(result);
3216
3216
  }
3217
3217
 
3218
- f = RICHCOMPARE(type2);
3218
+ f = TP_RICHCOMPARE(type2);
3219
3219
  if (f != NULL) {
3220
3220
  PyObject *result = (*f)(operand2, operand1, Py_LE);
3221
3221
 
@@ -3328,7 +3328,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_UNICODE_OBJECT(PyObject *operand1, PyObject *o
3328
3328
  richcmpfunc f;
3329
3329
 
3330
3330
  if (&PyUnicode_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyUnicode_Type)) {
3331
- f = RICHCOMPARE(type2);
3331
+ f = TP_RICHCOMPARE(type2);
3332
3332
 
3333
3333
  if (f != NULL) {
3334
3334
  checked_reverse_op = true;
@@ -3376,7 +3376,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_UNICODE_OBJECT(PyObject *operand1, PyObject *o
3376
3376
  }
3377
3377
 
3378
3378
  if (checked_reverse_op == false) {
3379
- f = RICHCOMPARE(type2);
3379
+ f = TP_RICHCOMPARE(type2);
3380
3380
 
3381
3381
  if (f != NULL) {
3382
3382
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -3575,7 +3575,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_OBJECT_BYTES(PyObject *operand1, PyObject *oper
3575
3575
  }
3576
3576
  }
3577
3577
 
3578
- f = RICHCOMPARE(type1);
3578
+ f = TP_RICHCOMPARE(type1);
3579
3579
  if (f != NULL) {
3580
3580
  PyObject *result = (*f)(operand1, operand2, Py_GE);
3581
3581
 
@@ -3710,7 +3710,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_OBJECT_BYTES(PyObject *operand1, PyObject *oper
3710
3710
  }
3711
3711
  }
3712
3712
 
3713
- f = RICHCOMPARE(type1);
3713
+ f = TP_RICHCOMPARE(type1);
3714
3714
 
3715
3715
  if (f != NULL) {
3716
3716
  PyObject *result = (*f)(operand1, operand2, Py_GE);
@@ -3854,7 +3854,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_BYTES_OBJECT(PyObject *operand1, PyObject *oper
3854
3854
  richcmpfunc f;
3855
3855
 
3856
3856
  if (&PyBytes_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyBytes_Type)) {
3857
- f = RICHCOMPARE(type2);
3857
+ f = TP_RICHCOMPARE(type2);
3858
3858
 
3859
3859
  if (f != NULL) {
3860
3860
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -3882,7 +3882,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_BYTES_OBJECT(PyObject *operand1, PyObject *oper
3882
3882
  Py_DECREF_IMMORTAL(result);
3883
3883
  }
3884
3884
 
3885
- f = RICHCOMPARE(type2);
3885
+ f = TP_RICHCOMPARE(type2);
3886
3886
  if (f != NULL) {
3887
3887
  PyObject *result = (*f)(operand2, operand1, Py_LE);
3888
3888
 
@@ -3987,7 +3987,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_BYTES_OBJECT(PyObject *operand1, PyObject *oper
3987
3987
  richcmpfunc f;
3988
3988
 
3989
3989
  if (&PyBytes_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyBytes_Type)) {
3990
- f = RICHCOMPARE(type2);
3990
+ f = TP_RICHCOMPARE(type2);
3991
3991
 
3992
3992
  if (f != NULL) {
3993
3993
  checked_reverse_op = true;
@@ -4019,7 +4019,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_BYTES_OBJECT(PyObject *operand1, PyObject *oper
4019
4019
  }
4020
4020
 
4021
4021
  if (checked_reverse_op == false) {
4022
- f = RICHCOMPARE(type2);
4022
+ f = TP_RICHCOMPARE(type2);
4023
4023
 
4024
4024
  if (f != NULL) {
4025
4025
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -4225,7 +4225,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_OBJECT_BYTES(PyObject *operand1, PyObject *ope
4225
4225
  }
4226
4226
  }
4227
4227
 
4228
- f = RICHCOMPARE(type1);
4228
+ f = TP_RICHCOMPARE(type1);
4229
4229
  if (f != NULL) {
4230
4230
  PyObject *result = (*f)(operand1, operand2, Py_GE);
4231
4231
 
@@ -4384,7 +4384,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_OBJECT_BYTES(PyObject *operand1, PyObject *ope
4384
4384
  }
4385
4385
  }
4386
4386
 
4387
- f = RICHCOMPARE(type1);
4387
+ f = TP_RICHCOMPARE(type1);
4388
4388
 
4389
4389
  if (f != NULL) {
4390
4390
  PyObject *result = (*f)(operand1, operand2, Py_GE);
@@ -4552,7 +4552,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_BYTES_OBJECT(PyObject *operand1, PyObject *ope
4552
4552
  richcmpfunc f;
4553
4553
 
4554
4554
  if (&PyBytes_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyBytes_Type)) {
4555
- f = RICHCOMPARE(type2);
4555
+ f = TP_RICHCOMPARE(type2);
4556
4556
 
4557
4557
  if (f != NULL) {
4558
4558
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -4596,7 +4596,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_BYTES_OBJECT(PyObject *operand1, PyObject *ope
4596
4596
  Py_DECREF_IMMORTAL(result);
4597
4597
  }
4598
4598
 
4599
- f = RICHCOMPARE(type2);
4599
+ f = TP_RICHCOMPARE(type2);
4600
4600
  if (f != NULL) {
4601
4601
  PyObject *result = (*f)(operand2, operand1, Py_LE);
4602
4602
 
@@ -4709,7 +4709,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_BYTES_OBJECT(PyObject *operand1, PyObject *ope
4709
4709
  richcmpfunc f;
4710
4710
 
4711
4711
  if (&PyBytes_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyBytes_Type)) {
4712
- f = RICHCOMPARE(type2);
4712
+ f = TP_RICHCOMPARE(type2);
4713
4713
 
4714
4714
  if (f != NULL) {
4715
4715
  checked_reverse_op = true;
@@ -4757,7 +4757,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_BYTES_OBJECT(PyObject *operand1, PyObject *ope
4757
4757
  }
4758
4758
 
4759
4759
  if (checked_reverse_op == false) {
4760
- f = RICHCOMPARE(type2);
4760
+ f = TP_RICHCOMPARE(type2);
4761
4761
 
4762
4762
  if (f != NULL) {
4763
4763
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -4909,7 +4909,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_OBJECT_INT(PyObject *operand1, PyObject *operan
4909
4909
  }
4910
4910
  }
4911
4911
 
4912
- f = RICHCOMPARE(type1);
4912
+ f = TP_RICHCOMPARE(type1);
4913
4913
  if (f != NULL) {
4914
4914
  PyObject *result = (*f)(operand1, operand2, Py_GE);
4915
4915
 
@@ -5044,7 +5044,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_OBJECT_INT(PyObject *operand1, PyObject *operan
5044
5044
  }
5045
5045
  }
5046
5046
 
5047
- f = RICHCOMPARE(type1);
5047
+ f = TP_RICHCOMPARE(type1);
5048
5048
 
5049
5049
  if (f != NULL) {
5050
5050
  PyObject *result = (*f)(operand1, operand2, Py_GE);
@@ -5188,7 +5188,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_INT_OBJECT(PyObject *operand1, PyObject *operan
5188
5188
  richcmpfunc f;
5189
5189
 
5190
5190
  if (&PyInt_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyInt_Type)) {
5191
- f = RICHCOMPARE(type2);
5191
+ f = TP_RICHCOMPARE(type2);
5192
5192
 
5193
5193
  if (f != NULL) {
5194
5194
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -5216,7 +5216,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_INT_OBJECT(PyObject *operand1, PyObject *operan
5216
5216
  Py_DECREF_IMMORTAL(result);
5217
5217
  }
5218
5218
 
5219
- f = RICHCOMPARE(type2);
5219
+ f = TP_RICHCOMPARE(type2);
5220
5220
  if (f != NULL) {
5221
5221
  PyObject *result = (*f)(operand2, operand1, Py_LE);
5222
5222
 
@@ -5321,7 +5321,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_INT_OBJECT(PyObject *operand1, PyObject *operan
5321
5321
  richcmpfunc f;
5322
5322
 
5323
5323
  if (&PyInt_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyInt_Type)) {
5324
- f = RICHCOMPARE(type2);
5324
+ f = TP_RICHCOMPARE(type2);
5325
5325
 
5326
5326
  if (f != NULL) {
5327
5327
  checked_reverse_op = true;
@@ -5353,7 +5353,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_INT_OBJECT(PyObject *operand1, PyObject *operan
5353
5353
  }
5354
5354
 
5355
5355
  if (checked_reverse_op == false) {
5356
- f = RICHCOMPARE(type2);
5356
+ f = TP_RICHCOMPARE(type2);
5357
5357
 
5358
5358
  if (f != NULL) {
5359
5359
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -5513,7 +5513,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_OBJECT_INT(PyObject *operand1, PyObject *opera
5513
5513
  }
5514
5514
  }
5515
5515
 
5516
- f = RICHCOMPARE(type1);
5516
+ f = TP_RICHCOMPARE(type1);
5517
5517
  if (f != NULL) {
5518
5518
  PyObject *result = (*f)(operand1, operand2, Py_GE);
5519
5519
 
@@ -5672,7 +5672,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_OBJECT_INT(PyObject *operand1, PyObject *opera
5672
5672
  }
5673
5673
  }
5674
5674
 
5675
- f = RICHCOMPARE(type1);
5675
+ f = TP_RICHCOMPARE(type1);
5676
5676
 
5677
5677
  if (f != NULL) {
5678
5678
  PyObject *result = (*f)(operand1, operand2, Py_GE);
@@ -5840,7 +5840,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_INT_OBJECT(PyObject *operand1, PyObject *opera
5840
5840
  richcmpfunc f;
5841
5841
 
5842
5842
  if (&PyInt_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyInt_Type)) {
5843
- f = RICHCOMPARE(type2);
5843
+ f = TP_RICHCOMPARE(type2);
5844
5844
 
5845
5845
  if (f != NULL) {
5846
5846
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -5884,7 +5884,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_INT_OBJECT(PyObject *operand1, PyObject *opera
5884
5884
  Py_DECREF_IMMORTAL(result);
5885
5885
  }
5886
5886
 
5887
- f = RICHCOMPARE(type2);
5887
+ f = TP_RICHCOMPARE(type2);
5888
5888
  if (f != NULL) {
5889
5889
  PyObject *result = (*f)(operand2, operand1, Py_LE);
5890
5890
 
@@ -5997,7 +5997,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_INT_OBJECT(PyObject *operand1, PyObject *opera
5997
5997
  richcmpfunc f;
5998
5998
 
5999
5999
  if (&PyInt_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyInt_Type)) {
6000
- f = RICHCOMPARE(type2);
6000
+ f = TP_RICHCOMPARE(type2);
6001
6001
 
6002
6002
  if (f != NULL) {
6003
6003
  checked_reverse_op = true;
@@ -6045,7 +6045,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_INT_OBJECT(PyObject *operand1, PyObject *opera
6045
6045
  }
6046
6046
 
6047
6047
  if (checked_reverse_op == false) {
6048
- f = RICHCOMPARE(type2);
6048
+ f = TP_RICHCOMPARE(type2);
6049
6049
 
6050
6050
  if (f != NULL) {
6051
6051
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -6235,7 +6235,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_OBJECT_LONG(PyObject *operand1, PyObject *opera
6235
6235
  }
6236
6236
  }
6237
6237
 
6238
- f = RICHCOMPARE(type1);
6238
+ f = TP_RICHCOMPARE(type1);
6239
6239
  if (f != NULL) {
6240
6240
  PyObject *result = (*f)(operand1, operand2, Py_GE);
6241
6241
 
@@ -6370,7 +6370,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_OBJECT_LONG(PyObject *operand1, PyObject *opera
6370
6370
  }
6371
6371
  }
6372
6372
 
6373
- f = RICHCOMPARE(type1);
6373
+ f = TP_RICHCOMPARE(type1);
6374
6374
 
6375
6375
  if (f != NULL) {
6376
6376
  PyObject *result = (*f)(operand1, operand2, Py_GE);
@@ -6514,7 +6514,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_LONG_OBJECT(PyObject *operand1, PyObject *opera
6514
6514
  richcmpfunc f;
6515
6515
 
6516
6516
  if (&PyLong_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyLong_Type)) {
6517
- f = RICHCOMPARE(type2);
6517
+ f = TP_RICHCOMPARE(type2);
6518
6518
 
6519
6519
  if (f != NULL) {
6520
6520
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -6542,7 +6542,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_LONG_OBJECT(PyObject *operand1, PyObject *opera
6542
6542
  Py_DECREF_IMMORTAL(result);
6543
6543
  }
6544
6544
 
6545
- f = RICHCOMPARE(type2);
6545
+ f = TP_RICHCOMPARE(type2);
6546
6546
  if (f != NULL) {
6547
6547
  PyObject *result = (*f)(operand2, operand1, Py_LE);
6548
6548
 
@@ -6647,7 +6647,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_LONG_OBJECT(PyObject *operand1, PyObject *opera
6647
6647
  richcmpfunc f;
6648
6648
 
6649
6649
  if (&PyLong_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyLong_Type)) {
6650
- f = RICHCOMPARE(type2);
6650
+ f = TP_RICHCOMPARE(type2);
6651
6651
 
6652
6652
  if (f != NULL) {
6653
6653
  checked_reverse_op = true;
@@ -6679,7 +6679,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_LONG_OBJECT(PyObject *operand1, PyObject *opera
6679
6679
  }
6680
6680
 
6681
6681
  if (checked_reverse_op == false) {
6682
- f = RICHCOMPARE(type2);
6682
+ f = TP_RICHCOMPARE(type2);
6683
6683
 
6684
6684
  if (f != NULL) {
6685
6685
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -6878,7 +6878,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_OBJECT_LONG(PyObject *operand1, PyObject *oper
6878
6878
  }
6879
6879
  }
6880
6880
 
6881
- f = RICHCOMPARE(type1);
6881
+ f = TP_RICHCOMPARE(type1);
6882
6882
  if (f != NULL) {
6883
6883
  PyObject *result = (*f)(operand1, operand2, Py_GE);
6884
6884
 
@@ -7037,7 +7037,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_OBJECT_LONG(PyObject *operand1, PyObject *oper
7037
7037
  }
7038
7038
  }
7039
7039
 
7040
- f = RICHCOMPARE(type1);
7040
+ f = TP_RICHCOMPARE(type1);
7041
7041
 
7042
7042
  if (f != NULL) {
7043
7043
  PyObject *result = (*f)(operand1, operand2, Py_GE);
@@ -7205,7 +7205,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_LONG_OBJECT(PyObject *operand1, PyObject *oper
7205
7205
  richcmpfunc f;
7206
7206
 
7207
7207
  if (&PyLong_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyLong_Type)) {
7208
- f = RICHCOMPARE(type2);
7208
+ f = TP_RICHCOMPARE(type2);
7209
7209
 
7210
7210
  if (f != NULL) {
7211
7211
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -7249,7 +7249,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_LONG_OBJECT(PyObject *operand1, PyObject *oper
7249
7249
  Py_DECREF_IMMORTAL(result);
7250
7250
  }
7251
7251
 
7252
- f = RICHCOMPARE(type2);
7252
+ f = TP_RICHCOMPARE(type2);
7253
7253
  if (f != NULL) {
7254
7254
  PyObject *result = (*f)(operand2, operand1, Py_LE);
7255
7255
 
@@ -7362,7 +7362,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_LONG_OBJECT(PyObject *operand1, PyObject *oper
7362
7362
  richcmpfunc f;
7363
7363
 
7364
7364
  if (&PyLong_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyLong_Type)) {
7365
- f = RICHCOMPARE(type2);
7365
+ f = TP_RICHCOMPARE(type2);
7366
7366
 
7367
7367
  if (f != NULL) {
7368
7368
  checked_reverse_op = true;
@@ -7410,7 +7410,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_LONG_OBJECT(PyObject *operand1, PyObject *oper
7410
7410
  }
7411
7411
 
7412
7412
  if (checked_reverse_op == false) {
7413
- f = RICHCOMPARE(type2);
7413
+ f = TP_RICHCOMPARE(type2);
7414
7414
 
7415
7415
  if (f != NULL) {
7416
7416
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -7578,7 +7578,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_OBJECT_FLOAT(PyObject *operand1, PyObject *oper
7578
7578
  }
7579
7579
  }
7580
7580
 
7581
- f = RICHCOMPARE(type1);
7581
+ f = TP_RICHCOMPARE(type1);
7582
7582
  if (f != NULL) {
7583
7583
  PyObject *result = (*f)(operand1, operand2, Py_GE);
7584
7584
 
@@ -7713,7 +7713,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_OBJECT_FLOAT(PyObject *operand1, PyObject *oper
7713
7713
  }
7714
7714
  }
7715
7715
 
7716
- f = RICHCOMPARE(type1);
7716
+ f = TP_RICHCOMPARE(type1);
7717
7717
 
7718
7718
  if (f != NULL) {
7719
7719
  PyObject *result = (*f)(operand1, operand2, Py_GE);
@@ -7855,7 +7855,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_FLOAT_OBJECT(PyObject *operand1, PyObject *oper
7855
7855
  richcmpfunc f;
7856
7856
 
7857
7857
  if (&PyFloat_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyFloat_Type)) {
7858
- f = RICHCOMPARE(type2);
7858
+ f = TP_RICHCOMPARE(type2);
7859
7859
 
7860
7860
  if (f != NULL) {
7861
7861
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -7883,7 +7883,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_FLOAT_OBJECT(PyObject *operand1, PyObject *oper
7883
7883
  Py_DECREF_IMMORTAL(result);
7884
7884
  }
7885
7885
 
7886
- f = RICHCOMPARE(type2);
7886
+ f = TP_RICHCOMPARE(type2);
7887
7887
  if (f != NULL) {
7888
7888
  PyObject *result = (*f)(operand2, operand1, Py_LE);
7889
7889
 
@@ -7988,7 +7988,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_FLOAT_OBJECT(PyObject *operand1, PyObject *oper
7988
7988
  richcmpfunc f;
7989
7989
 
7990
7990
  if (&PyFloat_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyFloat_Type)) {
7991
- f = RICHCOMPARE(type2);
7991
+ f = TP_RICHCOMPARE(type2);
7992
7992
 
7993
7993
  if (f != NULL) {
7994
7994
  checked_reverse_op = true;
@@ -8020,7 +8020,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_FLOAT_OBJECT(PyObject *operand1, PyObject *oper
8020
8020
  }
8021
8021
 
8022
8022
  if (checked_reverse_op == false) {
8023
- f = RICHCOMPARE(type2);
8023
+ f = TP_RICHCOMPARE(type2);
8024
8024
 
8025
8025
  if (f != NULL) {
8026
8026
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -8194,7 +8194,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_OBJECT_FLOAT(PyObject *operand1, PyObject *ope
8194
8194
  }
8195
8195
  }
8196
8196
 
8197
- f = RICHCOMPARE(type1);
8197
+ f = TP_RICHCOMPARE(type1);
8198
8198
  if (f != NULL) {
8199
8199
  PyObject *result = (*f)(operand1, operand2, Py_GE);
8200
8200
 
@@ -8353,7 +8353,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_OBJECT_FLOAT(PyObject *operand1, PyObject *ope
8353
8353
  }
8354
8354
  }
8355
8355
 
8356
- f = RICHCOMPARE(type1);
8356
+ f = TP_RICHCOMPARE(type1);
8357
8357
 
8358
8358
  if (f != NULL) {
8359
8359
  PyObject *result = (*f)(operand1, operand2, Py_GE);
@@ -8519,7 +8519,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_FLOAT_OBJECT(PyObject *operand1, PyObject *ope
8519
8519
  richcmpfunc f;
8520
8520
 
8521
8521
  if (&PyFloat_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyFloat_Type)) {
8522
- f = RICHCOMPARE(type2);
8522
+ f = TP_RICHCOMPARE(type2);
8523
8523
 
8524
8524
  if (f != NULL) {
8525
8525
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -8563,7 +8563,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_FLOAT_OBJECT(PyObject *operand1, PyObject *ope
8563
8563
  Py_DECREF_IMMORTAL(result);
8564
8564
  }
8565
8565
 
8566
- f = RICHCOMPARE(type2);
8566
+ f = TP_RICHCOMPARE(type2);
8567
8567
  if (f != NULL) {
8568
8568
  PyObject *result = (*f)(operand2, operand1, Py_LE);
8569
8569
 
@@ -8676,7 +8676,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_FLOAT_OBJECT(PyObject *operand1, PyObject *ope
8676
8676
  richcmpfunc f;
8677
8677
 
8678
8678
  if (&PyFloat_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyFloat_Type)) {
8679
- f = RICHCOMPARE(type2);
8679
+ f = TP_RICHCOMPARE(type2);
8680
8680
 
8681
8681
  if (f != NULL) {
8682
8682
  checked_reverse_op = true;
@@ -8724,7 +8724,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_FLOAT_OBJECT(PyObject *operand1, PyObject *ope
8724
8724
  }
8725
8725
 
8726
8726
  if (checked_reverse_op == false) {
8727
- f = RICHCOMPARE(type2);
8727
+ f = TP_RICHCOMPARE(type2);
8728
8728
 
8729
8729
  if (f != NULL) {
8730
8730
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -8921,7 +8921,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_OBJECT_TUPLE(PyObject *operand1, PyObject *oper
8921
8921
  }
8922
8922
  }
8923
8923
 
8924
- f = RICHCOMPARE(type1);
8924
+ f = TP_RICHCOMPARE(type1);
8925
8925
  if (f != NULL) {
8926
8926
  PyObject *result = (*f)(operand1, operand2, Py_GE);
8927
8927
 
@@ -9056,7 +9056,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_OBJECT_TUPLE(PyObject *operand1, PyObject *oper
9056
9056
  }
9057
9057
  }
9058
9058
 
9059
- f = RICHCOMPARE(type1);
9059
+ f = TP_RICHCOMPARE(type1);
9060
9060
 
9061
9061
  if (f != NULL) {
9062
9062
  PyObject *result = (*f)(operand1, operand2, Py_GE);
@@ -9198,7 +9198,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_TUPLE_OBJECT(PyObject *operand1, PyObject *oper
9198
9198
  richcmpfunc f;
9199
9199
 
9200
9200
  if (&PyTuple_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyTuple_Type)) {
9201
- f = RICHCOMPARE(type2);
9201
+ f = TP_RICHCOMPARE(type2);
9202
9202
 
9203
9203
  if (f != NULL) {
9204
9204
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -9226,7 +9226,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_TUPLE_OBJECT(PyObject *operand1, PyObject *oper
9226
9226
  Py_DECREF_IMMORTAL(result);
9227
9227
  }
9228
9228
 
9229
- f = RICHCOMPARE(type2);
9229
+ f = TP_RICHCOMPARE(type2);
9230
9230
  if (f != NULL) {
9231
9231
  PyObject *result = (*f)(operand2, operand1, Py_LE);
9232
9232
 
@@ -9331,7 +9331,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_TUPLE_OBJECT(PyObject *operand1, PyObject *oper
9331
9331
  richcmpfunc f;
9332
9332
 
9333
9333
  if (&PyTuple_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyTuple_Type)) {
9334
- f = RICHCOMPARE(type2);
9334
+ f = TP_RICHCOMPARE(type2);
9335
9335
 
9336
9336
  if (f != NULL) {
9337
9337
  checked_reverse_op = true;
@@ -9363,7 +9363,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_TUPLE_OBJECT(PyObject *operand1, PyObject *oper
9363
9363
  }
9364
9364
 
9365
9365
  if (checked_reverse_op == false) {
9366
- f = RICHCOMPARE(type2);
9366
+ f = TP_RICHCOMPARE(type2);
9367
9367
 
9368
9368
  if (f != NULL) {
9369
9369
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -9574,7 +9574,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_OBJECT_TUPLE(PyObject *operand1, PyObject *ope
9574
9574
  }
9575
9575
  }
9576
9576
 
9577
- f = RICHCOMPARE(type1);
9577
+ f = TP_RICHCOMPARE(type1);
9578
9578
  if (f != NULL) {
9579
9579
  PyObject *result = (*f)(operand1, operand2, Py_GE);
9580
9580
 
@@ -9733,7 +9733,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_OBJECT_TUPLE(PyObject *operand1, PyObject *ope
9733
9733
  }
9734
9734
  }
9735
9735
 
9736
- f = RICHCOMPARE(type1);
9736
+ f = TP_RICHCOMPARE(type1);
9737
9737
 
9738
9738
  if (f != NULL) {
9739
9739
  PyObject *result = (*f)(operand1, operand2, Py_GE);
@@ -9899,7 +9899,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_TUPLE_OBJECT(PyObject *operand1, PyObject *ope
9899
9899
  richcmpfunc f;
9900
9900
 
9901
9901
  if (&PyTuple_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyTuple_Type)) {
9902
- f = RICHCOMPARE(type2);
9902
+ f = TP_RICHCOMPARE(type2);
9903
9903
 
9904
9904
  if (f != NULL) {
9905
9905
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -9943,7 +9943,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_TUPLE_OBJECT(PyObject *operand1, PyObject *ope
9943
9943
  Py_DECREF_IMMORTAL(result);
9944
9944
  }
9945
9945
 
9946
- f = RICHCOMPARE(type2);
9946
+ f = TP_RICHCOMPARE(type2);
9947
9947
  if (f != NULL) {
9948
9948
  PyObject *result = (*f)(operand2, operand1, Py_LE);
9949
9949
 
@@ -10056,7 +10056,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_TUPLE_OBJECT(PyObject *operand1, PyObject *ope
10056
10056
  richcmpfunc f;
10057
10057
 
10058
10058
  if (&PyTuple_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyTuple_Type)) {
10059
- f = RICHCOMPARE(type2);
10059
+ f = TP_RICHCOMPARE(type2);
10060
10060
 
10061
10061
  if (f != NULL) {
10062
10062
  checked_reverse_op = true;
@@ -10104,7 +10104,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_TUPLE_OBJECT(PyObject *operand1, PyObject *ope
10104
10104
  }
10105
10105
 
10106
10106
  if (checked_reverse_op == false) {
10107
- f = RICHCOMPARE(type2);
10107
+ f = TP_RICHCOMPARE(type2);
10108
10108
 
10109
10109
  if (f != NULL) {
10110
10110
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -10308,7 +10308,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_OBJECT_LIST(PyObject *operand1, PyObject *opera
10308
10308
  }
10309
10309
  }
10310
10310
 
10311
- f = RICHCOMPARE(type1);
10311
+ f = TP_RICHCOMPARE(type1);
10312
10312
  if (f != NULL) {
10313
10313
  PyObject *result = (*f)(operand1, operand2, Py_GE);
10314
10314
 
@@ -10443,7 +10443,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_OBJECT_LIST(PyObject *operand1, PyObject *opera
10443
10443
  }
10444
10444
  }
10445
10445
 
10446
- f = RICHCOMPARE(type1);
10446
+ f = TP_RICHCOMPARE(type1);
10447
10447
 
10448
10448
  if (f != NULL) {
10449
10449
  PyObject *result = (*f)(operand1, operand2, Py_GE);
@@ -10585,7 +10585,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_LIST_OBJECT(PyObject *operand1, PyObject *opera
10585
10585
  richcmpfunc f;
10586
10586
 
10587
10587
  if (&PyList_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyList_Type)) {
10588
- f = RICHCOMPARE(type2);
10588
+ f = TP_RICHCOMPARE(type2);
10589
10589
 
10590
10590
  if (f != NULL) {
10591
10591
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -10613,7 +10613,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_LIST_OBJECT(PyObject *operand1, PyObject *opera
10613
10613
  Py_DECREF_IMMORTAL(result);
10614
10614
  }
10615
10615
 
10616
- f = RICHCOMPARE(type2);
10616
+ f = TP_RICHCOMPARE(type2);
10617
10617
  if (f != NULL) {
10618
10618
  PyObject *result = (*f)(operand2, operand1, Py_LE);
10619
10619
 
@@ -10718,7 +10718,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_LIST_OBJECT(PyObject *operand1, PyObject *opera
10718
10718
  richcmpfunc f;
10719
10719
 
10720
10720
  if (&PyList_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyList_Type)) {
10721
- f = RICHCOMPARE(type2);
10721
+ f = TP_RICHCOMPARE(type2);
10722
10722
 
10723
10723
  if (f != NULL) {
10724
10724
  checked_reverse_op = true;
@@ -10750,7 +10750,7 @@ PyObject *RICH_COMPARE_GE_OBJECT_LIST_OBJECT(PyObject *operand1, PyObject *opera
10750
10750
  }
10751
10751
 
10752
10752
  if (checked_reverse_op == false) {
10753
- f = RICHCOMPARE(type2);
10753
+ f = TP_RICHCOMPARE(type2);
10754
10754
 
10755
10755
  if (f != NULL) {
10756
10756
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -10962,7 +10962,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_OBJECT_LIST(PyObject *operand1, PyObject *oper
10962
10962
  }
10963
10963
  }
10964
10964
 
10965
- f = RICHCOMPARE(type1);
10965
+ f = TP_RICHCOMPARE(type1);
10966
10966
  if (f != NULL) {
10967
10967
  PyObject *result = (*f)(operand1, operand2, Py_GE);
10968
10968
 
@@ -11121,7 +11121,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_OBJECT_LIST(PyObject *operand1, PyObject *oper
11121
11121
  }
11122
11122
  }
11123
11123
 
11124
- f = RICHCOMPARE(type1);
11124
+ f = TP_RICHCOMPARE(type1);
11125
11125
 
11126
11126
  if (f != NULL) {
11127
11127
  PyObject *result = (*f)(operand1, operand2, Py_GE);
@@ -11287,7 +11287,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_LIST_OBJECT(PyObject *operand1, PyObject *oper
11287
11287
  richcmpfunc f;
11288
11288
 
11289
11289
  if (&PyList_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyList_Type)) {
11290
- f = RICHCOMPARE(type2);
11290
+ f = TP_RICHCOMPARE(type2);
11291
11291
 
11292
11292
  if (f != NULL) {
11293
11293
  PyObject *result = (*f)(operand2, operand1, Py_LE);
@@ -11331,7 +11331,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_LIST_OBJECT(PyObject *operand1, PyObject *oper
11331
11331
  Py_DECREF_IMMORTAL(result);
11332
11332
  }
11333
11333
 
11334
- f = RICHCOMPARE(type2);
11334
+ f = TP_RICHCOMPARE(type2);
11335
11335
  if (f != NULL) {
11336
11336
  PyObject *result = (*f)(operand2, operand1, Py_LE);
11337
11337
 
@@ -11444,7 +11444,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_LIST_OBJECT(PyObject *operand1, PyObject *oper
11444
11444
  richcmpfunc f;
11445
11445
 
11446
11446
  if (&PyList_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyList_Type)) {
11447
- f = RICHCOMPARE(type2);
11447
+ f = TP_RICHCOMPARE(type2);
11448
11448
 
11449
11449
  if (f != NULL) {
11450
11450
  checked_reverse_op = true;
@@ -11492,7 +11492,7 @@ nuitka_bool RICH_COMPARE_GE_NBOOL_LIST_OBJECT(PyObject *operand1, PyObject *oper
11492
11492
  }
11493
11493
 
11494
11494
  if (checked_reverse_op == false) {
11495
- f = RICHCOMPARE(type2);
11495
+ f = TP_RICHCOMPARE(type2);
11496
11496
 
11497
11497
  if (f != NULL) {
11498
11498
  PyObject *result = (*f)(operand2, operand1, Py_LE);