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.
- Nuitka_winsvc-2.3.9.data/scripts/nuitka-run.bat → Nuitka_winsvc-2.4.1.data/scripts/nuitka-run.cmd +1 -1
- {Nuitka_winsvc-2.3.9.dist-info → Nuitka_winsvc-2.4.1.dist-info}/METADATA +1 -1
- {Nuitka_winsvc-2.3.9.dist-info → Nuitka_winsvc-2.4.1.dist-info}/RECORD +213 -210
- {Nuitka_winsvc-2.3.9.dist-info → Nuitka_winsvc-2.4.1.dist-info}/WHEEL +1 -1
- nuitka/CacheCleanup.py +6 -1
- nuitka/HardImportRegistry.py +29 -2
- nuitka/MainControl.py +62 -35
- nuitka/ModuleRegistry.py +11 -3
- nuitka/OptionParsing.py +78 -39
- nuitka/Options.py +142 -35
- nuitka/OutputDirectories.py +5 -0
- nuitka/PostProcessing.py +23 -14
- nuitka/PythonFlavors.py +22 -4
- nuitka/PythonVersions.py +18 -0
- nuitka/Tracing.py +26 -23
- nuitka/TreeXML.py +6 -3
- nuitka/Version.py +1 -1
- nuitka/__main__.py +55 -10
- nuitka/build/Backend.scons +6 -1
- nuitka/build/CCompilerVersion.scons +1 -0
- nuitka/build/Onefile.scons +4 -0
- nuitka/build/SconsCaching.py +1 -0
- nuitka/build/SconsCompilerSettings.py +1 -0
- nuitka/build/SconsHacks.py +5 -1
- nuitka/build/SconsInterface.py +2 -0
- nuitka/build/SconsUtils.py +5 -2
- nuitka/build/include/nuitka/allocator.h +27 -5
- nuitka/build/include/nuitka/calling.h +1 -1
- nuitka/build/include/nuitka/compiled_frame.h +23 -23
- nuitka/build/include/nuitka/compiled_method.h +1 -1
- nuitka/build/include/nuitka/exception_groups.h +0 -2
- nuitka/build/include/nuitka/helper/attributes.h +7 -1
- nuitka/build/include/nuitka/helper/subscripts.h +1 -1
- nuitka/build/include/nuitka/helpers.h +7 -4
- nuitka/build/include/nuitka/prelude.h +6 -10
- nuitka/build/include/nuitka/printing.h +2 -0
- nuitka/build/include/nuitka/unfreezing.h +5 -5
- nuitka/build/inline_copy/tqdm/tqdm/_monitor.py +4 -1
- nuitka/build/static_src/CompiledAsyncgenType.c +2 -4
- nuitka/build/static_src/CompiledCellType.c +7 -7
- nuitka/build/static_src/CompiledCodeHelpers.c +51 -36
- nuitka/build/static_src/CompiledCoroutineType.c +2 -4
- nuitka/build/static_src/CompiledFrameType.c +109 -82
- nuitka/build/static_src/CompiledFunctionType.c +36 -9
- nuitka/build/static_src/CompiledGeneratorType.c +12 -10
- nuitka/build/static_src/CompiledGeneratorTypeUncompiledIntegration.c +2 -2
- nuitka/build/static_src/CompiledMethodType.c +14 -13
- nuitka/build/static_src/HelpersAttributes.c +13 -15
- nuitka/build/static_src/HelpersBuiltin.c +18 -9
- nuitka/build/static_src/HelpersCalling.c +13 -13
- nuitka/build/static_src/HelpersCallingGenerated.c +22 -22
- nuitka/build/static_src/HelpersComparisonEq.c +110 -110
- nuitka/build/static_src/HelpersComparisonEqUtils.c +1 -1
- nuitka/build/static_src/HelpersComparisonGe.c +110 -110
- nuitka/build/static_src/HelpersComparisonGt.c +110 -110
- nuitka/build/static_src/HelpersComparisonLe.c +110 -110
- nuitka/build/static_src/HelpersComparisonLt.c +110 -110
- nuitka/build/static_src/HelpersComparisonNe.c +110 -110
- nuitka/build/static_src/HelpersConstantsBlob.c +480 -481
- nuitka/build/static_src/HelpersDictionaries.c +9 -0
- nuitka/build/static_src/HelpersFiles.c +2 -2
- nuitka/build/static_src/HelpersFilesystemPaths.c +28 -13
- nuitka/build/static_src/HelpersHeapStorage.c +4 -0
- nuitka/build/static_src/HelpersImport.c +1 -1
- nuitka/build/static_src/HelpersLists.c +5 -1
- nuitka/build/static_src/HelpersMatching.c +95 -35
- nuitka/build/static_src/HelpersOperationInplaceAdd.c +23 -23
- nuitka/build/static_src/HelpersOperationInplaceAddUtils.c +1 -0
- nuitka/build/static_src/HelpersOperationInplaceBitand.c +11 -11
- nuitka/build/static_src/HelpersOperationInplaceBitor.c +11 -11
- nuitka/build/static_src/HelpersOperationInplaceBitxor.c +11 -11
- nuitka/build/static_src/HelpersOperationInplaceFloordiv.c +17 -17
- nuitka/build/static_src/HelpersOperationInplaceLshift.c +9 -9
- nuitka/build/static_src/HelpersOperationInplaceMatmult.c +10 -10
- nuitka/build/static_src/HelpersOperationInplaceMod.c +47 -47
- nuitka/build/static_src/HelpersOperationInplaceMult.c +28 -28
- nuitka/build/static_src/HelpersOperationInplaceOlddiv.c +17 -17
- nuitka/build/static_src/HelpersOperationInplacePow.c +17 -17
- nuitka/build/static_src/HelpersOperationInplaceRshift.c +9 -9
- nuitka/build/static_src/HelpersOperationInplaceSub.c +17 -17
- nuitka/build/static_src/HelpersOperationInplaceTruediv.c +17 -17
- nuitka/build/static_src/HelpersSequences.c +1 -1
- nuitka/build/static_src/HelpersTypes.c +8 -4
- nuitka/build/static_src/MainProgram.c +28 -9
- nuitka/build/static_src/MetaPathBasedLoader.c +126 -110
- nuitka/build/static_src/MetaPathBasedLoaderImportlibMetadataDistribution.c +13 -4
- nuitka/build/static_src/MetaPathBasedLoaderResourceReaderFiles.c +30 -1
- nuitka/build/static_src/OnefileBootstrap.c +34 -6
- nuitka/code_generation/AttributeCodes.py +12 -10
- nuitka/code_generation/CodeGeneration.py +6 -7
- nuitka/code_generation/ConstantCodes.py +53 -10
- nuitka/code_generation/GlobalConstants.py +6 -6
- nuitka/code_generation/Indentation.py +3 -4
- nuitka/code_generation/LoaderCodes.py +3 -0
- nuitka/code_generation/LocalsDictCodes.py +36 -14
- nuitka/code_generation/MatchCodes.py +23 -4
- nuitka/code_generation/ModuleCodes.py +0 -7
- nuitka/code_generation/Namify.py +2 -0
- nuitka/code_generation/PackageResourceCodes.py +5 -1
- nuitka/code_generation/templates/CodeTemplatesConstants.py +6 -4
- nuitka/code_generation/templates/CodeTemplatesLoader.py +1 -1
- nuitka/code_generation/templates/CodeTemplatesModules.py +3 -3
- nuitka/code_generation/templates/CodeTemplatesVariables.py +16 -2
- nuitka/code_generation/templates_c/CodeTemplateCallsMethodPositional.c.j2 +2 -2
- nuitka/code_generation/templates_c/HelperOperationBinary.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperOperationInplace.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperSlotsBinary.c.j2 +7 -7
- nuitka/freezer/DependsExe.py +3 -1
- nuitka/freezer/DllDependenciesMacOS.py +28 -14
- nuitka/freezer/IncludedDataFiles.py +12 -3
- nuitka/freezer/IncludedEntryPoints.py +8 -2
- nuitka/freezer/Onefile.py +6 -1
- nuitka/freezer/Standalone.py +9 -2
- nuitka/importing/Importing.py +14 -5
- nuitka/importing/Recursion.py +3 -0
- nuitka/nodes/AttributeNodesGenerated.py +21 -12
- nuitka/nodes/BuiltinOpenNodes.py +5 -0
- nuitka/nodes/BuiltinOperationNodeBasesGenerated.py +11 -11
- nuitka/nodes/BuiltinRefNodes.py +41 -1
- nuitka/nodes/ChildrenHavingMixins.py +143 -355
- nuitka/nodes/ClassNodes.py +30 -12
- nuitka/nodes/CodeObjectSpecs.py +9 -0
- nuitka/nodes/ExpressionBasesGenerated.py +11 -11
- nuitka/nodes/FunctionNodes.py +11 -12
- nuitka/nodes/FutureSpecs.py +16 -3
- nuitka/nodes/GeneratorNodes.py +2 -2
- nuitka/nodes/HardImportNodesGenerated.py +11 -134
- nuitka/nodes/LocalsScopes.py +19 -23
- nuitka/nodes/MatchNodes.py +18 -7
- nuitka/nodes/ModuleAttributeNodes.py +1 -20
- nuitka/nodes/ModuleNodes.py +23 -6
- nuitka/nodes/NodeBases.py +13 -11
- nuitka/nodes/NodeMetaClasses.py +26 -10
- nuitka/nodes/ReturnNodes.py +1 -1
- nuitka/nodes/StatementBasesGenerated.py +11 -11
- nuitka/nodes/SubscriptNodes.py +4 -4
- nuitka/nodes/VariableAssignNodes.py +1 -1
- nuitka/nodes/VariableRefNodes.py +28 -2
- nuitka/nodes/shapes/BuiltinTypeShapes.py +21 -1
- nuitka/optimizations/FunctionInlining.py +3 -6
- nuitka/optimizations/Optimization.py +13 -12
- nuitka/optimizations/TraceCollections.py +19 -4
- nuitka/plugins/PluginBase.py +121 -133
- nuitka/plugins/Plugins.py +91 -3
- nuitka/plugins/YamlPluginBase.py +121 -0
- nuitka/plugins/standard/AntiBloatPlugin.py +87 -28
- nuitka/plugins/standard/DataFilesPlugin.py +15 -6
- nuitka/plugins/standard/DelvewheelPlugin.py +7 -3
- nuitka/plugins/standard/DllFilesPlugin.py +5 -3
- nuitka/plugins/standard/ImplicitImports.py +34 -20
- nuitka/plugins/standard/MatplotlibPlugin.py +3 -1
- nuitka/plugins/standard/MultiprocessingPlugin.py +2 -2
- nuitka/plugins/standard/OptionsNannyPlugin.py +1 -1
- nuitka/plugins/standard/PySidePyQtPlugin.py +11 -12
- nuitka/plugins/standard/SpacyPlugin.py +136 -0
- nuitka/plugins/standard/standard.nuitka-package.config.yml +491 -186
- nuitka/plugins/standard/stdlib3.nuitka-package.config.yml +17 -0
- nuitka/reports/Reports.py +53 -5
- nuitka/specs/BuiltinParameterSpecs.py +1 -1
- nuitka/specs/HardImportSpecs.py +0 -6
- nuitka/tools/data_composer/DataComposer.py +29 -27
- nuitka/tools/environments/CreateEnvironment.py +1 -0
- nuitka/tools/environments/Virtualenv.py +25 -11
- nuitka/tools/general/find_module/FindModuleCode.py +13 -3
- nuitka/tools/onefile_compressor/OnefileCompressor.py +21 -4
- nuitka/tools/scanning/DisplayPackageDLLs.py +17 -3
- nuitka/tools/specialize/CTypeDescriptions.py +13 -7
- nuitka/tools/specialize/SpecializePython.py +18 -1
- nuitka/tools/testing/Common.py +19 -6
- nuitka/tools/testing/check_reference_counts/__main__.py +1 -1
- nuitka/tools/testing/run_nuitka_tests/__main__.py +0 -20
- nuitka/tools/watch/AutoStage.py +144 -0
- nuitka/tools/watch/__main__.py +79 -32
- nuitka/tree/Building.py +105 -104
- nuitka/tree/ComplexCallHelperFunctions.py +16 -26
- nuitka/tree/InternalModule.py +9 -1
- nuitka/tree/ReformulationAssignmentStatements.py +29 -59
- nuitka/tree/ReformulationClasses.py +10 -17
- nuitka/tree/ReformulationClasses3.py +69 -43
- nuitka/tree/ReformulationComparisonExpressions.py +6 -16
- nuitka/tree/ReformulationContractionExpressions.py +14 -23
- nuitka/tree/ReformulationDictionaryCreation.py +6 -10
- nuitka/tree/ReformulationExecStatements.py +10 -10
- nuitka/tree/ReformulationForLoopStatements.py +6 -12
- nuitka/tree/ReformulationFunctionStatements.py +22 -28
- nuitka/tree/ReformulationImportStatements.py +8 -10
- nuitka/tree/ReformulationLambdaExpressions.py +3 -6
- nuitka/tree/ReformulationMatchStatements.py +166 -60
- nuitka/tree/ReformulationMultidist.py +3 -1
- nuitka/tree/ReformulationNamespacePackages.py +1 -1
- nuitka/tree/ReformulationPrintStatements.py +3 -6
- nuitka/tree/ReformulationSequenceCreation.py +13 -26
- nuitka/tree/ReformulationTryFinallyStatements.py +15 -0
- nuitka/tree/ReformulationWithStatements.py +12 -16
- nuitka/tree/SourceHandling.py +13 -8
- nuitka/tree/VariableClosure.py +5 -21
- nuitka/utils/Distributions.py +80 -11
- nuitka/utils/Download.py +38 -31
- nuitka/utils/Execution.py +21 -9
- nuitka/utils/FileOperations.py +55 -28
- nuitka/utils/Images.py +6 -1
- nuitka/utils/Importing.py +1 -1
- nuitka/utils/ModuleNames.py +11 -5
- nuitka/utils/ReExecute.py +17 -13
- nuitka/utils/SharedLibraries.py +69 -41
- nuitka/utils/Signing.py +3 -1
- nuitka/utils/StaticLibraries.py +51 -41
- nuitka/utils/Timing.py +1 -1
- nuitka/utils/Utils.py +29 -7
- /Nuitka_winsvc-2.3.9.data/scripts/nuitka.bat → /Nuitka_winsvc-2.4.1.data/scripts/nuitka.cmd +0 -0
- {Nuitka_winsvc-2.3.9.dist-info → Nuitka_winsvc-2.4.1.dist-info}/LICENSE.txt +0 -0
- {Nuitka_winsvc-2.3.9.dist-info → Nuitka_winsvc-2.4.1.dist-info}/entry_points.txt +0 -0
- {Nuitka_winsvc-2.3.9.dist-info → Nuitka_winsvc-2.4.1.dist-info}/top_level.txt +0 -0
|
@@ -71,7 +71,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
71
71
|
// If the types are equal, we may get away immediately except for instances.
|
|
72
72
|
if (type1 == type2 && !PyInstance_Check(operand1)) {
|
|
73
73
|
|
|
74
|
-
richcmpfunc frich =
|
|
74
|
+
richcmpfunc frich = TP_RICHCOMPARE(type1);
|
|
75
75
|
|
|
76
76
|
if (frich != NULL) {
|
|
77
77
|
PyObject *result = (*frich)(operand1, operand2, Py_LT);
|
|
@@ -132,7 +132,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
132
132
|
richcmpfunc f;
|
|
133
133
|
|
|
134
134
|
if (type1 != type2 && Nuitka_Type_IsSubtype(type2, type1)) {
|
|
135
|
-
f =
|
|
135
|
+
f = TP_RICHCOMPARE(type2);
|
|
136
136
|
|
|
137
137
|
if (f != NULL) {
|
|
138
138
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -147,7 +147,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
147
147
|
}
|
|
148
148
|
}
|
|
149
149
|
|
|
150
|
-
f =
|
|
150
|
+
f = TP_RICHCOMPARE(type1);
|
|
151
151
|
if (f != NULL) {
|
|
152
152
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
153
153
|
|
|
@@ -160,7 +160,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
160
160
|
Py_DECREF_IMMORTAL(result);
|
|
161
161
|
}
|
|
162
162
|
|
|
163
|
-
f =
|
|
163
|
+
f = TP_RICHCOMPARE(type2);
|
|
164
164
|
if (f != NULL) {
|
|
165
165
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
166
166
|
|
|
@@ -265,7 +265,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
265
265
|
richcmpfunc f;
|
|
266
266
|
|
|
267
267
|
if (type1 != type2 && Nuitka_Type_IsSubtype(type2, type1)) {
|
|
268
|
-
f =
|
|
268
|
+
f = TP_RICHCOMPARE(type2);
|
|
269
269
|
|
|
270
270
|
if (f != NULL) {
|
|
271
271
|
checked_reverse_op = true;
|
|
@@ -282,7 +282,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
282
282
|
}
|
|
283
283
|
}
|
|
284
284
|
|
|
285
|
-
f =
|
|
285
|
+
f = TP_RICHCOMPARE(type1);
|
|
286
286
|
|
|
287
287
|
if (f != NULL) {
|
|
288
288
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
@@ -297,7 +297,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
297
297
|
}
|
|
298
298
|
|
|
299
299
|
if (checked_reverse_op == false) {
|
|
300
|
-
f =
|
|
300
|
+
f = TP_RICHCOMPARE(type2);
|
|
301
301
|
|
|
302
302
|
if (f != NULL) {
|
|
303
303
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -367,7 +367,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
|
|
|
367
367
|
// If the types are equal, we may get away immediately except for instances.
|
|
368
368
|
if (type1 == type2 && !PyInstance_Check(operand1)) {
|
|
369
369
|
|
|
370
|
-
richcmpfunc frich =
|
|
370
|
+
richcmpfunc frich = TP_RICHCOMPARE(type1);
|
|
371
371
|
|
|
372
372
|
if (frich != NULL) {
|
|
373
373
|
PyObject *result = (*frich)(operand1, operand2, Py_LT);
|
|
@@ -436,7 +436,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
|
|
|
436
436
|
richcmpfunc f;
|
|
437
437
|
|
|
438
438
|
if (type1 != type2 && Nuitka_Type_IsSubtype(type2, type1)) {
|
|
439
|
-
f =
|
|
439
|
+
f = TP_RICHCOMPARE(type2);
|
|
440
440
|
|
|
441
441
|
if (f != NULL) {
|
|
442
442
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -459,7 +459,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
|
|
|
459
459
|
}
|
|
460
460
|
}
|
|
461
461
|
|
|
462
|
-
f =
|
|
462
|
+
f = TP_RICHCOMPARE(type1);
|
|
463
463
|
if (f != NULL) {
|
|
464
464
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
465
465
|
|
|
@@ -480,7 +480,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
|
|
|
480
480
|
Py_DECREF_IMMORTAL(result);
|
|
481
481
|
}
|
|
482
482
|
|
|
483
|
-
f =
|
|
483
|
+
f = TP_RICHCOMPARE(type2);
|
|
484
484
|
if (f != NULL) {
|
|
485
485
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
486
486
|
|
|
@@ -593,7 +593,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
|
|
|
593
593
|
richcmpfunc f;
|
|
594
594
|
|
|
595
595
|
if (type1 != type2 && Nuitka_Type_IsSubtype(type2, type1)) {
|
|
596
|
-
f =
|
|
596
|
+
f = TP_RICHCOMPARE(type2);
|
|
597
597
|
|
|
598
598
|
if (f != NULL) {
|
|
599
599
|
checked_reverse_op = true;
|
|
@@ -618,7 +618,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
|
|
|
618
618
|
}
|
|
619
619
|
}
|
|
620
620
|
|
|
621
|
-
f =
|
|
621
|
+
f = TP_RICHCOMPARE(type1);
|
|
622
622
|
|
|
623
623
|
if (f != NULL) {
|
|
624
624
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
@@ -641,7 +641,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
|
|
|
641
641
|
}
|
|
642
642
|
|
|
643
643
|
if (checked_reverse_op == false) {
|
|
644
|
-
f =
|
|
644
|
+
f = TP_RICHCOMPARE(type2);
|
|
645
645
|
|
|
646
646
|
if (f != NULL) {
|
|
647
647
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -839,7 +839,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_OBJECT_STR(PyObject *operand1, PyObject *operan
|
|
|
839
839
|
}
|
|
840
840
|
}
|
|
841
841
|
|
|
842
|
-
f =
|
|
842
|
+
f = TP_RICHCOMPARE(type1);
|
|
843
843
|
if (f != NULL) {
|
|
844
844
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
845
845
|
|
|
@@ -974,7 +974,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_OBJECT_STR(PyObject *operand1, PyObject *operan
|
|
|
974
974
|
}
|
|
975
975
|
}
|
|
976
976
|
|
|
977
|
-
f =
|
|
977
|
+
f = TP_RICHCOMPARE(type1);
|
|
978
978
|
|
|
979
979
|
if (f != NULL) {
|
|
980
980
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
@@ -1118,7 +1118,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_STR_OBJECT(PyObject *operand1, PyObject *operan
|
|
|
1118
1118
|
richcmpfunc f;
|
|
1119
1119
|
|
|
1120
1120
|
if (&PyString_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyString_Type)) {
|
|
1121
|
-
f =
|
|
1121
|
+
f = TP_RICHCOMPARE(type2);
|
|
1122
1122
|
|
|
1123
1123
|
if (f != NULL) {
|
|
1124
1124
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -1146,7 +1146,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_STR_OBJECT(PyObject *operand1, PyObject *operan
|
|
|
1146
1146
|
Py_DECREF_IMMORTAL(result);
|
|
1147
1147
|
}
|
|
1148
1148
|
|
|
1149
|
-
f =
|
|
1149
|
+
f = TP_RICHCOMPARE(type2);
|
|
1150
1150
|
if (f != NULL) {
|
|
1151
1151
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
1152
1152
|
|
|
@@ -1251,7 +1251,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_STR_OBJECT(PyObject *operand1, PyObject *operan
|
|
|
1251
1251
|
richcmpfunc f;
|
|
1252
1252
|
|
|
1253
1253
|
if (&PyString_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyString_Type)) {
|
|
1254
|
-
f =
|
|
1254
|
+
f = TP_RICHCOMPARE(type2);
|
|
1255
1255
|
|
|
1256
1256
|
if (f != NULL) {
|
|
1257
1257
|
checked_reverse_op = true;
|
|
@@ -1283,7 +1283,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_STR_OBJECT(PyObject *operand1, PyObject *operan
|
|
|
1283
1283
|
}
|
|
1284
1284
|
|
|
1285
1285
|
if (checked_reverse_op == false) {
|
|
1286
|
-
f =
|
|
1286
|
+
f = TP_RICHCOMPARE(type2);
|
|
1287
1287
|
|
|
1288
1288
|
if (f != NULL) {
|
|
1289
1289
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -1505,7 +1505,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_OBJECT_STR(PyObject *operand1, PyObject *opera
|
|
|
1505
1505
|
}
|
|
1506
1506
|
}
|
|
1507
1507
|
|
|
1508
|
-
f =
|
|
1508
|
+
f = TP_RICHCOMPARE(type1);
|
|
1509
1509
|
if (f != NULL) {
|
|
1510
1510
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
1511
1511
|
|
|
@@ -1664,7 +1664,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_OBJECT_STR(PyObject *operand1, PyObject *opera
|
|
|
1664
1664
|
}
|
|
1665
1665
|
}
|
|
1666
1666
|
|
|
1667
|
-
f =
|
|
1667
|
+
f = TP_RICHCOMPARE(type1);
|
|
1668
1668
|
|
|
1669
1669
|
if (f != NULL) {
|
|
1670
1670
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
@@ -1832,7 +1832,7 @@ nuitka_bool RICH_COMPARE_LT_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 =
|
|
1835
|
+
f = TP_RICHCOMPARE(type2);
|
|
1836
1836
|
|
|
1837
1837
|
if (f != NULL) {
|
|
1838
1838
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -1876,7 +1876,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_STR_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
1876
1876
|
Py_DECREF_IMMORTAL(result);
|
|
1877
1877
|
}
|
|
1878
1878
|
|
|
1879
|
-
f =
|
|
1879
|
+
f = TP_RICHCOMPARE(type2);
|
|
1880
1880
|
if (f != NULL) {
|
|
1881
1881
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
1882
1882
|
|
|
@@ -1989,7 +1989,7 @@ nuitka_bool RICH_COMPARE_LT_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 =
|
|
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_LT_NBOOL_STR_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
2037
2037
|
}
|
|
2038
2038
|
|
|
2039
2039
|
if (checked_reverse_op == false) {
|
|
2040
|
-
f =
|
|
2040
|
+
f = TP_RICHCOMPARE(type2);
|
|
2041
2041
|
|
|
2042
2042
|
if (f != NULL) {
|
|
2043
2043
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -2212,7 +2212,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_OBJECT_UNICODE(PyObject *operand1, PyObject *op
|
|
|
2212
2212
|
}
|
|
2213
2213
|
}
|
|
2214
2214
|
|
|
2215
|
-
f =
|
|
2215
|
+
f = TP_RICHCOMPARE(type1);
|
|
2216
2216
|
if (f != NULL) {
|
|
2217
2217
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
2218
2218
|
|
|
@@ -2347,7 +2347,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_OBJECT_UNICODE(PyObject *operand1, PyObject *op
|
|
|
2347
2347
|
}
|
|
2348
2348
|
}
|
|
2349
2349
|
|
|
2350
|
-
f =
|
|
2350
|
+
f = TP_RICHCOMPARE(type1);
|
|
2351
2351
|
|
|
2352
2352
|
if (f != NULL) {
|
|
2353
2353
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
@@ -2491,7 +2491,7 @@ PyObject *RICH_COMPARE_LT_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 =
|
|
2494
|
+
f = TP_RICHCOMPARE(type2);
|
|
2495
2495
|
|
|
2496
2496
|
if (f != NULL) {
|
|
2497
2497
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -2519,7 +2519,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_UNICODE_OBJECT(PyObject *operand1, PyObject *op
|
|
|
2519
2519
|
Py_DECREF_IMMORTAL(result);
|
|
2520
2520
|
}
|
|
2521
2521
|
|
|
2522
|
-
f =
|
|
2522
|
+
f = TP_RICHCOMPARE(type2);
|
|
2523
2523
|
if (f != NULL) {
|
|
2524
2524
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
2525
2525
|
|
|
@@ -2624,7 +2624,7 @@ PyObject *RICH_COMPARE_LT_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 =
|
|
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_LT_OBJECT_UNICODE_OBJECT(PyObject *operand1, PyObject *op
|
|
|
2656
2656
|
}
|
|
2657
2657
|
|
|
2658
2658
|
if (checked_reverse_op == false) {
|
|
2659
|
-
f =
|
|
2659
|
+
f = TP_RICHCOMPARE(type2);
|
|
2660
2660
|
|
|
2661
2661
|
if (f != NULL) {
|
|
2662
2662
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -2858,7 +2858,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_OBJECT_UNICODE(PyObject *operand1, PyObject *o
|
|
|
2858
2858
|
}
|
|
2859
2859
|
}
|
|
2860
2860
|
|
|
2861
|
-
f =
|
|
2861
|
+
f = TP_RICHCOMPARE(type1);
|
|
2862
2862
|
if (f != NULL) {
|
|
2863
2863
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
2864
2864
|
|
|
@@ -3017,7 +3017,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_OBJECT_UNICODE(PyObject *operand1, PyObject *o
|
|
|
3017
3017
|
}
|
|
3018
3018
|
}
|
|
3019
3019
|
|
|
3020
|
-
f =
|
|
3020
|
+
f = TP_RICHCOMPARE(type1);
|
|
3021
3021
|
|
|
3022
3022
|
if (f != NULL) {
|
|
3023
3023
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
@@ -3185,7 +3185,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_UNICODE_OBJECT(PyObject *operand1, PyObject *o
|
|
|
3185
3185
|
richcmpfunc f;
|
|
3186
3186
|
|
|
3187
3187
|
if (&PyUnicode_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyUnicode_Type)) {
|
|
3188
|
-
f =
|
|
3188
|
+
f = TP_RICHCOMPARE(type2);
|
|
3189
3189
|
|
|
3190
3190
|
if (f != NULL) {
|
|
3191
3191
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -3229,7 +3229,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_UNICODE_OBJECT(PyObject *operand1, PyObject *o
|
|
|
3229
3229
|
Py_DECREF_IMMORTAL(result);
|
|
3230
3230
|
}
|
|
3231
3231
|
|
|
3232
|
-
f =
|
|
3232
|
+
f = TP_RICHCOMPARE(type2);
|
|
3233
3233
|
if (f != NULL) {
|
|
3234
3234
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
3235
3235
|
|
|
@@ -3342,7 +3342,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_UNICODE_OBJECT(PyObject *operand1, PyObject *o
|
|
|
3342
3342
|
richcmpfunc f;
|
|
3343
3343
|
|
|
3344
3344
|
if (&PyUnicode_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyUnicode_Type)) {
|
|
3345
|
-
f =
|
|
3345
|
+
f = TP_RICHCOMPARE(type2);
|
|
3346
3346
|
|
|
3347
3347
|
if (f != NULL) {
|
|
3348
3348
|
checked_reverse_op = true;
|
|
@@ -3390,7 +3390,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_UNICODE_OBJECT(PyObject *operand1, PyObject *o
|
|
|
3390
3390
|
}
|
|
3391
3391
|
|
|
3392
3392
|
if (checked_reverse_op == false) {
|
|
3393
|
-
f =
|
|
3393
|
+
f = TP_RICHCOMPARE(type2);
|
|
3394
3394
|
|
|
3395
3395
|
if (f != NULL) {
|
|
3396
3396
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -3589,7 +3589,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_OBJECT_BYTES(PyObject *operand1, PyObject *oper
|
|
|
3589
3589
|
}
|
|
3590
3590
|
}
|
|
3591
3591
|
|
|
3592
|
-
f =
|
|
3592
|
+
f = TP_RICHCOMPARE(type1);
|
|
3593
3593
|
if (f != NULL) {
|
|
3594
3594
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
3595
3595
|
|
|
@@ -3724,7 +3724,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_OBJECT_BYTES(PyObject *operand1, PyObject *oper
|
|
|
3724
3724
|
}
|
|
3725
3725
|
}
|
|
3726
3726
|
|
|
3727
|
-
f =
|
|
3727
|
+
f = TP_RICHCOMPARE(type1);
|
|
3728
3728
|
|
|
3729
3729
|
if (f != NULL) {
|
|
3730
3730
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
@@ -3868,7 +3868,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_BYTES_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
3868
3868
|
richcmpfunc f;
|
|
3869
3869
|
|
|
3870
3870
|
if (&PyBytes_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyBytes_Type)) {
|
|
3871
|
-
f =
|
|
3871
|
+
f = TP_RICHCOMPARE(type2);
|
|
3872
3872
|
|
|
3873
3873
|
if (f != NULL) {
|
|
3874
3874
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -3896,7 +3896,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_BYTES_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
3896
3896
|
Py_DECREF_IMMORTAL(result);
|
|
3897
3897
|
}
|
|
3898
3898
|
|
|
3899
|
-
f =
|
|
3899
|
+
f = TP_RICHCOMPARE(type2);
|
|
3900
3900
|
if (f != NULL) {
|
|
3901
3901
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
3902
3902
|
|
|
@@ -4001,7 +4001,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_BYTES_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
4001
4001
|
richcmpfunc f;
|
|
4002
4002
|
|
|
4003
4003
|
if (&PyBytes_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyBytes_Type)) {
|
|
4004
|
-
f =
|
|
4004
|
+
f = TP_RICHCOMPARE(type2);
|
|
4005
4005
|
|
|
4006
4006
|
if (f != NULL) {
|
|
4007
4007
|
checked_reverse_op = true;
|
|
@@ -4033,7 +4033,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_BYTES_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
4033
4033
|
}
|
|
4034
4034
|
|
|
4035
4035
|
if (checked_reverse_op == false) {
|
|
4036
|
-
f =
|
|
4036
|
+
f = TP_RICHCOMPARE(type2);
|
|
4037
4037
|
|
|
4038
4038
|
if (f != NULL) {
|
|
4039
4039
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -4255,7 +4255,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_OBJECT_BYTES(PyObject *operand1, PyObject *ope
|
|
|
4255
4255
|
}
|
|
4256
4256
|
}
|
|
4257
4257
|
|
|
4258
|
-
f =
|
|
4258
|
+
f = TP_RICHCOMPARE(type1);
|
|
4259
4259
|
if (f != NULL) {
|
|
4260
4260
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
4261
4261
|
|
|
@@ -4414,7 +4414,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_OBJECT_BYTES(PyObject *operand1, PyObject *ope
|
|
|
4414
4414
|
}
|
|
4415
4415
|
}
|
|
4416
4416
|
|
|
4417
|
-
f =
|
|
4417
|
+
f = TP_RICHCOMPARE(type1);
|
|
4418
4418
|
|
|
4419
4419
|
if (f != NULL) {
|
|
4420
4420
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
@@ -4582,7 +4582,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_BYTES_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
4582
4582
|
richcmpfunc f;
|
|
4583
4583
|
|
|
4584
4584
|
if (&PyBytes_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyBytes_Type)) {
|
|
4585
|
-
f =
|
|
4585
|
+
f = TP_RICHCOMPARE(type2);
|
|
4586
4586
|
|
|
4587
4587
|
if (f != NULL) {
|
|
4588
4588
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -4626,7 +4626,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_BYTES_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
4626
4626
|
Py_DECREF_IMMORTAL(result);
|
|
4627
4627
|
}
|
|
4628
4628
|
|
|
4629
|
-
f =
|
|
4629
|
+
f = TP_RICHCOMPARE(type2);
|
|
4630
4630
|
if (f != NULL) {
|
|
4631
4631
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
4632
4632
|
|
|
@@ -4739,7 +4739,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_BYTES_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
4739
4739
|
richcmpfunc f;
|
|
4740
4740
|
|
|
4741
4741
|
if (&PyBytes_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyBytes_Type)) {
|
|
4742
|
-
f =
|
|
4742
|
+
f = TP_RICHCOMPARE(type2);
|
|
4743
4743
|
|
|
4744
4744
|
if (f != NULL) {
|
|
4745
4745
|
checked_reverse_op = true;
|
|
@@ -4787,7 +4787,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_BYTES_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
4787
4787
|
}
|
|
4788
4788
|
|
|
4789
4789
|
if (checked_reverse_op == false) {
|
|
4790
|
-
f =
|
|
4790
|
+
f = TP_RICHCOMPARE(type2);
|
|
4791
4791
|
|
|
4792
4792
|
if (f != NULL) {
|
|
4793
4793
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -4939,7 +4939,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_OBJECT_INT(PyObject *operand1, PyObject *operan
|
|
|
4939
4939
|
}
|
|
4940
4940
|
}
|
|
4941
4941
|
|
|
4942
|
-
f =
|
|
4942
|
+
f = TP_RICHCOMPARE(type1);
|
|
4943
4943
|
if (f != NULL) {
|
|
4944
4944
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
4945
4945
|
|
|
@@ -5074,7 +5074,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_OBJECT_INT(PyObject *operand1, PyObject *operan
|
|
|
5074
5074
|
}
|
|
5075
5075
|
}
|
|
5076
5076
|
|
|
5077
|
-
f =
|
|
5077
|
+
f = TP_RICHCOMPARE(type1);
|
|
5078
5078
|
|
|
5079
5079
|
if (f != NULL) {
|
|
5080
5080
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
@@ -5218,7 +5218,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_INT_OBJECT(PyObject *operand1, PyObject *operan
|
|
|
5218
5218
|
richcmpfunc f;
|
|
5219
5219
|
|
|
5220
5220
|
if (&PyInt_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyInt_Type)) {
|
|
5221
|
-
f =
|
|
5221
|
+
f = TP_RICHCOMPARE(type2);
|
|
5222
5222
|
|
|
5223
5223
|
if (f != NULL) {
|
|
5224
5224
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -5246,7 +5246,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_INT_OBJECT(PyObject *operand1, PyObject *operan
|
|
|
5246
5246
|
Py_DECREF_IMMORTAL(result);
|
|
5247
5247
|
}
|
|
5248
5248
|
|
|
5249
|
-
f =
|
|
5249
|
+
f = TP_RICHCOMPARE(type2);
|
|
5250
5250
|
if (f != NULL) {
|
|
5251
5251
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
5252
5252
|
|
|
@@ -5351,7 +5351,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_INT_OBJECT(PyObject *operand1, PyObject *operan
|
|
|
5351
5351
|
richcmpfunc f;
|
|
5352
5352
|
|
|
5353
5353
|
if (&PyInt_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyInt_Type)) {
|
|
5354
|
-
f =
|
|
5354
|
+
f = TP_RICHCOMPARE(type2);
|
|
5355
5355
|
|
|
5356
5356
|
if (f != NULL) {
|
|
5357
5357
|
checked_reverse_op = true;
|
|
@@ -5383,7 +5383,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_INT_OBJECT(PyObject *operand1, PyObject *operan
|
|
|
5383
5383
|
}
|
|
5384
5384
|
|
|
5385
5385
|
if (checked_reverse_op == false) {
|
|
5386
|
-
f =
|
|
5386
|
+
f = TP_RICHCOMPARE(type2);
|
|
5387
5387
|
|
|
5388
5388
|
if (f != NULL) {
|
|
5389
5389
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -5559,7 +5559,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_OBJECT_INT(PyObject *operand1, PyObject *opera
|
|
|
5559
5559
|
}
|
|
5560
5560
|
}
|
|
5561
5561
|
|
|
5562
|
-
f =
|
|
5562
|
+
f = TP_RICHCOMPARE(type1);
|
|
5563
5563
|
if (f != NULL) {
|
|
5564
5564
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
5565
5565
|
|
|
@@ -5718,7 +5718,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_OBJECT_INT(PyObject *operand1, PyObject *opera
|
|
|
5718
5718
|
}
|
|
5719
5719
|
}
|
|
5720
5720
|
|
|
5721
|
-
f =
|
|
5721
|
+
f = TP_RICHCOMPARE(type1);
|
|
5722
5722
|
|
|
5723
5723
|
if (f != NULL) {
|
|
5724
5724
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
@@ -5886,7 +5886,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_INT_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
5886
5886
|
richcmpfunc f;
|
|
5887
5887
|
|
|
5888
5888
|
if (&PyInt_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyInt_Type)) {
|
|
5889
|
-
f =
|
|
5889
|
+
f = TP_RICHCOMPARE(type2);
|
|
5890
5890
|
|
|
5891
5891
|
if (f != NULL) {
|
|
5892
5892
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -5930,7 +5930,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_INT_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
5930
5930
|
Py_DECREF_IMMORTAL(result);
|
|
5931
5931
|
}
|
|
5932
5932
|
|
|
5933
|
-
f =
|
|
5933
|
+
f = TP_RICHCOMPARE(type2);
|
|
5934
5934
|
if (f != NULL) {
|
|
5935
5935
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
5936
5936
|
|
|
@@ -6043,7 +6043,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_INT_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
6043
6043
|
richcmpfunc f;
|
|
6044
6044
|
|
|
6045
6045
|
if (&PyInt_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyInt_Type)) {
|
|
6046
|
-
f =
|
|
6046
|
+
f = TP_RICHCOMPARE(type2);
|
|
6047
6047
|
|
|
6048
6048
|
if (f != NULL) {
|
|
6049
6049
|
checked_reverse_op = true;
|
|
@@ -6091,7 +6091,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_INT_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
6091
6091
|
}
|
|
6092
6092
|
|
|
6093
6093
|
if (checked_reverse_op == false) {
|
|
6094
|
-
f =
|
|
6094
|
+
f = TP_RICHCOMPARE(type2);
|
|
6095
6095
|
|
|
6096
6096
|
if (f != NULL) {
|
|
6097
6097
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -6281,7 +6281,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_OBJECT_LONG(PyObject *operand1, PyObject *opera
|
|
|
6281
6281
|
}
|
|
6282
6282
|
}
|
|
6283
6283
|
|
|
6284
|
-
f =
|
|
6284
|
+
f = TP_RICHCOMPARE(type1);
|
|
6285
6285
|
if (f != NULL) {
|
|
6286
6286
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
6287
6287
|
|
|
@@ -6416,7 +6416,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_OBJECT_LONG(PyObject *operand1, PyObject *opera
|
|
|
6416
6416
|
}
|
|
6417
6417
|
}
|
|
6418
6418
|
|
|
6419
|
-
f =
|
|
6419
|
+
f = TP_RICHCOMPARE(type1);
|
|
6420
6420
|
|
|
6421
6421
|
if (f != NULL) {
|
|
6422
6422
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
@@ -6560,7 +6560,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_LONG_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
6560
6560
|
richcmpfunc f;
|
|
6561
6561
|
|
|
6562
6562
|
if (&PyLong_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyLong_Type)) {
|
|
6563
|
-
f =
|
|
6563
|
+
f = TP_RICHCOMPARE(type2);
|
|
6564
6564
|
|
|
6565
6565
|
if (f != NULL) {
|
|
6566
6566
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -6588,7 +6588,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_LONG_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
6588
6588
|
Py_DECREF_IMMORTAL(result);
|
|
6589
6589
|
}
|
|
6590
6590
|
|
|
6591
|
-
f =
|
|
6591
|
+
f = TP_RICHCOMPARE(type2);
|
|
6592
6592
|
if (f != NULL) {
|
|
6593
6593
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
6594
6594
|
|
|
@@ -6693,7 +6693,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_LONG_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
6693
6693
|
richcmpfunc f;
|
|
6694
6694
|
|
|
6695
6695
|
if (&PyLong_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyLong_Type)) {
|
|
6696
|
-
f =
|
|
6696
|
+
f = TP_RICHCOMPARE(type2);
|
|
6697
6697
|
|
|
6698
6698
|
if (f != NULL) {
|
|
6699
6699
|
checked_reverse_op = true;
|
|
@@ -6725,7 +6725,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_LONG_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
6725
6725
|
}
|
|
6726
6726
|
|
|
6727
6727
|
if (checked_reverse_op == false) {
|
|
6728
|
-
f =
|
|
6728
|
+
f = TP_RICHCOMPARE(type2);
|
|
6729
6729
|
|
|
6730
6730
|
if (f != NULL) {
|
|
6731
6731
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -6936,7 +6936,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_OBJECT_LONG(PyObject *operand1, PyObject *oper
|
|
|
6936
6936
|
}
|
|
6937
6937
|
}
|
|
6938
6938
|
|
|
6939
|
-
f =
|
|
6939
|
+
f = TP_RICHCOMPARE(type1);
|
|
6940
6940
|
if (f != NULL) {
|
|
6941
6941
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
6942
6942
|
|
|
@@ -7095,7 +7095,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_OBJECT_LONG(PyObject *operand1, PyObject *oper
|
|
|
7095
7095
|
}
|
|
7096
7096
|
}
|
|
7097
7097
|
|
|
7098
|
-
f =
|
|
7098
|
+
f = TP_RICHCOMPARE(type1);
|
|
7099
7099
|
|
|
7100
7100
|
if (f != NULL) {
|
|
7101
7101
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
@@ -7263,7 +7263,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_LONG_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
7263
7263
|
richcmpfunc f;
|
|
7264
7264
|
|
|
7265
7265
|
if (&PyLong_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyLong_Type)) {
|
|
7266
|
-
f =
|
|
7266
|
+
f = TP_RICHCOMPARE(type2);
|
|
7267
7267
|
|
|
7268
7268
|
if (f != NULL) {
|
|
7269
7269
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -7307,7 +7307,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_LONG_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
7307
7307
|
Py_DECREF_IMMORTAL(result);
|
|
7308
7308
|
}
|
|
7309
7309
|
|
|
7310
|
-
f =
|
|
7310
|
+
f = TP_RICHCOMPARE(type2);
|
|
7311
7311
|
if (f != NULL) {
|
|
7312
7312
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
7313
7313
|
|
|
@@ -7420,7 +7420,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_LONG_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
7420
7420
|
richcmpfunc f;
|
|
7421
7421
|
|
|
7422
7422
|
if (&PyLong_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyLong_Type)) {
|
|
7423
|
-
f =
|
|
7423
|
+
f = TP_RICHCOMPARE(type2);
|
|
7424
7424
|
|
|
7425
7425
|
if (f != NULL) {
|
|
7426
7426
|
checked_reverse_op = true;
|
|
@@ -7468,7 +7468,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_LONG_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
7468
7468
|
}
|
|
7469
7469
|
|
|
7470
7470
|
if (checked_reverse_op == false) {
|
|
7471
|
-
f =
|
|
7471
|
+
f = TP_RICHCOMPARE(type2);
|
|
7472
7472
|
|
|
7473
7473
|
if (f != NULL) {
|
|
7474
7474
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -7636,7 +7636,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_OBJECT_FLOAT(PyObject *operand1, PyObject *oper
|
|
|
7636
7636
|
}
|
|
7637
7637
|
}
|
|
7638
7638
|
|
|
7639
|
-
f =
|
|
7639
|
+
f = TP_RICHCOMPARE(type1);
|
|
7640
7640
|
if (f != NULL) {
|
|
7641
7641
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
7642
7642
|
|
|
@@ -7771,7 +7771,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_OBJECT_FLOAT(PyObject *operand1, PyObject *oper
|
|
|
7771
7771
|
}
|
|
7772
7772
|
}
|
|
7773
7773
|
|
|
7774
|
-
f =
|
|
7774
|
+
f = TP_RICHCOMPARE(type1);
|
|
7775
7775
|
|
|
7776
7776
|
if (f != NULL) {
|
|
7777
7777
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
@@ -7913,7 +7913,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_FLOAT_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
7913
7913
|
richcmpfunc f;
|
|
7914
7914
|
|
|
7915
7915
|
if (&PyFloat_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyFloat_Type)) {
|
|
7916
|
-
f =
|
|
7916
|
+
f = TP_RICHCOMPARE(type2);
|
|
7917
7917
|
|
|
7918
7918
|
if (f != NULL) {
|
|
7919
7919
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -7941,7 +7941,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_FLOAT_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
7941
7941
|
Py_DECREF_IMMORTAL(result);
|
|
7942
7942
|
}
|
|
7943
7943
|
|
|
7944
|
-
f =
|
|
7944
|
+
f = TP_RICHCOMPARE(type2);
|
|
7945
7945
|
if (f != NULL) {
|
|
7946
7946
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
7947
7947
|
|
|
@@ -8046,7 +8046,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_FLOAT_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
8046
8046
|
richcmpfunc f;
|
|
8047
8047
|
|
|
8048
8048
|
if (&PyFloat_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyFloat_Type)) {
|
|
8049
|
-
f =
|
|
8049
|
+
f = TP_RICHCOMPARE(type2);
|
|
8050
8050
|
|
|
8051
8051
|
if (f != NULL) {
|
|
8052
8052
|
checked_reverse_op = true;
|
|
@@ -8078,7 +8078,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_FLOAT_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
8078
8078
|
}
|
|
8079
8079
|
|
|
8080
8080
|
if (checked_reverse_op == false) {
|
|
8081
|
-
f =
|
|
8081
|
+
f = TP_RICHCOMPARE(type2);
|
|
8082
8082
|
|
|
8083
8083
|
if (f != NULL) {
|
|
8084
8084
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -8264,7 +8264,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_OBJECT_FLOAT(PyObject *operand1, PyObject *ope
|
|
|
8264
8264
|
}
|
|
8265
8265
|
}
|
|
8266
8266
|
|
|
8267
|
-
f =
|
|
8267
|
+
f = TP_RICHCOMPARE(type1);
|
|
8268
8268
|
if (f != NULL) {
|
|
8269
8269
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
8270
8270
|
|
|
@@ -8423,7 +8423,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_OBJECT_FLOAT(PyObject *operand1, PyObject *ope
|
|
|
8423
8423
|
}
|
|
8424
8424
|
}
|
|
8425
8425
|
|
|
8426
|
-
f =
|
|
8426
|
+
f = TP_RICHCOMPARE(type1);
|
|
8427
8427
|
|
|
8428
8428
|
if (f != NULL) {
|
|
8429
8429
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
@@ -8589,7 +8589,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_FLOAT_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
8589
8589
|
richcmpfunc f;
|
|
8590
8590
|
|
|
8591
8591
|
if (&PyFloat_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyFloat_Type)) {
|
|
8592
|
-
f =
|
|
8592
|
+
f = TP_RICHCOMPARE(type2);
|
|
8593
8593
|
|
|
8594
8594
|
if (f != NULL) {
|
|
8595
8595
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -8633,7 +8633,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_FLOAT_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
8633
8633
|
Py_DECREF_IMMORTAL(result);
|
|
8634
8634
|
}
|
|
8635
8635
|
|
|
8636
|
-
f =
|
|
8636
|
+
f = TP_RICHCOMPARE(type2);
|
|
8637
8637
|
if (f != NULL) {
|
|
8638
8638
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
8639
8639
|
|
|
@@ -8746,7 +8746,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_FLOAT_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
8746
8746
|
richcmpfunc f;
|
|
8747
8747
|
|
|
8748
8748
|
if (&PyFloat_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyFloat_Type)) {
|
|
8749
|
-
f =
|
|
8749
|
+
f = TP_RICHCOMPARE(type2);
|
|
8750
8750
|
|
|
8751
8751
|
if (f != NULL) {
|
|
8752
8752
|
checked_reverse_op = true;
|
|
@@ -8794,7 +8794,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_FLOAT_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
8794
8794
|
}
|
|
8795
8795
|
|
|
8796
8796
|
if (checked_reverse_op == false) {
|
|
8797
|
-
f =
|
|
8797
|
+
f = TP_RICHCOMPARE(type2);
|
|
8798
8798
|
|
|
8799
8799
|
if (f != NULL) {
|
|
8800
8800
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -8991,7 +8991,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_OBJECT_TUPLE(PyObject *operand1, PyObject *oper
|
|
|
8991
8991
|
}
|
|
8992
8992
|
}
|
|
8993
8993
|
|
|
8994
|
-
f =
|
|
8994
|
+
f = TP_RICHCOMPARE(type1);
|
|
8995
8995
|
if (f != NULL) {
|
|
8996
8996
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
8997
8997
|
|
|
@@ -9126,7 +9126,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_OBJECT_TUPLE(PyObject *operand1, PyObject *oper
|
|
|
9126
9126
|
}
|
|
9127
9127
|
}
|
|
9128
9128
|
|
|
9129
|
-
f =
|
|
9129
|
+
f = TP_RICHCOMPARE(type1);
|
|
9130
9130
|
|
|
9131
9131
|
if (f != NULL) {
|
|
9132
9132
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
@@ -9268,7 +9268,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_TUPLE_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
9268
9268
|
richcmpfunc f;
|
|
9269
9269
|
|
|
9270
9270
|
if (&PyTuple_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyTuple_Type)) {
|
|
9271
|
-
f =
|
|
9271
|
+
f = TP_RICHCOMPARE(type2);
|
|
9272
9272
|
|
|
9273
9273
|
if (f != NULL) {
|
|
9274
9274
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -9296,7 +9296,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_TUPLE_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
9296
9296
|
Py_DECREF_IMMORTAL(result);
|
|
9297
9297
|
}
|
|
9298
9298
|
|
|
9299
|
-
f =
|
|
9299
|
+
f = TP_RICHCOMPARE(type2);
|
|
9300
9300
|
if (f != NULL) {
|
|
9301
9301
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
9302
9302
|
|
|
@@ -9401,7 +9401,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_TUPLE_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
9401
9401
|
richcmpfunc f;
|
|
9402
9402
|
|
|
9403
9403
|
if (&PyTuple_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyTuple_Type)) {
|
|
9404
|
-
f =
|
|
9404
|
+
f = TP_RICHCOMPARE(type2);
|
|
9405
9405
|
|
|
9406
9406
|
if (f != NULL) {
|
|
9407
9407
|
checked_reverse_op = true;
|
|
@@ -9433,7 +9433,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_TUPLE_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
9433
9433
|
}
|
|
9434
9434
|
|
|
9435
9435
|
if (checked_reverse_op == false) {
|
|
9436
|
-
f =
|
|
9436
|
+
f = TP_RICHCOMPARE(type2);
|
|
9437
9437
|
|
|
9438
9438
|
if (f != NULL) {
|
|
9439
9439
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -9644,7 +9644,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_OBJECT_TUPLE(PyObject *operand1, PyObject *ope
|
|
|
9644
9644
|
}
|
|
9645
9645
|
}
|
|
9646
9646
|
|
|
9647
|
-
f =
|
|
9647
|
+
f = TP_RICHCOMPARE(type1);
|
|
9648
9648
|
if (f != NULL) {
|
|
9649
9649
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
9650
9650
|
|
|
@@ -9803,7 +9803,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_OBJECT_TUPLE(PyObject *operand1, PyObject *ope
|
|
|
9803
9803
|
}
|
|
9804
9804
|
}
|
|
9805
9805
|
|
|
9806
|
-
f =
|
|
9806
|
+
f = TP_RICHCOMPARE(type1);
|
|
9807
9807
|
|
|
9808
9808
|
if (f != NULL) {
|
|
9809
9809
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
@@ -9969,7 +9969,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_TUPLE_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
9969
9969
|
richcmpfunc f;
|
|
9970
9970
|
|
|
9971
9971
|
if (&PyTuple_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyTuple_Type)) {
|
|
9972
|
-
f =
|
|
9972
|
+
f = TP_RICHCOMPARE(type2);
|
|
9973
9973
|
|
|
9974
9974
|
if (f != NULL) {
|
|
9975
9975
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -10013,7 +10013,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_TUPLE_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
10013
10013
|
Py_DECREF_IMMORTAL(result);
|
|
10014
10014
|
}
|
|
10015
10015
|
|
|
10016
|
-
f =
|
|
10016
|
+
f = TP_RICHCOMPARE(type2);
|
|
10017
10017
|
if (f != NULL) {
|
|
10018
10018
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
10019
10019
|
|
|
@@ -10126,7 +10126,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_TUPLE_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
10126
10126
|
richcmpfunc f;
|
|
10127
10127
|
|
|
10128
10128
|
if (&PyTuple_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyTuple_Type)) {
|
|
10129
|
-
f =
|
|
10129
|
+
f = TP_RICHCOMPARE(type2);
|
|
10130
10130
|
|
|
10131
10131
|
if (f != NULL) {
|
|
10132
10132
|
checked_reverse_op = true;
|
|
@@ -10174,7 +10174,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_TUPLE_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
10174
10174
|
}
|
|
10175
10175
|
|
|
10176
10176
|
if (checked_reverse_op == false) {
|
|
10177
|
-
f =
|
|
10177
|
+
f = TP_RICHCOMPARE(type2);
|
|
10178
10178
|
|
|
10179
10179
|
if (f != NULL) {
|
|
10180
10180
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -10378,7 +10378,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_OBJECT_LIST(PyObject *operand1, PyObject *opera
|
|
|
10378
10378
|
}
|
|
10379
10379
|
}
|
|
10380
10380
|
|
|
10381
|
-
f =
|
|
10381
|
+
f = TP_RICHCOMPARE(type1);
|
|
10382
10382
|
if (f != NULL) {
|
|
10383
10383
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
10384
10384
|
|
|
@@ -10513,7 +10513,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_OBJECT_LIST(PyObject *operand1, PyObject *opera
|
|
|
10513
10513
|
}
|
|
10514
10514
|
}
|
|
10515
10515
|
|
|
10516
|
-
f =
|
|
10516
|
+
f = TP_RICHCOMPARE(type1);
|
|
10517
10517
|
|
|
10518
10518
|
if (f != NULL) {
|
|
10519
10519
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
@@ -10655,7 +10655,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_LIST_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
10655
10655
|
richcmpfunc f;
|
|
10656
10656
|
|
|
10657
10657
|
if (&PyList_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyList_Type)) {
|
|
10658
|
-
f =
|
|
10658
|
+
f = TP_RICHCOMPARE(type2);
|
|
10659
10659
|
|
|
10660
10660
|
if (f != NULL) {
|
|
10661
10661
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -10683,7 +10683,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_LIST_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
10683
10683
|
Py_DECREF_IMMORTAL(result);
|
|
10684
10684
|
}
|
|
10685
10685
|
|
|
10686
|
-
f =
|
|
10686
|
+
f = TP_RICHCOMPARE(type2);
|
|
10687
10687
|
if (f != NULL) {
|
|
10688
10688
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
10689
10689
|
|
|
@@ -10788,7 +10788,7 @@ PyObject *RICH_COMPARE_LT_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 =
|
|
10791
|
+
f = TP_RICHCOMPARE(type2);
|
|
10792
10792
|
|
|
10793
10793
|
if (f != NULL) {
|
|
10794
10794
|
checked_reverse_op = true;
|
|
@@ -10820,7 +10820,7 @@ PyObject *RICH_COMPARE_LT_OBJECT_LIST_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
10820
10820
|
}
|
|
10821
10821
|
|
|
10822
10822
|
if (checked_reverse_op == false) {
|
|
10823
|
-
f =
|
|
10823
|
+
f = TP_RICHCOMPARE(type2);
|
|
10824
10824
|
|
|
10825
10825
|
if (f != NULL) {
|
|
10826
10826
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -11032,7 +11032,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_OBJECT_LIST(PyObject *operand1, PyObject *oper
|
|
|
11032
11032
|
}
|
|
11033
11033
|
}
|
|
11034
11034
|
|
|
11035
|
-
f =
|
|
11035
|
+
f = TP_RICHCOMPARE(type1);
|
|
11036
11036
|
if (f != NULL) {
|
|
11037
11037
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
11038
11038
|
|
|
@@ -11191,7 +11191,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_OBJECT_LIST(PyObject *operand1, PyObject *oper
|
|
|
11191
11191
|
}
|
|
11192
11192
|
}
|
|
11193
11193
|
|
|
11194
|
-
f =
|
|
11194
|
+
f = TP_RICHCOMPARE(type1);
|
|
11195
11195
|
|
|
11196
11196
|
if (f != NULL) {
|
|
11197
11197
|
PyObject *result = (*f)(operand1, operand2, Py_LT);
|
|
@@ -11357,7 +11357,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_LIST_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
11357
11357
|
richcmpfunc f;
|
|
11358
11358
|
|
|
11359
11359
|
if (&PyList_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyList_Type)) {
|
|
11360
|
-
f =
|
|
11360
|
+
f = TP_RICHCOMPARE(type2);
|
|
11361
11361
|
|
|
11362
11362
|
if (f != NULL) {
|
|
11363
11363
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
@@ -11401,7 +11401,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_LIST_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
11401
11401
|
Py_DECREF_IMMORTAL(result);
|
|
11402
11402
|
}
|
|
11403
11403
|
|
|
11404
|
-
f =
|
|
11404
|
+
f = TP_RICHCOMPARE(type2);
|
|
11405
11405
|
if (f != NULL) {
|
|
11406
11406
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|
|
11407
11407
|
|
|
@@ -11514,7 +11514,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_LIST_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
11514
11514
|
richcmpfunc f;
|
|
11515
11515
|
|
|
11516
11516
|
if (&PyList_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyList_Type)) {
|
|
11517
|
-
f =
|
|
11517
|
+
f = TP_RICHCOMPARE(type2);
|
|
11518
11518
|
|
|
11519
11519
|
if (f != NULL) {
|
|
11520
11520
|
checked_reverse_op = true;
|
|
@@ -11562,7 +11562,7 @@ nuitka_bool RICH_COMPARE_LT_NBOOL_LIST_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
11562
11562
|
}
|
|
11563
11563
|
|
|
11564
11564
|
if (checked_reverse_op == false) {
|
|
11565
|
-
f =
|
|
11565
|
+
f = TP_RICHCOMPARE(type2);
|
|
11566
11566
|
|
|
11567
11567
|
if (f != NULL) {
|
|
11568
11568
|
PyObject *result = (*f)(operand2, operand1, Py_GT);
|