Nuitka-winsvc 2.3.9__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 (213) hide show
  1. Nuitka_winsvc-2.3.9.data/scripts/nuitka-run.bat → Nuitka_winsvc-2.4.1.data/scripts/nuitka-run.cmd +1 -1
  2. {Nuitka_winsvc-2.3.9.dist-info → Nuitka_winsvc-2.4.1.dist-info}/METADATA +1 -1
  3. {Nuitka_winsvc-2.3.9.dist-info → Nuitka_winsvc-2.4.1.dist-info}/RECORD +213 -210
  4. {Nuitka_winsvc-2.3.9.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/Tracing.py +26 -23
  16. nuitka/TreeXML.py +6 -3
  17. nuitka/Version.py +1 -1
  18. nuitka/__main__.py +55 -10
  19. nuitka/build/Backend.scons +6 -1
  20. nuitka/build/CCompilerVersion.scons +1 -0
  21. nuitka/build/Onefile.scons +4 -0
  22. nuitka/build/SconsCaching.py +1 -0
  23. nuitka/build/SconsCompilerSettings.py +1 -0
  24. nuitka/build/SconsHacks.py +5 -1
  25. nuitka/build/SconsInterface.py +2 -0
  26. nuitka/build/SconsUtils.py +5 -2
  27. nuitka/build/include/nuitka/allocator.h +27 -5
  28. nuitka/build/include/nuitka/calling.h +1 -1
  29. nuitka/build/include/nuitka/compiled_frame.h +23 -23
  30. nuitka/build/include/nuitka/compiled_method.h +1 -1
  31. nuitka/build/include/nuitka/exception_groups.h +0 -2
  32. nuitka/build/include/nuitka/helper/attributes.h +7 -1
  33. nuitka/build/include/nuitka/helper/subscripts.h +1 -1
  34. nuitka/build/include/nuitka/helpers.h +7 -4
  35. nuitka/build/include/nuitka/prelude.h +6 -10
  36. nuitka/build/include/nuitka/printing.h +2 -0
  37. nuitka/build/include/nuitka/unfreezing.h +5 -5
  38. nuitka/build/inline_copy/tqdm/tqdm/_monitor.py +4 -1
  39. nuitka/build/static_src/CompiledAsyncgenType.c +2 -4
  40. nuitka/build/static_src/CompiledCellType.c +7 -7
  41. nuitka/build/static_src/CompiledCodeHelpers.c +51 -36
  42. nuitka/build/static_src/CompiledCoroutineType.c +2 -4
  43. nuitka/build/static_src/CompiledFrameType.c +109 -82
  44. nuitka/build/static_src/CompiledFunctionType.c +36 -9
  45. nuitka/build/static_src/CompiledGeneratorType.c +12 -10
  46. nuitka/build/static_src/CompiledGeneratorTypeUncompiledIntegration.c +2 -2
  47. nuitka/build/static_src/CompiledMethodType.c +14 -13
  48. nuitka/build/static_src/HelpersAttributes.c +13 -15
  49. nuitka/build/static_src/HelpersBuiltin.c +18 -9
  50. nuitka/build/static_src/HelpersCalling.c +13 -13
  51. nuitka/build/static_src/HelpersCallingGenerated.c +22 -22
  52. nuitka/build/static_src/HelpersComparisonEq.c +110 -110
  53. nuitka/build/static_src/HelpersComparisonEqUtils.c +1 -1
  54. nuitka/build/static_src/HelpersComparisonGe.c +110 -110
  55. nuitka/build/static_src/HelpersComparisonGt.c +110 -110
  56. nuitka/build/static_src/HelpersComparisonLe.c +110 -110
  57. nuitka/build/static_src/HelpersComparisonLt.c +110 -110
  58. nuitka/build/static_src/HelpersComparisonNe.c +110 -110
  59. nuitka/build/static_src/HelpersConstantsBlob.c +480 -481
  60. nuitka/build/static_src/HelpersDictionaries.c +9 -0
  61. nuitka/build/static_src/HelpersFiles.c +2 -2
  62. nuitka/build/static_src/HelpersFilesystemPaths.c +28 -13
  63. nuitka/build/static_src/HelpersHeapStorage.c +4 -0
  64. nuitka/build/static_src/HelpersImport.c +1 -1
  65. nuitka/build/static_src/HelpersLists.c +5 -1
  66. nuitka/build/static_src/HelpersMatching.c +95 -35
  67. nuitka/build/static_src/HelpersOperationInplaceAdd.c +23 -23
  68. nuitka/build/static_src/HelpersOperationInplaceAddUtils.c +1 -0
  69. nuitka/build/static_src/HelpersOperationInplaceBitand.c +11 -11
  70. nuitka/build/static_src/HelpersOperationInplaceBitor.c +11 -11
  71. nuitka/build/static_src/HelpersOperationInplaceBitxor.c +11 -11
  72. nuitka/build/static_src/HelpersOperationInplaceFloordiv.c +17 -17
  73. nuitka/build/static_src/HelpersOperationInplaceLshift.c +9 -9
  74. nuitka/build/static_src/HelpersOperationInplaceMatmult.c +10 -10
  75. nuitka/build/static_src/HelpersOperationInplaceMod.c +47 -47
  76. nuitka/build/static_src/HelpersOperationInplaceMult.c +28 -28
  77. nuitka/build/static_src/HelpersOperationInplaceOlddiv.c +17 -17
  78. nuitka/build/static_src/HelpersOperationInplacePow.c +17 -17
  79. nuitka/build/static_src/HelpersOperationInplaceRshift.c +9 -9
  80. nuitka/build/static_src/HelpersOperationInplaceSub.c +17 -17
  81. nuitka/build/static_src/HelpersOperationInplaceTruediv.c +17 -17
  82. nuitka/build/static_src/HelpersSequences.c +1 -1
  83. nuitka/build/static_src/HelpersTypes.c +8 -4
  84. nuitka/build/static_src/MainProgram.c +28 -9
  85. nuitka/build/static_src/MetaPathBasedLoader.c +126 -110
  86. nuitka/build/static_src/MetaPathBasedLoaderImportlibMetadataDistribution.c +13 -4
  87. nuitka/build/static_src/MetaPathBasedLoaderResourceReaderFiles.c +30 -1
  88. nuitka/build/static_src/OnefileBootstrap.c +34 -6
  89. nuitka/code_generation/AttributeCodes.py +12 -10
  90. nuitka/code_generation/CodeGeneration.py +6 -7
  91. nuitka/code_generation/ConstantCodes.py +53 -10
  92. nuitka/code_generation/GlobalConstants.py +6 -6
  93. nuitka/code_generation/Indentation.py +3 -4
  94. nuitka/code_generation/LoaderCodes.py +3 -0
  95. nuitka/code_generation/LocalsDictCodes.py +36 -14
  96. nuitka/code_generation/MatchCodes.py +23 -4
  97. nuitka/code_generation/ModuleCodes.py +0 -7
  98. nuitka/code_generation/Namify.py +2 -0
  99. nuitka/code_generation/PackageResourceCodes.py +5 -1
  100. nuitka/code_generation/templates/CodeTemplatesConstants.py +6 -4
  101. nuitka/code_generation/templates/CodeTemplatesLoader.py +1 -1
  102. nuitka/code_generation/templates/CodeTemplatesModules.py +3 -3
  103. nuitka/code_generation/templates/CodeTemplatesVariables.py +16 -2
  104. nuitka/code_generation/templates_c/CodeTemplateCallsMethodPositional.c.j2 +2 -2
  105. nuitka/code_generation/templates_c/HelperOperationBinary.c.j2 +1 -1
  106. nuitka/code_generation/templates_c/HelperOperationInplace.c.j2 +1 -1
  107. nuitka/code_generation/templates_c/HelperSlotsBinary.c.j2 +7 -7
  108. nuitka/freezer/DependsExe.py +3 -1
  109. nuitka/freezer/DllDependenciesMacOS.py +28 -14
  110. nuitka/freezer/IncludedDataFiles.py +12 -3
  111. nuitka/freezer/IncludedEntryPoints.py +8 -2
  112. nuitka/freezer/Onefile.py +6 -1
  113. nuitka/freezer/Standalone.py +9 -2
  114. nuitka/importing/Importing.py +14 -5
  115. nuitka/importing/Recursion.py +3 -0
  116. nuitka/nodes/AttributeNodesGenerated.py +21 -12
  117. nuitka/nodes/BuiltinOpenNodes.py +5 -0
  118. nuitka/nodes/BuiltinOperationNodeBasesGenerated.py +11 -11
  119. nuitka/nodes/BuiltinRefNodes.py +41 -1
  120. nuitka/nodes/ChildrenHavingMixins.py +143 -355
  121. nuitka/nodes/ClassNodes.py +30 -12
  122. nuitka/nodes/CodeObjectSpecs.py +9 -0
  123. nuitka/nodes/ExpressionBasesGenerated.py +11 -11
  124. nuitka/nodes/FunctionNodes.py +11 -12
  125. nuitka/nodes/FutureSpecs.py +16 -3
  126. nuitka/nodes/GeneratorNodes.py +2 -2
  127. nuitka/nodes/HardImportNodesGenerated.py +11 -134
  128. nuitka/nodes/LocalsScopes.py +19 -23
  129. nuitka/nodes/MatchNodes.py +18 -7
  130. nuitka/nodes/ModuleAttributeNodes.py +1 -20
  131. nuitka/nodes/ModuleNodes.py +23 -6
  132. nuitka/nodes/NodeBases.py +13 -11
  133. nuitka/nodes/NodeMetaClasses.py +26 -10
  134. nuitka/nodes/ReturnNodes.py +1 -1
  135. nuitka/nodes/StatementBasesGenerated.py +11 -11
  136. nuitka/nodes/SubscriptNodes.py +4 -4
  137. nuitka/nodes/VariableAssignNodes.py +1 -1
  138. nuitka/nodes/VariableRefNodes.py +28 -2
  139. nuitka/nodes/shapes/BuiltinTypeShapes.py +21 -1
  140. nuitka/optimizations/FunctionInlining.py +3 -6
  141. nuitka/optimizations/Optimization.py +13 -12
  142. nuitka/optimizations/TraceCollections.py +19 -4
  143. nuitka/plugins/PluginBase.py +121 -133
  144. nuitka/plugins/Plugins.py +91 -3
  145. nuitka/plugins/YamlPluginBase.py +121 -0
  146. nuitka/plugins/standard/AntiBloatPlugin.py +87 -28
  147. nuitka/plugins/standard/DataFilesPlugin.py +15 -6
  148. nuitka/plugins/standard/DelvewheelPlugin.py +7 -3
  149. nuitka/plugins/standard/DllFilesPlugin.py +5 -3
  150. nuitka/plugins/standard/ImplicitImports.py +34 -20
  151. nuitka/plugins/standard/MatplotlibPlugin.py +3 -1
  152. nuitka/plugins/standard/MultiprocessingPlugin.py +2 -2
  153. nuitka/plugins/standard/OptionsNannyPlugin.py +1 -1
  154. nuitka/plugins/standard/PySidePyQtPlugin.py +11 -12
  155. nuitka/plugins/standard/SpacyPlugin.py +136 -0
  156. nuitka/plugins/standard/standard.nuitka-package.config.yml +491 -186
  157. nuitka/plugins/standard/stdlib3.nuitka-package.config.yml +17 -0
  158. nuitka/reports/Reports.py +53 -5
  159. nuitka/specs/BuiltinParameterSpecs.py +1 -1
  160. nuitka/specs/HardImportSpecs.py +0 -6
  161. nuitka/tools/data_composer/DataComposer.py +29 -27
  162. nuitka/tools/environments/CreateEnvironment.py +1 -0
  163. nuitka/tools/environments/Virtualenv.py +25 -11
  164. nuitka/tools/general/find_module/FindModuleCode.py +13 -3
  165. nuitka/tools/onefile_compressor/OnefileCompressor.py +21 -4
  166. nuitka/tools/scanning/DisplayPackageDLLs.py +17 -3
  167. nuitka/tools/specialize/CTypeDescriptions.py +13 -7
  168. nuitka/tools/specialize/SpecializePython.py +18 -1
  169. nuitka/tools/testing/Common.py +19 -6
  170. nuitka/tools/testing/check_reference_counts/__main__.py +1 -1
  171. nuitka/tools/testing/run_nuitka_tests/__main__.py +0 -20
  172. nuitka/tools/watch/AutoStage.py +144 -0
  173. nuitka/tools/watch/__main__.py +79 -32
  174. nuitka/tree/Building.py +105 -104
  175. nuitka/tree/ComplexCallHelperFunctions.py +16 -26
  176. nuitka/tree/InternalModule.py +9 -1
  177. nuitka/tree/ReformulationAssignmentStatements.py +29 -59
  178. nuitka/tree/ReformulationClasses.py +10 -17
  179. nuitka/tree/ReformulationClasses3.py +69 -43
  180. nuitka/tree/ReformulationComparisonExpressions.py +6 -16
  181. nuitka/tree/ReformulationContractionExpressions.py +14 -23
  182. nuitka/tree/ReformulationDictionaryCreation.py +6 -10
  183. nuitka/tree/ReformulationExecStatements.py +10 -10
  184. nuitka/tree/ReformulationForLoopStatements.py +6 -12
  185. nuitka/tree/ReformulationFunctionStatements.py +22 -28
  186. nuitka/tree/ReformulationImportStatements.py +8 -10
  187. nuitka/tree/ReformulationLambdaExpressions.py +3 -6
  188. nuitka/tree/ReformulationMatchStatements.py +166 -60
  189. nuitka/tree/ReformulationMultidist.py +3 -1
  190. nuitka/tree/ReformulationNamespacePackages.py +1 -1
  191. nuitka/tree/ReformulationPrintStatements.py +3 -6
  192. nuitka/tree/ReformulationSequenceCreation.py +13 -26
  193. nuitka/tree/ReformulationTryFinallyStatements.py +15 -0
  194. nuitka/tree/ReformulationWithStatements.py +12 -16
  195. nuitka/tree/SourceHandling.py +13 -8
  196. nuitka/tree/VariableClosure.py +5 -21
  197. nuitka/utils/Distributions.py +80 -11
  198. nuitka/utils/Download.py +38 -31
  199. nuitka/utils/Execution.py +21 -9
  200. nuitka/utils/FileOperations.py +55 -28
  201. nuitka/utils/Images.py +6 -1
  202. nuitka/utils/Importing.py +1 -1
  203. nuitka/utils/ModuleNames.py +11 -5
  204. nuitka/utils/ReExecute.py +17 -13
  205. nuitka/utils/SharedLibraries.py +69 -41
  206. nuitka/utils/Signing.py +3 -1
  207. nuitka/utils/StaticLibraries.py +51 -41
  208. nuitka/utils/Timing.py +1 -1
  209. nuitka/utils/Utils.py +29 -7
  210. /Nuitka_winsvc-2.3.9.data/scripts/nuitka.bat → /Nuitka_winsvc-2.4.1.data/scripts/nuitka.cmd +0 -0
  211. {Nuitka_winsvc-2.3.9.dist-info → Nuitka_winsvc-2.4.1.dist-info}/LICENSE.txt +0 -0
  212. {Nuitka_winsvc-2.3.9.dist-info → Nuitka_winsvc-2.4.1.dist-info}/entry_points.txt +0 -0
  213. {Nuitka_winsvc-2.3.9.dist-info → Nuitka_winsvc-2.4.1.dist-info}/top_level.txt +0 -0
@@ -80,7 +80,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
80
80
  // If the types are equal, we may get away immediately except for instances.
81
81
  if (type1 == type2 && !PyInstance_Check(operand1)) {
82
82
 
83
- richcmpfunc frich = RICHCOMPARE(type1);
83
+ richcmpfunc frich = TP_RICHCOMPARE(type1);
84
84
 
85
85
  if (frich != NULL) {
86
86
  PyObject *result = (*frich)(operand1, operand2, Py_EQ);
@@ -141,7 +141,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
141
141
  richcmpfunc f;
142
142
 
143
143
  if (type1 != type2 && Nuitka_Type_IsSubtype(type2, type1)) {
144
- f = RICHCOMPARE(type2);
144
+ f = TP_RICHCOMPARE(type2);
145
145
 
146
146
  if (f != NULL) {
147
147
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -156,7 +156,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
156
156
  }
157
157
  }
158
158
 
159
- f = RICHCOMPARE(type1);
159
+ f = TP_RICHCOMPARE(type1);
160
160
  if (f != NULL) {
161
161
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
162
162
 
@@ -169,7 +169,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
169
169
  Py_DECREF_IMMORTAL(result);
170
170
  }
171
171
 
172
- f = RICHCOMPARE(type2);
172
+ f = TP_RICHCOMPARE(type2);
173
173
  if (f != NULL) {
174
174
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
175
175
 
@@ -274,7 +274,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
274
274
  richcmpfunc f;
275
275
 
276
276
  if (type1 != type2 && Nuitka_Type_IsSubtype(type2, type1)) {
277
- f = RICHCOMPARE(type2);
277
+ f = TP_RICHCOMPARE(type2);
278
278
 
279
279
  if (f != NULL) {
280
280
  checked_reverse_op = true;
@@ -291,7 +291,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
291
291
  }
292
292
  }
293
293
 
294
- f = RICHCOMPARE(type1);
294
+ f = TP_RICHCOMPARE(type1);
295
295
 
296
296
  if (f != NULL) {
297
297
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
@@ -306,7 +306,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
306
306
  }
307
307
 
308
308
  if (checked_reverse_op == false) {
309
- f = RICHCOMPARE(type2);
309
+ f = TP_RICHCOMPARE(type2);
310
310
 
311
311
  if (f != NULL) {
312
312
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -384,7 +384,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
384
384
  // If the types are equal, we may get away immediately except for instances.
385
385
  if (type1 == type2 && !PyInstance_Check(operand1)) {
386
386
 
387
- richcmpfunc frich = RICHCOMPARE(type1);
387
+ richcmpfunc frich = TP_RICHCOMPARE(type1);
388
388
 
389
389
  if (frich != NULL) {
390
390
  PyObject *result = (*frich)(operand1, operand2, Py_EQ);
@@ -453,7 +453,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
453
453
  richcmpfunc f;
454
454
 
455
455
  if (type1 != type2 && Nuitka_Type_IsSubtype(type2, type1)) {
456
- f = RICHCOMPARE(type2);
456
+ f = TP_RICHCOMPARE(type2);
457
457
 
458
458
  if (f != NULL) {
459
459
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -476,7 +476,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
476
476
  }
477
477
  }
478
478
 
479
- f = RICHCOMPARE(type1);
479
+ f = TP_RICHCOMPARE(type1);
480
480
  if (f != NULL) {
481
481
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
482
482
 
@@ -497,7 +497,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
497
497
  Py_DECREF_IMMORTAL(result);
498
498
  }
499
499
 
500
- f = RICHCOMPARE(type2);
500
+ f = TP_RICHCOMPARE(type2);
501
501
  if (f != NULL) {
502
502
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
503
503
 
@@ -610,7 +610,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
610
610
  richcmpfunc f;
611
611
 
612
612
  if (type1 != type2 && Nuitka_Type_IsSubtype(type2, type1)) {
613
- f = RICHCOMPARE(type2);
613
+ f = TP_RICHCOMPARE(type2);
614
614
 
615
615
  if (f != NULL) {
616
616
  checked_reverse_op = true;
@@ -635,7 +635,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
635
635
  }
636
636
  }
637
637
 
638
- f = RICHCOMPARE(type1);
638
+ f = TP_RICHCOMPARE(type1);
639
639
 
640
640
  if (f != NULL) {
641
641
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
@@ -658,7 +658,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
658
658
  }
659
659
 
660
660
  if (checked_reverse_op == false) {
661
- f = RICHCOMPARE(type2);
661
+ f = TP_RICHCOMPARE(type2);
662
662
 
663
663
  if (f != NULL) {
664
664
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -857,7 +857,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_OBJECT_STR(PyObject *operand1, PyObject *operan
857
857
  }
858
858
  }
859
859
 
860
- f = RICHCOMPARE(type1);
860
+ f = TP_RICHCOMPARE(type1);
861
861
  if (f != NULL) {
862
862
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
863
863
 
@@ -992,7 +992,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_OBJECT_STR(PyObject *operand1, PyObject *operan
992
992
  }
993
993
  }
994
994
 
995
- f = RICHCOMPARE(type1);
995
+ f = TP_RICHCOMPARE(type1);
996
996
 
997
997
  if (f != NULL) {
998
998
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
@@ -1136,7 +1136,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_STR_OBJECT(PyObject *operand1, PyObject *operan
1136
1136
  richcmpfunc f;
1137
1137
 
1138
1138
  if (&PyString_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyString_Type)) {
1139
- f = RICHCOMPARE(type2);
1139
+ f = TP_RICHCOMPARE(type2);
1140
1140
 
1141
1141
  if (f != NULL) {
1142
1142
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -1164,7 +1164,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_STR_OBJECT(PyObject *operand1, PyObject *operan
1164
1164
  Py_DECREF_IMMORTAL(result);
1165
1165
  }
1166
1166
 
1167
- f = RICHCOMPARE(type2);
1167
+ f = TP_RICHCOMPARE(type2);
1168
1168
  if (f != NULL) {
1169
1169
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
1170
1170
 
@@ -1269,7 +1269,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_STR_OBJECT(PyObject *operand1, PyObject *operan
1269
1269
  richcmpfunc f;
1270
1270
 
1271
1271
  if (&PyString_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyString_Type)) {
1272
- f = RICHCOMPARE(type2);
1272
+ f = TP_RICHCOMPARE(type2);
1273
1273
 
1274
1274
  if (f != NULL) {
1275
1275
  checked_reverse_op = true;
@@ -1301,7 +1301,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_STR_OBJECT(PyObject *operand1, PyObject *operan
1301
1301
  }
1302
1302
 
1303
1303
  if (checked_reverse_op == false) {
1304
- f = RICHCOMPARE(type2);
1304
+ f = TP_RICHCOMPARE(type2);
1305
1305
 
1306
1306
  if (f != NULL) {
1307
1307
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -1524,7 +1524,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_OBJECT_STR(PyObject *operand1, PyObject *opera
1524
1524
  }
1525
1525
  }
1526
1526
 
1527
- f = RICHCOMPARE(type1);
1527
+ f = TP_RICHCOMPARE(type1);
1528
1528
  if (f != NULL) {
1529
1529
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
1530
1530
 
@@ -1683,7 +1683,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_OBJECT_STR(PyObject *operand1, PyObject *opera
1683
1683
  }
1684
1684
  }
1685
1685
 
1686
- f = RICHCOMPARE(type1);
1686
+ f = TP_RICHCOMPARE(type1);
1687
1687
 
1688
1688
  if (f != NULL) {
1689
1689
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
@@ -1851,7 +1851,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_STR_OBJECT(PyObject *operand1, PyObject *opera
1851
1851
  richcmpfunc f;
1852
1852
 
1853
1853
  if (&PyString_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyString_Type)) {
1854
- f = RICHCOMPARE(type2);
1854
+ f = TP_RICHCOMPARE(type2);
1855
1855
 
1856
1856
  if (f != NULL) {
1857
1857
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -1895,7 +1895,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_STR_OBJECT(PyObject *operand1, PyObject *opera
1895
1895
  Py_DECREF_IMMORTAL(result);
1896
1896
  }
1897
1897
 
1898
- f = RICHCOMPARE(type2);
1898
+ f = TP_RICHCOMPARE(type2);
1899
1899
  if (f != NULL) {
1900
1900
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
1901
1901
 
@@ -2008,7 +2008,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_STR_OBJECT(PyObject *operand1, PyObject *opera
2008
2008
  richcmpfunc f;
2009
2009
 
2010
2010
  if (&PyString_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyString_Type)) {
2011
- f = RICHCOMPARE(type2);
2011
+ f = TP_RICHCOMPARE(type2);
2012
2012
 
2013
2013
  if (f != NULL) {
2014
2014
  checked_reverse_op = true;
@@ -2056,7 +2056,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_STR_OBJECT(PyObject *operand1, PyObject *opera
2056
2056
  }
2057
2057
 
2058
2058
  if (checked_reverse_op == false) {
2059
- f = RICHCOMPARE(type2);
2059
+ f = TP_RICHCOMPARE(type2);
2060
2060
 
2061
2061
  if (f != NULL) {
2062
2062
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -2286,7 +2286,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_OBJECT_UNICODE(PyObject *operand1, PyObject *op
2286
2286
  }
2287
2287
  }
2288
2288
 
2289
- f = RICHCOMPARE(type1);
2289
+ f = TP_RICHCOMPARE(type1);
2290
2290
  if (f != NULL) {
2291
2291
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
2292
2292
 
@@ -2421,7 +2421,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_OBJECT_UNICODE(PyObject *operand1, PyObject *op
2421
2421
  }
2422
2422
  }
2423
2423
 
2424
- f = RICHCOMPARE(type1);
2424
+ f = TP_RICHCOMPARE(type1);
2425
2425
 
2426
2426
  if (f != NULL) {
2427
2427
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
@@ -2565,7 +2565,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_UNICODE_OBJECT(PyObject *operand1, PyObject *op
2565
2565
  richcmpfunc f;
2566
2566
 
2567
2567
  if (&PyUnicode_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyUnicode_Type)) {
2568
- f = RICHCOMPARE(type2);
2568
+ f = TP_RICHCOMPARE(type2);
2569
2569
 
2570
2570
  if (f != NULL) {
2571
2571
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -2593,7 +2593,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_UNICODE_OBJECT(PyObject *operand1, PyObject *op
2593
2593
  Py_DECREF_IMMORTAL(result);
2594
2594
  }
2595
2595
 
2596
- f = RICHCOMPARE(type2);
2596
+ f = TP_RICHCOMPARE(type2);
2597
2597
  if (f != NULL) {
2598
2598
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
2599
2599
 
@@ -2698,7 +2698,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_UNICODE_OBJECT(PyObject *operand1, PyObject *op
2698
2698
  richcmpfunc f;
2699
2699
 
2700
2700
  if (&PyUnicode_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyUnicode_Type)) {
2701
- f = RICHCOMPARE(type2);
2701
+ f = TP_RICHCOMPARE(type2);
2702
2702
 
2703
2703
  if (f != NULL) {
2704
2704
  checked_reverse_op = true;
@@ -2730,7 +2730,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_UNICODE_OBJECT(PyObject *operand1, PyObject *op
2730
2730
  }
2731
2731
 
2732
2732
  if (checked_reverse_op == false) {
2733
- f = RICHCOMPARE(type2);
2733
+ f = TP_RICHCOMPARE(type2);
2734
2734
 
2735
2735
  if (f != NULL) {
2736
2736
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -2983,7 +2983,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_OBJECT_UNICODE(PyObject *operand1, PyObject *o
2983
2983
  }
2984
2984
  }
2985
2985
 
2986
- f = RICHCOMPARE(type1);
2986
+ f = TP_RICHCOMPARE(type1);
2987
2987
  if (f != NULL) {
2988
2988
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
2989
2989
 
@@ -3142,7 +3142,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_OBJECT_UNICODE(PyObject *operand1, PyObject *o
3142
3142
  }
3143
3143
  }
3144
3144
 
3145
- f = RICHCOMPARE(type1);
3145
+ f = TP_RICHCOMPARE(type1);
3146
3146
 
3147
3147
  if (f != NULL) {
3148
3148
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
@@ -3310,7 +3310,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_UNICODE_OBJECT(PyObject *operand1, PyObject *o
3310
3310
  richcmpfunc f;
3311
3311
 
3312
3312
  if (&PyUnicode_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyUnicode_Type)) {
3313
- f = RICHCOMPARE(type2);
3313
+ f = TP_RICHCOMPARE(type2);
3314
3314
 
3315
3315
  if (f != NULL) {
3316
3316
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -3354,7 +3354,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_UNICODE_OBJECT(PyObject *operand1, PyObject *o
3354
3354
  Py_DECREF_IMMORTAL(result);
3355
3355
  }
3356
3356
 
3357
- f = RICHCOMPARE(type2);
3357
+ f = TP_RICHCOMPARE(type2);
3358
3358
  if (f != NULL) {
3359
3359
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
3360
3360
 
@@ -3467,7 +3467,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_UNICODE_OBJECT(PyObject *operand1, PyObject *o
3467
3467
  richcmpfunc f;
3468
3468
 
3469
3469
  if (&PyUnicode_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyUnicode_Type)) {
3470
- f = RICHCOMPARE(type2);
3470
+ f = TP_RICHCOMPARE(type2);
3471
3471
 
3472
3472
  if (f != NULL) {
3473
3473
  checked_reverse_op = true;
@@ -3515,7 +3515,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_UNICODE_OBJECT(PyObject *operand1, PyObject *o
3515
3515
  }
3516
3516
 
3517
3517
  if (checked_reverse_op == false) {
3518
- f = RICHCOMPARE(type2);
3518
+ f = TP_RICHCOMPARE(type2);
3519
3519
 
3520
3520
  if (f != NULL) {
3521
3521
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -3715,7 +3715,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_OBJECT_BYTES(PyObject *operand1, PyObject *oper
3715
3715
  }
3716
3716
  }
3717
3717
 
3718
- f = RICHCOMPARE(type1);
3718
+ f = TP_RICHCOMPARE(type1);
3719
3719
  if (f != NULL) {
3720
3720
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
3721
3721
 
@@ -3850,7 +3850,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_OBJECT_BYTES(PyObject *operand1, PyObject *oper
3850
3850
  }
3851
3851
  }
3852
3852
 
3853
- f = RICHCOMPARE(type1);
3853
+ f = TP_RICHCOMPARE(type1);
3854
3854
 
3855
3855
  if (f != NULL) {
3856
3856
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
@@ -3994,7 +3994,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_BYTES_OBJECT(PyObject *operand1, PyObject *oper
3994
3994
  richcmpfunc f;
3995
3995
 
3996
3996
  if (&PyBytes_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyBytes_Type)) {
3997
- f = RICHCOMPARE(type2);
3997
+ f = TP_RICHCOMPARE(type2);
3998
3998
 
3999
3999
  if (f != NULL) {
4000
4000
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -4022,7 +4022,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_BYTES_OBJECT(PyObject *operand1, PyObject *oper
4022
4022
  Py_DECREF_IMMORTAL(result);
4023
4023
  }
4024
4024
 
4025
- f = RICHCOMPARE(type2);
4025
+ f = TP_RICHCOMPARE(type2);
4026
4026
  if (f != NULL) {
4027
4027
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
4028
4028
 
@@ -4127,7 +4127,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_BYTES_OBJECT(PyObject *operand1, PyObject *oper
4127
4127
  richcmpfunc f;
4128
4128
 
4129
4129
  if (&PyBytes_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyBytes_Type)) {
4130
- f = RICHCOMPARE(type2);
4130
+ f = TP_RICHCOMPARE(type2);
4131
4131
 
4132
4132
  if (f != NULL) {
4133
4133
  checked_reverse_op = true;
@@ -4159,7 +4159,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_BYTES_OBJECT(PyObject *operand1, PyObject *oper
4159
4159
  }
4160
4160
 
4161
4161
  if (checked_reverse_op == false) {
4162
- f = RICHCOMPARE(type2);
4162
+ f = TP_RICHCOMPARE(type2);
4163
4163
 
4164
4164
  if (f != NULL) {
4165
4165
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -4382,7 +4382,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_OBJECT_BYTES(PyObject *operand1, PyObject *ope
4382
4382
  }
4383
4383
  }
4384
4384
 
4385
- f = RICHCOMPARE(type1);
4385
+ f = TP_RICHCOMPARE(type1);
4386
4386
  if (f != NULL) {
4387
4387
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
4388
4388
 
@@ -4541,7 +4541,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_OBJECT_BYTES(PyObject *operand1, PyObject *ope
4541
4541
  }
4542
4542
  }
4543
4543
 
4544
- f = RICHCOMPARE(type1);
4544
+ f = TP_RICHCOMPARE(type1);
4545
4545
 
4546
4546
  if (f != NULL) {
4547
4547
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
@@ -4709,7 +4709,7 @@ nuitka_bool RICH_COMPARE_EQ_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
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -4753,7 +4753,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_BYTES_OBJECT(PyObject *operand1, PyObject *ope
4753
4753
  Py_DECREF_IMMORTAL(result);
4754
4754
  }
4755
4755
 
4756
- f = RICHCOMPARE(type2);
4756
+ f = TP_RICHCOMPARE(type2);
4757
4757
  if (f != NULL) {
4758
4758
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
4759
4759
 
@@ -4866,7 +4866,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_BYTES_OBJECT(PyObject *operand1, PyObject *ope
4866
4866
  richcmpfunc f;
4867
4867
 
4868
4868
  if (&PyBytes_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyBytes_Type)) {
4869
- f = RICHCOMPARE(type2);
4869
+ f = TP_RICHCOMPARE(type2);
4870
4870
 
4871
4871
  if (f != NULL) {
4872
4872
  checked_reverse_op = true;
@@ -4914,7 +4914,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_BYTES_OBJECT(PyObject *operand1, PyObject *ope
4914
4914
  }
4915
4915
 
4916
4916
  if (checked_reverse_op == false) {
4917
- f = RICHCOMPARE(type2);
4917
+ f = TP_RICHCOMPARE(type2);
4918
4918
 
4919
4919
  if (f != NULL) {
4920
4920
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -5066,7 +5066,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_OBJECT_INT(PyObject *operand1, PyObject *operan
5066
5066
  }
5067
5067
  }
5068
5068
 
5069
- f = RICHCOMPARE(type1);
5069
+ f = TP_RICHCOMPARE(type1);
5070
5070
  if (f != NULL) {
5071
5071
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
5072
5072
 
@@ -5201,7 +5201,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_OBJECT_INT(PyObject *operand1, PyObject *operan
5201
5201
  }
5202
5202
  }
5203
5203
 
5204
- f = RICHCOMPARE(type1);
5204
+ f = TP_RICHCOMPARE(type1);
5205
5205
 
5206
5206
  if (f != NULL) {
5207
5207
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
@@ -5345,7 +5345,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_INT_OBJECT(PyObject *operand1, PyObject *operan
5345
5345
  richcmpfunc f;
5346
5346
 
5347
5347
  if (&PyInt_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyInt_Type)) {
5348
- f = RICHCOMPARE(type2);
5348
+ f = TP_RICHCOMPARE(type2);
5349
5349
 
5350
5350
  if (f != NULL) {
5351
5351
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -5373,7 +5373,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_INT_OBJECT(PyObject *operand1, PyObject *operan
5373
5373
  Py_DECREF_IMMORTAL(result);
5374
5374
  }
5375
5375
 
5376
- f = RICHCOMPARE(type2);
5376
+ f = TP_RICHCOMPARE(type2);
5377
5377
  if (f != NULL) {
5378
5378
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
5379
5379
 
@@ -5478,7 +5478,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_INT_OBJECT(PyObject *operand1, PyObject *operan
5478
5478
  richcmpfunc f;
5479
5479
 
5480
5480
  if (&PyInt_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyInt_Type)) {
5481
- f = RICHCOMPARE(type2);
5481
+ f = TP_RICHCOMPARE(type2);
5482
5482
 
5483
5483
  if (f != NULL) {
5484
5484
  checked_reverse_op = true;
@@ -5510,7 +5510,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_INT_OBJECT(PyObject *operand1, PyObject *operan
5510
5510
  }
5511
5511
 
5512
5512
  if (checked_reverse_op == false) {
5513
- f = RICHCOMPARE(type2);
5513
+ f = TP_RICHCOMPARE(type2);
5514
5514
 
5515
5515
  if (f != NULL) {
5516
5516
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -5686,7 +5686,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_OBJECT_INT(PyObject *operand1, PyObject *opera
5686
5686
  }
5687
5687
  }
5688
5688
 
5689
- f = RICHCOMPARE(type1);
5689
+ f = TP_RICHCOMPARE(type1);
5690
5690
  if (f != NULL) {
5691
5691
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
5692
5692
 
@@ -5845,7 +5845,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_OBJECT_INT(PyObject *operand1, PyObject *opera
5845
5845
  }
5846
5846
  }
5847
5847
 
5848
- f = RICHCOMPARE(type1);
5848
+ f = TP_RICHCOMPARE(type1);
5849
5849
 
5850
5850
  if (f != NULL) {
5851
5851
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
@@ -6013,7 +6013,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_INT_OBJECT(PyObject *operand1, PyObject *opera
6013
6013
  richcmpfunc f;
6014
6014
 
6015
6015
  if (&PyInt_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyInt_Type)) {
6016
- f = RICHCOMPARE(type2);
6016
+ f = TP_RICHCOMPARE(type2);
6017
6017
 
6018
6018
  if (f != NULL) {
6019
6019
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -6057,7 +6057,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_INT_OBJECT(PyObject *operand1, PyObject *opera
6057
6057
  Py_DECREF_IMMORTAL(result);
6058
6058
  }
6059
6059
 
6060
- f = RICHCOMPARE(type2);
6060
+ f = TP_RICHCOMPARE(type2);
6061
6061
  if (f != NULL) {
6062
6062
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
6063
6063
 
@@ -6170,7 +6170,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_INT_OBJECT(PyObject *operand1, PyObject *opera
6170
6170
  richcmpfunc f;
6171
6171
 
6172
6172
  if (&PyInt_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyInt_Type)) {
6173
- f = RICHCOMPARE(type2);
6173
+ f = TP_RICHCOMPARE(type2);
6174
6174
 
6175
6175
  if (f != NULL) {
6176
6176
  checked_reverse_op = true;
@@ -6218,7 +6218,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_INT_OBJECT(PyObject *operand1, PyObject *opera
6218
6218
  }
6219
6219
 
6220
6220
  if (checked_reverse_op == false) {
6221
- f = RICHCOMPARE(type2);
6221
+ f = TP_RICHCOMPARE(type2);
6222
6222
 
6223
6223
  if (f != NULL) {
6224
6224
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -6404,7 +6404,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_OBJECT_LONG(PyObject *operand1, PyObject *opera
6404
6404
  }
6405
6405
  }
6406
6406
 
6407
- f = RICHCOMPARE(type1);
6407
+ f = TP_RICHCOMPARE(type1);
6408
6408
  if (f != NULL) {
6409
6409
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
6410
6410
 
@@ -6539,7 +6539,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_OBJECT_LONG(PyObject *operand1, PyObject *opera
6539
6539
  }
6540
6540
  }
6541
6541
 
6542
- f = RICHCOMPARE(type1);
6542
+ f = TP_RICHCOMPARE(type1);
6543
6543
 
6544
6544
  if (f != NULL) {
6545
6545
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
@@ -6683,7 +6683,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_LONG_OBJECT(PyObject *operand1, PyObject *opera
6683
6683
  richcmpfunc f;
6684
6684
 
6685
6685
  if (&PyLong_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyLong_Type)) {
6686
- f = RICHCOMPARE(type2);
6686
+ f = TP_RICHCOMPARE(type2);
6687
6687
 
6688
6688
  if (f != NULL) {
6689
6689
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -6711,7 +6711,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_LONG_OBJECT(PyObject *operand1, PyObject *opera
6711
6711
  Py_DECREF_IMMORTAL(result);
6712
6712
  }
6713
6713
 
6714
- f = RICHCOMPARE(type2);
6714
+ f = TP_RICHCOMPARE(type2);
6715
6715
  if (f != NULL) {
6716
6716
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
6717
6717
 
@@ -6816,7 +6816,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_LONG_OBJECT(PyObject *operand1, PyObject *opera
6816
6816
  richcmpfunc f;
6817
6817
 
6818
6818
  if (&PyLong_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyLong_Type)) {
6819
- f = RICHCOMPARE(type2);
6819
+ f = TP_RICHCOMPARE(type2);
6820
6820
 
6821
6821
  if (f != NULL) {
6822
6822
  checked_reverse_op = true;
@@ -6848,7 +6848,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_LONG_OBJECT(PyObject *operand1, PyObject *opera
6848
6848
  }
6849
6849
 
6850
6850
  if (checked_reverse_op == false) {
6851
- f = RICHCOMPARE(type2);
6851
+ f = TP_RICHCOMPARE(type2);
6852
6852
 
6853
6853
  if (f != NULL) {
6854
6854
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -7055,7 +7055,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_OBJECT_LONG(PyObject *operand1, PyObject *oper
7055
7055
  }
7056
7056
  }
7057
7057
 
7058
- f = RICHCOMPARE(type1);
7058
+ f = TP_RICHCOMPARE(type1);
7059
7059
  if (f != NULL) {
7060
7060
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
7061
7061
 
@@ -7214,7 +7214,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_OBJECT_LONG(PyObject *operand1, PyObject *oper
7214
7214
  }
7215
7215
  }
7216
7216
 
7217
- f = RICHCOMPARE(type1);
7217
+ f = TP_RICHCOMPARE(type1);
7218
7218
 
7219
7219
  if (f != NULL) {
7220
7220
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
@@ -7382,7 +7382,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_LONG_OBJECT(PyObject *operand1, PyObject *oper
7382
7382
  richcmpfunc f;
7383
7383
 
7384
7384
  if (&PyLong_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyLong_Type)) {
7385
- f = RICHCOMPARE(type2);
7385
+ f = TP_RICHCOMPARE(type2);
7386
7386
 
7387
7387
  if (f != NULL) {
7388
7388
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -7426,7 +7426,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_LONG_OBJECT(PyObject *operand1, PyObject *oper
7426
7426
  Py_DECREF_IMMORTAL(result);
7427
7427
  }
7428
7428
 
7429
- f = RICHCOMPARE(type2);
7429
+ f = TP_RICHCOMPARE(type2);
7430
7430
  if (f != NULL) {
7431
7431
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
7432
7432
 
@@ -7539,7 +7539,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_LONG_OBJECT(PyObject *operand1, PyObject *oper
7539
7539
  richcmpfunc f;
7540
7540
 
7541
7541
  if (&PyLong_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyLong_Type)) {
7542
- f = RICHCOMPARE(type2);
7542
+ f = TP_RICHCOMPARE(type2);
7543
7543
 
7544
7544
  if (f != NULL) {
7545
7545
  checked_reverse_op = true;
@@ -7587,7 +7587,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_LONG_OBJECT(PyObject *operand1, PyObject *oper
7587
7587
  }
7588
7588
 
7589
7589
  if (checked_reverse_op == false) {
7590
- f = RICHCOMPARE(type2);
7590
+ f = TP_RICHCOMPARE(type2);
7591
7591
 
7592
7592
  if (f != NULL) {
7593
7593
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -7755,7 +7755,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_OBJECT_FLOAT(PyObject *operand1, PyObject *oper
7755
7755
  }
7756
7756
  }
7757
7757
 
7758
- f = RICHCOMPARE(type1);
7758
+ f = TP_RICHCOMPARE(type1);
7759
7759
  if (f != NULL) {
7760
7760
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
7761
7761
 
@@ -7890,7 +7890,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_OBJECT_FLOAT(PyObject *operand1, PyObject *oper
7890
7890
  }
7891
7891
  }
7892
7892
 
7893
- f = RICHCOMPARE(type1);
7893
+ f = TP_RICHCOMPARE(type1);
7894
7894
 
7895
7895
  if (f != NULL) {
7896
7896
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
@@ -8032,7 +8032,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_FLOAT_OBJECT(PyObject *operand1, PyObject *oper
8032
8032
  richcmpfunc f;
8033
8033
 
8034
8034
  if (&PyFloat_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyFloat_Type)) {
8035
- f = RICHCOMPARE(type2);
8035
+ f = TP_RICHCOMPARE(type2);
8036
8036
 
8037
8037
  if (f != NULL) {
8038
8038
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -8060,7 +8060,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_FLOAT_OBJECT(PyObject *operand1, PyObject *oper
8060
8060
  Py_DECREF_IMMORTAL(result);
8061
8061
  }
8062
8062
 
8063
- f = RICHCOMPARE(type2);
8063
+ f = TP_RICHCOMPARE(type2);
8064
8064
  if (f != NULL) {
8065
8065
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
8066
8066
 
@@ -8165,7 +8165,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_FLOAT_OBJECT(PyObject *operand1, PyObject *oper
8165
8165
  richcmpfunc f;
8166
8166
 
8167
8167
  if (&PyFloat_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyFloat_Type)) {
8168
- f = RICHCOMPARE(type2);
8168
+ f = TP_RICHCOMPARE(type2);
8169
8169
 
8170
8170
  if (f != NULL) {
8171
8171
  checked_reverse_op = true;
@@ -8197,7 +8197,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_FLOAT_OBJECT(PyObject *operand1, PyObject *oper
8197
8197
  }
8198
8198
 
8199
8199
  if (checked_reverse_op == false) {
8200
- f = RICHCOMPARE(type2);
8200
+ f = TP_RICHCOMPARE(type2);
8201
8201
 
8202
8202
  if (f != NULL) {
8203
8203
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -8383,7 +8383,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_OBJECT_FLOAT(PyObject *operand1, PyObject *ope
8383
8383
  }
8384
8384
  }
8385
8385
 
8386
- f = RICHCOMPARE(type1);
8386
+ f = TP_RICHCOMPARE(type1);
8387
8387
  if (f != NULL) {
8388
8388
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
8389
8389
 
@@ -8542,7 +8542,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_OBJECT_FLOAT(PyObject *operand1, PyObject *ope
8542
8542
  }
8543
8543
  }
8544
8544
 
8545
- f = RICHCOMPARE(type1);
8545
+ f = TP_RICHCOMPARE(type1);
8546
8546
 
8547
8547
  if (f != NULL) {
8548
8548
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
@@ -8708,7 +8708,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_FLOAT_OBJECT(PyObject *operand1, PyObject *ope
8708
8708
  richcmpfunc f;
8709
8709
 
8710
8710
  if (&PyFloat_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyFloat_Type)) {
8711
- f = RICHCOMPARE(type2);
8711
+ f = TP_RICHCOMPARE(type2);
8712
8712
 
8713
8713
  if (f != NULL) {
8714
8714
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -8752,7 +8752,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_FLOAT_OBJECT(PyObject *operand1, PyObject *ope
8752
8752
  Py_DECREF_IMMORTAL(result);
8753
8753
  }
8754
8754
 
8755
- f = RICHCOMPARE(type2);
8755
+ f = TP_RICHCOMPARE(type2);
8756
8756
  if (f != NULL) {
8757
8757
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
8758
8758
 
@@ -8865,7 +8865,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_FLOAT_OBJECT(PyObject *operand1, PyObject *ope
8865
8865
  richcmpfunc f;
8866
8866
 
8867
8867
  if (&PyFloat_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyFloat_Type)) {
8868
- f = RICHCOMPARE(type2);
8868
+ f = TP_RICHCOMPARE(type2);
8869
8869
 
8870
8870
  if (f != NULL) {
8871
8871
  checked_reverse_op = true;
@@ -8913,7 +8913,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_FLOAT_OBJECT(PyObject *operand1, PyObject *ope
8913
8913
  }
8914
8914
 
8915
8915
  if (checked_reverse_op == false) {
8916
- f = RICHCOMPARE(type2);
8916
+ f = TP_RICHCOMPARE(type2);
8917
8917
 
8918
8918
  if (f != NULL) {
8919
8919
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -9113,7 +9113,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_OBJECT_TUPLE(PyObject *operand1, PyObject *oper
9113
9113
  }
9114
9114
  }
9115
9115
 
9116
- f = RICHCOMPARE(type1);
9116
+ f = TP_RICHCOMPARE(type1);
9117
9117
  if (f != NULL) {
9118
9118
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
9119
9119
 
@@ -9248,7 +9248,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_OBJECT_TUPLE(PyObject *operand1, PyObject *oper
9248
9248
  }
9249
9249
  }
9250
9250
 
9251
- f = RICHCOMPARE(type1);
9251
+ f = TP_RICHCOMPARE(type1);
9252
9252
 
9253
9253
  if (f != NULL) {
9254
9254
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
@@ -9390,7 +9390,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_TUPLE_OBJECT(PyObject *operand1, PyObject *oper
9390
9390
  richcmpfunc f;
9391
9391
 
9392
9392
  if (&PyTuple_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyTuple_Type)) {
9393
- f = RICHCOMPARE(type2);
9393
+ f = TP_RICHCOMPARE(type2);
9394
9394
 
9395
9395
  if (f != NULL) {
9396
9396
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -9418,7 +9418,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_TUPLE_OBJECT(PyObject *operand1, PyObject *oper
9418
9418
  Py_DECREF_IMMORTAL(result);
9419
9419
  }
9420
9420
 
9421
- f = RICHCOMPARE(type2);
9421
+ f = TP_RICHCOMPARE(type2);
9422
9422
  if (f != NULL) {
9423
9423
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
9424
9424
 
@@ -9523,7 +9523,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_TUPLE_OBJECT(PyObject *operand1, PyObject *oper
9523
9523
  richcmpfunc f;
9524
9524
 
9525
9525
  if (&PyTuple_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyTuple_Type)) {
9526
- f = RICHCOMPARE(type2);
9526
+ f = TP_RICHCOMPARE(type2);
9527
9527
 
9528
9528
  if (f != NULL) {
9529
9529
  checked_reverse_op = true;
@@ -9555,7 +9555,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_TUPLE_OBJECT(PyObject *operand1, PyObject *oper
9555
9555
  }
9556
9556
 
9557
9557
  if (checked_reverse_op == false) {
9558
- f = RICHCOMPARE(type2);
9558
+ f = TP_RICHCOMPARE(type2);
9559
9559
 
9560
9560
  if (f != NULL) {
9561
9561
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -9769,7 +9769,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_OBJECT_TUPLE(PyObject *operand1, PyObject *ope
9769
9769
  }
9770
9770
  }
9771
9771
 
9772
- f = RICHCOMPARE(type1);
9772
+ f = TP_RICHCOMPARE(type1);
9773
9773
  if (f != NULL) {
9774
9774
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
9775
9775
 
@@ -9928,7 +9928,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_OBJECT_TUPLE(PyObject *operand1, PyObject *ope
9928
9928
  }
9929
9929
  }
9930
9930
 
9931
- f = RICHCOMPARE(type1);
9931
+ f = TP_RICHCOMPARE(type1);
9932
9932
 
9933
9933
  if (f != NULL) {
9934
9934
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
@@ -10094,7 +10094,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_TUPLE_OBJECT(PyObject *operand1, PyObject *ope
10094
10094
  richcmpfunc f;
10095
10095
 
10096
10096
  if (&PyTuple_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyTuple_Type)) {
10097
- f = RICHCOMPARE(type2);
10097
+ f = TP_RICHCOMPARE(type2);
10098
10098
 
10099
10099
  if (f != NULL) {
10100
10100
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -10138,7 +10138,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_TUPLE_OBJECT(PyObject *operand1, PyObject *ope
10138
10138
  Py_DECREF_IMMORTAL(result);
10139
10139
  }
10140
10140
 
10141
- f = RICHCOMPARE(type2);
10141
+ f = TP_RICHCOMPARE(type2);
10142
10142
  if (f != NULL) {
10143
10143
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
10144
10144
 
@@ -10251,7 +10251,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_TUPLE_OBJECT(PyObject *operand1, PyObject *ope
10251
10251
  richcmpfunc f;
10252
10252
 
10253
10253
  if (&PyTuple_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyTuple_Type)) {
10254
- f = RICHCOMPARE(type2);
10254
+ f = TP_RICHCOMPARE(type2);
10255
10255
 
10256
10256
  if (f != NULL) {
10257
10257
  checked_reverse_op = true;
@@ -10299,7 +10299,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_TUPLE_OBJECT(PyObject *operand1, PyObject *ope
10299
10299
  }
10300
10300
 
10301
10301
  if (checked_reverse_op == false) {
10302
- f = RICHCOMPARE(type2);
10302
+ f = TP_RICHCOMPARE(type2);
10303
10303
 
10304
10304
  if (f != NULL) {
10305
10305
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -10511,7 +10511,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_OBJECT_LIST(PyObject *operand1, PyObject *opera
10511
10511
  }
10512
10512
  }
10513
10513
 
10514
- f = RICHCOMPARE(type1);
10514
+ f = TP_RICHCOMPARE(type1);
10515
10515
  if (f != NULL) {
10516
10516
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
10517
10517
 
@@ -10646,7 +10646,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_OBJECT_LIST(PyObject *operand1, PyObject *opera
10646
10646
  }
10647
10647
  }
10648
10648
 
10649
- f = RICHCOMPARE(type1);
10649
+ f = TP_RICHCOMPARE(type1);
10650
10650
 
10651
10651
  if (f != NULL) {
10652
10652
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
@@ -10788,7 +10788,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_LIST_OBJECT(PyObject *operand1, PyObject *opera
10788
10788
  richcmpfunc f;
10789
10789
 
10790
10790
  if (&PyList_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyList_Type)) {
10791
- f = RICHCOMPARE(type2);
10791
+ f = TP_RICHCOMPARE(type2);
10792
10792
 
10793
10793
  if (f != NULL) {
10794
10794
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -10816,7 +10816,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_LIST_OBJECT(PyObject *operand1, PyObject *opera
10816
10816
  Py_DECREF_IMMORTAL(result);
10817
10817
  }
10818
10818
 
10819
- f = RICHCOMPARE(type2);
10819
+ f = TP_RICHCOMPARE(type2);
10820
10820
  if (f != NULL) {
10821
10821
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
10822
10822
 
@@ -10921,7 +10921,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_LIST_OBJECT(PyObject *operand1, PyObject *opera
10921
10921
  richcmpfunc f;
10922
10922
 
10923
10923
  if (&PyList_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyList_Type)) {
10924
- f = RICHCOMPARE(type2);
10924
+ f = TP_RICHCOMPARE(type2);
10925
10925
 
10926
10926
  if (f != NULL) {
10927
10927
  checked_reverse_op = true;
@@ -10953,7 +10953,7 @@ PyObject *RICH_COMPARE_EQ_OBJECT_LIST_OBJECT(PyObject *operand1, PyObject *opera
10953
10953
  }
10954
10954
 
10955
10955
  if (checked_reverse_op == false) {
10956
- f = RICHCOMPARE(type2);
10956
+ f = TP_RICHCOMPARE(type2);
10957
10957
 
10958
10958
  if (f != NULL) {
10959
10959
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -11173,7 +11173,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_OBJECT_LIST(PyObject *operand1, PyObject *oper
11173
11173
  }
11174
11174
  }
11175
11175
 
11176
- f = RICHCOMPARE(type1);
11176
+ f = TP_RICHCOMPARE(type1);
11177
11177
  if (f != NULL) {
11178
11178
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
11179
11179
 
@@ -11332,7 +11332,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_OBJECT_LIST(PyObject *operand1, PyObject *oper
11332
11332
  }
11333
11333
  }
11334
11334
 
11335
- f = RICHCOMPARE(type1);
11335
+ f = TP_RICHCOMPARE(type1);
11336
11336
 
11337
11337
  if (f != NULL) {
11338
11338
  PyObject *result = (*f)(operand1, operand2, Py_EQ);
@@ -11498,7 +11498,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_LIST_OBJECT(PyObject *operand1, PyObject *oper
11498
11498
  richcmpfunc f;
11499
11499
 
11500
11500
  if (&PyList_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyList_Type)) {
11501
- f = RICHCOMPARE(type2);
11501
+ f = TP_RICHCOMPARE(type2);
11502
11502
 
11503
11503
  if (f != NULL) {
11504
11504
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
@@ -11542,7 +11542,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_LIST_OBJECT(PyObject *operand1, PyObject *oper
11542
11542
  Py_DECREF_IMMORTAL(result);
11543
11543
  }
11544
11544
 
11545
- f = RICHCOMPARE(type2);
11545
+ f = TP_RICHCOMPARE(type2);
11546
11546
  if (f != NULL) {
11547
11547
  PyObject *result = (*f)(operand2, operand1, Py_EQ);
11548
11548
 
@@ -11655,7 +11655,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_LIST_OBJECT(PyObject *operand1, PyObject *oper
11655
11655
  richcmpfunc f;
11656
11656
 
11657
11657
  if (&PyList_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyList_Type)) {
11658
- f = RICHCOMPARE(type2);
11658
+ f = TP_RICHCOMPARE(type2);
11659
11659
 
11660
11660
  if (f != NULL) {
11661
11661
  checked_reverse_op = true;
@@ -11703,7 +11703,7 @@ nuitka_bool RICH_COMPARE_EQ_NBOOL_LIST_OBJECT(PyObject *operand1, PyObject *oper
11703
11703
  }
11704
11704
 
11705
11705
  if (checked_reverse_op == false) {
11706
- f = RICHCOMPARE(type2);
11706
+ f = TP_RICHCOMPARE(type2);
11707
11707
 
11708
11708
  if (f != NULL) {
11709
11709
  PyObject *result = (*f)(operand2, operand1, Py_EQ);