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
|
@@ -79,7 +79,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
79
79
|
// If the types are equal, we may get away immediately except for instances.
|
|
80
80
|
if (type1 == type2 && !PyInstance_Check(operand1)) {
|
|
81
81
|
|
|
82
|
-
richcmpfunc frich =
|
|
82
|
+
richcmpfunc frich = TP_RICHCOMPARE(type1);
|
|
83
83
|
|
|
84
84
|
if (frich != NULL) {
|
|
85
85
|
PyObject *result = (*frich)(operand1, operand2, Py_LE);
|
|
@@ -140,7 +140,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
140
140
|
richcmpfunc f;
|
|
141
141
|
|
|
142
142
|
if (type1 != type2 && Nuitka_Type_IsSubtype(type2, type1)) {
|
|
143
|
-
f =
|
|
143
|
+
f = TP_RICHCOMPARE(type2);
|
|
144
144
|
|
|
145
145
|
if (f != NULL) {
|
|
146
146
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -155,7 +155,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
155
155
|
}
|
|
156
156
|
}
|
|
157
157
|
|
|
158
|
-
f =
|
|
158
|
+
f = TP_RICHCOMPARE(type1);
|
|
159
159
|
if (f != NULL) {
|
|
160
160
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
161
161
|
|
|
@@ -168,7 +168,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
168
168
|
Py_DECREF_IMMORTAL(result);
|
|
169
169
|
}
|
|
170
170
|
|
|
171
|
-
f =
|
|
171
|
+
f = TP_RICHCOMPARE(type2);
|
|
172
172
|
if (f != NULL) {
|
|
173
173
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
174
174
|
|
|
@@ -273,7 +273,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
273
273
|
richcmpfunc f;
|
|
274
274
|
|
|
275
275
|
if (type1 != type2 && Nuitka_Type_IsSubtype(type2, type1)) {
|
|
276
|
-
f =
|
|
276
|
+
f = TP_RICHCOMPARE(type2);
|
|
277
277
|
|
|
278
278
|
if (f != NULL) {
|
|
279
279
|
checked_reverse_op = true;
|
|
@@ -290,7 +290,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
290
290
|
}
|
|
291
291
|
}
|
|
292
292
|
|
|
293
|
-
f =
|
|
293
|
+
f = TP_RICHCOMPARE(type1);
|
|
294
294
|
|
|
295
295
|
if (f != NULL) {
|
|
296
296
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
@@ -305,7 +305,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_OBJECT_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
305
305
|
}
|
|
306
306
|
|
|
307
307
|
if (checked_reverse_op == false) {
|
|
308
|
-
f =
|
|
308
|
+
f = TP_RICHCOMPARE(type2);
|
|
309
309
|
|
|
310
310
|
if (f != NULL) {
|
|
311
311
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -383,7 +383,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
|
|
|
383
383
|
// If the types are equal, we may get away immediately except for instances.
|
|
384
384
|
if (type1 == type2 && !PyInstance_Check(operand1)) {
|
|
385
385
|
|
|
386
|
-
richcmpfunc frich =
|
|
386
|
+
richcmpfunc frich = TP_RICHCOMPARE(type1);
|
|
387
387
|
|
|
388
388
|
if (frich != NULL) {
|
|
389
389
|
PyObject *result = (*frich)(operand1, operand2, Py_LE);
|
|
@@ -452,7 +452,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
|
|
|
452
452
|
richcmpfunc f;
|
|
453
453
|
|
|
454
454
|
if (type1 != type2 && Nuitka_Type_IsSubtype(type2, type1)) {
|
|
455
|
-
f =
|
|
455
|
+
f = TP_RICHCOMPARE(type2);
|
|
456
456
|
|
|
457
457
|
if (f != NULL) {
|
|
458
458
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -475,7 +475,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
|
|
|
475
475
|
}
|
|
476
476
|
}
|
|
477
477
|
|
|
478
|
-
f =
|
|
478
|
+
f = TP_RICHCOMPARE(type1);
|
|
479
479
|
if (f != NULL) {
|
|
480
480
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
481
481
|
|
|
@@ -496,7 +496,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
|
|
|
496
496
|
Py_DECREF_IMMORTAL(result);
|
|
497
497
|
}
|
|
498
498
|
|
|
499
|
-
f =
|
|
499
|
+
f = TP_RICHCOMPARE(type2);
|
|
500
500
|
if (f != NULL) {
|
|
501
501
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
502
502
|
|
|
@@ -609,7 +609,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
|
|
|
609
609
|
richcmpfunc f;
|
|
610
610
|
|
|
611
611
|
if (type1 != type2 && Nuitka_Type_IsSubtype(type2, type1)) {
|
|
612
|
-
f =
|
|
612
|
+
f = TP_RICHCOMPARE(type2);
|
|
613
613
|
|
|
614
614
|
if (f != NULL) {
|
|
615
615
|
checked_reverse_op = true;
|
|
@@ -634,7 +634,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
|
|
|
634
634
|
}
|
|
635
635
|
}
|
|
636
636
|
|
|
637
|
-
f =
|
|
637
|
+
f = TP_RICHCOMPARE(type1);
|
|
638
638
|
|
|
639
639
|
if (f != NULL) {
|
|
640
640
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
@@ -657,7 +657,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_OBJECT_OBJECT(PyObject *operand1, PyObject *op
|
|
|
657
657
|
}
|
|
658
658
|
|
|
659
659
|
if (checked_reverse_op == false) {
|
|
660
|
-
f =
|
|
660
|
+
f = TP_RICHCOMPARE(type2);
|
|
661
661
|
|
|
662
662
|
if (f != NULL) {
|
|
663
663
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -855,7 +855,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_OBJECT_STR(PyObject *operand1, PyObject *operan
|
|
|
855
855
|
}
|
|
856
856
|
}
|
|
857
857
|
|
|
858
|
-
f =
|
|
858
|
+
f = TP_RICHCOMPARE(type1);
|
|
859
859
|
if (f != NULL) {
|
|
860
860
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
861
861
|
|
|
@@ -990,7 +990,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_OBJECT_STR(PyObject *operand1, PyObject *operan
|
|
|
990
990
|
}
|
|
991
991
|
}
|
|
992
992
|
|
|
993
|
-
f =
|
|
993
|
+
f = TP_RICHCOMPARE(type1);
|
|
994
994
|
|
|
995
995
|
if (f != NULL) {
|
|
996
996
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
@@ -1134,7 +1134,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_STR_OBJECT(PyObject *operand1, PyObject *operan
|
|
|
1134
1134
|
richcmpfunc f;
|
|
1135
1135
|
|
|
1136
1136
|
if (&PyString_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyString_Type)) {
|
|
1137
|
-
f =
|
|
1137
|
+
f = TP_RICHCOMPARE(type2);
|
|
1138
1138
|
|
|
1139
1139
|
if (f != NULL) {
|
|
1140
1140
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -1162,7 +1162,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_STR_OBJECT(PyObject *operand1, PyObject *operan
|
|
|
1162
1162
|
Py_DECREF_IMMORTAL(result);
|
|
1163
1163
|
}
|
|
1164
1164
|
|
|
1165
|
-
f =
|
|
1165
|
+
f = TP_RICHCOMPARE(type2);
|
|
1166
1166
|
if (f != NULL) {
|
|
1167
1167
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
1168
1168
|
|
|
@@ -1267,7 +1267,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_STR_OBJECT(PyObject *operand1, PyObject *operan
|
|
|
1267
1267
|
richcmpfunc f;
|
|
1268
1268
|
|
|
1269
1269
|
if (&PyString_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyString_Type)) {
|
|
1270
|
-
f =
|
|
1270
|
+
f = TP_RICHCOMPARE(type2);
|
|
1271
1271
|
|
|
1272
1272
|
if (f != NULL) {
|
|
1273
1273
|
checked_reverse_op = true;
|
|
@@ -1299,7 +1299,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_STR_OBJECT(PyObject *operand1, PyObject *operan
|
|
|
1299
1299
|
}
|
|
1300
1300
|
|
|
1301
1301
|
if (checked_reverse_op == false) {
|
|
1302
|
-
f =
|
|
1302
|
+
f = TP_RICHCOMPARE(type2);
|
|
1303
1303
|
|
|
1304
1304
|
if (f != NULL) {
|
|
1305
1305
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -1521,7 +1521,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_OBJECT_STR(PyObject *operand1, PyObject *opera
|
|
|
1521
1521
|
}
|
|
1522
1522
|
}
|
|
1523
1523
|
|
|
1524
|
-
f =
|
|
1524
|
+
f = TP_RICHCOMPARE(type1);
|
|
1525
1525
|
if (f != NULL) {
|
|
1526
1526
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
1527
1527
|
|
|
@@ -1680,7 +1680,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_OBJECT_STR(PyObject *operand1, PyObject *opera
|
|
|
1680
1680
|
}
|
|
1681
1681
|
}
|
|
1682
1682
|
|
|
1683
|
-
f =
|
|
1683
|
+
f = TP_RICHCOMPARE(type1);
|
|
1684
1684
|
|
|
1685
1685
|
if (f != NULL) {
|
|
1686
1686
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
@@ -1848,7 +1848,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_STR_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
1848
1848
|
richcmpfunc f;
|
|
1849
1849
|
|
|
1850
1850
|
if (&PyString_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyString_Type)) {
|
|
1851
|
-
f =
|
|
1851
|
+
f = TP_RICHCOMPARE(type2);
|
|
1852
1852
|
|
|
1853
1853
|
if (f != NULL) {
|
|
1854
1854
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -1892,7 +1892,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_STR_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
1892
1892
|
Py_DECREF_IMMORTAL(result);
|
|
1893
1893
|
}
|
|
1894
1894
|
|
|
1895
|
-
f =
|
|
1895
|
+
f = TP_RICHCOMPARE(type2);
|
|
1896
1896
|
if (f != NULL) {
|
|
1897
1897
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
1898
1898
|
|
|
@@ -2005,7 +2005,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_STR_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
2005
2005
|
richcmpfunc f;
|
|
2006
2006
|
|
|
2007
2007
|
if (&PyString_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyString_Type)) {
|
|
2008
|
-
f =
|
|
2008
|
+
f = TP_RICHCOMPARE(type2);
|
|
2009
2009
|
|
|
2010
2010
|
if (f != NULL) {
|
|
2011
2011
|
checked_reverse_op = true;
|
|
@@ -2053,7 +2053,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_STR_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
2053
2053
|
}
|
|
2054
2054
|
|
|
2055
2055
|
if (checked_reverse_op == false) {
|
|
2056
|
-
f =
|
|
2056
|
+
f = TP_RICHCOMPARE(type2);
|
|
2057
2057
|
|
|
2058
2058
|
if (f != NULL) {
|
|
2059
2059
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -2228,7 +2228,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_OBJECT_UNICODE(PyObject *operand1, PyObject *op
|
|
|
2228
2228
|
}
|
|
2229
2229
|
}
|
|
2230
2230
|
|
|
2231
|
-
f =
|
|
2231
|
+
f = TP_RICHCOMPARE(type1);
|
|
2232
2232
|
if (f != NULL) {
|
|
2233
2233
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
2234
2234
|
|
|
@@ -2363,7 +2363,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_OBJECT_UNICODE(PyObject *operand1, PyObject *op
|
|
|
2363
2363
|
}
|
|
2364
2364
|
}
|
|
2365
2365
|
|
|
2366
|
-
f =
|
|
2366
|
+
f = TP_RICHCOMPARE(type1);
|
|
2367
2367
|
|
|
2368
2368
|
if (f != NULL) {
|
|
2369
2369
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
@@ -2507,7 +2507,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_UNICODE_OBJECT(PyObject *operand1, PyObject *op
|
|
|
2507
2507
|
richcmpfunc f;
|
|
2508
2508
|
|
|
2509
2509
|
if (&PyUnicode_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyUnicode_Type)) {
|
|
2510
|
-
f =
|
|
2510
|
+
f = TP_RICHCOMPARE(type2);
|
|
2511
2511
|
|
|
2512
2512
|
if (f != NULL) {
|
|
2513
2513
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -2535,7 +2535,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_UNICODE_OBJECT(PyObject *operand1, PyObject *op
|
|
|
2535
2535
|
Py_DECREF_IMMORTAL(result);
|
|
2536
2536
|
}
|
|
2537
2537
|
|
|
2538
|
-
f =
|
|
2538
|
+
f = TP_RICHCOMPARE(type2);
|
|
2539
2539
|
if (f != NULL) {
|
|
2540
2540
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
2541
2541
|
|
|
@@ -2640,7 +2640,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_UNICODE_OBJECT(PyObject *operand1, PyObject *op
|
|
|
2640
2640
|
richcmpfunc f;
|
|
2641
2641
|
|
|
2642
2642
|
if (&PyUnicode_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyUnicode_Type)) {
|
|
2643
|
-
f =
|
|
2643
|
+
f = TP_RICHCOMPARE(type2);
|
|
2644
2644
|
|
|
2645
2645
|
if (f != NULL) {
|
|
2646
2646
|
checked_reverse_op = true;
|
|
@@ -2672,7 +2672,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_UNICODE_OBJECT(PyObject *operand1, PyObject *op
|
|
|
2672
2672
|
}
|
|
2673
2673
|
|
|
2674
2674
|
if (checked_reverse_op == false) {
|
|
2675
|
-
f =
|
|
2675
|
+
f = TP_RICHCOMPARE(type2);
|
|
2676
2676
|
|
|
2677
2677
|
if (f != NULL) {
|
|
2678
2678
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -2874,7 +2874,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_OBJECT_UNICODE(PyObject *operand1, PyObject *o
|
|
|
2874
2874
|
}
|
|
2875
2875
|
}
|
|
2876
2876
|
|
|
2877
|
-
f =
|
|
2877
|
+
f = TP_RICHCOMPARE(type1);
|
|
2878
2878
|
if (f != NULL) {
|
|
2879
2879
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
2880
2880
|
|
|
@@ -3033,7 +3033,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_OBJECT_UNICODE(PyObject *operand1, PyObject *o
|
|
|
3033
3033
|
}
|
|
3034
3034
|
}
|
|
3035
3035
|
|
|
3036
|
-
f =
|
|
3036
|
+
f = TP_RICHCOMPARE(type1);
|
|
3037
3037
|
|
|
3038
3038
|
if (f != NULL) {
|
|
3039
3039
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
@@ -3201,7 +3201,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_UNICODE_OBJECT(PyObject *operand1, PyObject *o
|
|
|
3201
3201
|
richcmpfunc f;
|
|
3202
3202
|
|
|
3203
3203
|
if (&PyUnicode_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyUnicode_Type)) {
|
|
3204
|
-
f =
|
|
3204
|
+
f = TP_RICHCOMPARE(type2);
|
|
3205
3205
|
|
|
3206
3206
|
if (f != NULL) {
|
|
3207
3207
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -3245,7 +3245,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_UNICODE_OBJECT(PyObject *operand1, PyObject *o
|
|
|
3245
3245
|
Py_DECREF_IMMORTAL(result);
|
|
3246
3246
|
}
|
|
3247
3247
|
|
|
3248
|
-
f =
|
|
3248
|
+
f = TP_RICHCOMPARE(type2);
|
|
3249
3249
|
if (f != NULL) {
|
|
3250
3250
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
3251
3251
|
|
|
@@ -3358,7 +3358,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_UNICODE_OBJECT(PyObject *operand1, PyObject *o
|
|
|
3358
3358
|
richcmpfunc f;
|
|
3359
3359
|
|
|
3360
3360
|
if (&PyUnicode_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyUnicode_Type)) {
|
|
3361
|
-
f =
|
|
3361
|
+
f = TP_RICHCOMPARE(type2);
|
|
3362
3362
|
|
|
3363
3363
|
if (f != NULL) {
|
|
3364
3364
|
checked_reverse_op = true;
|
|
@@ -3406,7 +3406,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_UNICODE_OBJECT(PyObject *operand1, PyObject *o
|
|
|
3406
3406
|
}
|
|
3407
3407
|
|
|
3408
3408
|
if (checked_reverse_op == false) {
|
|
3409
|
-
f =
|
|
3409
|
+
f = TP_RICHCOMPARE(type2);
|
|
3410
3410
|
|
|
3411
3411
|
if (f != NULL) {
|
|
3412
3412
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -3605,7 +3605,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_OBJECT_BYTES(PyObject *operand1, PyObject *oper
|
|
|
3605
3605
|
}
|
|
3606
3606
|
}
|
|
3607
3607
|
|
|
3608
|
-
f =
|
|
3608
|
+
f = TP_RICHCOMPARE(type1);
|
|
3609
3609
|
if (f != NULL) {
|
|
3610
3610
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
3611
3611
|
|
|
@@ -3740,7 +3740,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_OBJECT_BYTES(PyObject *operand1, PyObject *oper
|
|
|
3740
3740
|
}
|
|
3741
3741
|
}
|
|
3742
3742
|
|
|
3743
|
-
f =
|
|
3743
|
+
f = TP_RICHCOMPARE(type1);
|
|
3744
3744
|
|
|
3745
3745
|
if (f != NULL) {
|
|
3746
3746
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
@@ -3884,7 +3884,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_BYTES_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
3884
3884
|
richcmpfunc f;
|
|
3885
3885
|
|
|
3886
3886
|
if (&PyBytes_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyBytes_Type)) {
|
|
3887
|
-
f =
|
|
3887
|
+
f = TP_RICHCOMPARE(type2);
|
|
3888
3888
|
|
|
3889
3889
|
if (f != NULL) {
|
|
3890
3890
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -3912,7 +3912,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_BYTES_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
3912
3912
|
Py_DECREF_IMMORTAL(result);
|
|
3913
3913
|
}
|
|
3914
3914
|
|
|
3915
|
-
f =
|
|
3915
|
+
f = TP_RICHCOMPARE(type2);
|
|
3916
3916
|
if (f != NULL) {
|
|
3917
3917
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
3918
3918
|
|
|
@@ -4017,7 +4017,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_BYTES_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
4017
4017
|
richcmpfunc f;
|
|
4018
4018
|
|
|
4019
4019
|
if (&PyBytes_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyBytes_Type)) {
|
|
4020
|
-
f =
|
|
4020
|
+
f = TP_RICHCOMPARE(type2);
|
|
4021
4021
|
|
|
4022
4022
|
if (f != NULL) {
|
|
4023
4023
|
checked_reverse_op = true;
|
|
@@ -4049,7 +4049,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_BYTES_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
4049
4049
|
}
|
|
4050
4050
|
|
|
4051
4051
|
if (checked_reverse_op == false) {
|
|
4052
|
-
f =
|
|
4052
|
+
f = TP_RICHCOMPARE(type2);
|
|
4053
4053
|
|
|
4054
4054
|
if (f != NULL) {
|
|
4055
4055
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -4271,7 +4271,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_OBJECT_BYTES(PyObject *operand1, PyObject *ope
|
|
|
4271
4271
|
}
|
|
4272
4272
|
}
|
|
4273
4273
|
|
|
4274
|
-
f =
|
|
4274
|
+
f = TP_RICHCOMPARE(type1);
|
|
4275
4275
|
if (f != NULL) {
|
|
4276
4276
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
4277
4277
|
|
|
@@ -4430,7 +4430,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_OBJECT_BYTES(PyObject *operand1, PyObject *ope
|
|
|
4430
4430
|
}
|
|
4431
4431
|
}
|
|
4432
4432
|
|
|
4433
|
-
f =
|
|
4433
|
+
f = TP_RICHCOMPARE(type1);
|
|
4434
4434
|
|
|
4435
4435
|
if (f != NULL) {
|
|
4436
4436
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
@@ -4598,7 +4598,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_BYTES_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
4598
4598
|
richcmpfunc f;
|
|
4599
4599
|
|
|
4600
4600
|
if (&PyBytes_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyBytes_Type)) {
|
|
4601
|
-
f =
|
|
4601
|
+
f = TP_RICHCOMPARE(type2);
|
|
4602
4602
|
|
|
4603
4603
|
if (f != NULL) {
|
|
4604
4604
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -4642,7 +4642,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_BYTES_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
4642
4642
|
Py_DECREF_IMMORTAL(result);
|
|
4643
4643
|
}
|
|
4644
4644
|
|
|
4645
|
-
f =
|
|
4645
|
+
f = TP_RICHCOMPARE(type2);
|
|
4646
4646
|
if (f != NULL) {
|
|
4647
4647
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
4648
4648
|
|
|
@@ -4755,7 +4755,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_BYTES_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
4755
4755
|
richcmpfunc f;
|
|
4756
4756
|
|
|
4757
4757
|
if (&PyBytes_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyBytes_Type)) {
|
|
4758
|
-
f =
|
|
4758
|
+
f = TP_RICHCOMPARE(type2);
|
|
4759
4759
|
|
|
4760
4760
|
if (f != NULL) {
|
|
4761
4761
|
checked_reverse_op = true;
|
|
@@ -4803,7 +4803,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_BYTES_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
4803
4803
|
}
|
|
4804
4804
|
|
|
4805
4805
|
if (checked_reverse_op == false) {
|
|
4806
|
-
f =
|
|
4806
|
+
f = TP_RICHCOMPARE(type2);
|
|
4807
4807
|
|
|
4808
4808
|
if (f != NULL) {
|
|
4809
4809
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -4955,7 +4955,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_OBJECT_INT(PyObject *operand1, PyObject *operan
|
|
|
4955
4955
|
}
|
|
4956
4956
|
}
|
|
4957
4957
|
|
|
4958
|
-
f =
|
|
4958
|
+
f = TP_RICHCOMPARE(type1);
|
|
4959
4959
|
if (f != NULL) {
|
|
4960
4960
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
4961
4961
|
|
|
@@ -5090,7 +5090,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_OBJECT_INT(PyObject *operand1, PyObject *operan
|
|
|
5090
5090
|
}
|
|
5091
5091
|
}
|
|
5092
5092
|
|
|
5093
|
-
f =
|
|
5093
|
+
f = TP_RICHCOMPARE(type1);
|
|
5094
5094
|
|
|
5095
5095
|
if (f != NULL) {
|
|
5096
5096
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
@@ -5234,7 +5234,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_INT_OBJECT(PyObject *operand1, PyObject *operan
|
|
|
5234
5234
|
richcmpfunc f;
|
|
5235
5235
|
|
|
5236
5236
|
if (&PyInt_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyInt_Type)) {
|
|
5237
|
-
f =
|
|
5237
|
+
f = TP_RICHCOMPARE(type2);
|
|
5238
5238
|
|
|
5239
5239
|
if (f != NULL) {
|
|
5240
5240
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -5262,7 +5262,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_INT_OBJECT(PyObject *operand1, PyObject *operan
|
|
|
5262
5262
|
Py_DECREF_IMMORTAL(result);
|
|
5263
5263
|
}
|
|
5264
5264
|
|
|
5265
|
-
f =
|
|
5265
|
+
f = TP_RICHCOMPARE(type2);
|
|
5266
5266
|
if (f != NULL) {
|
|
5267
5267
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
5268
5268
|
|
|
@@ -5367,7 +5367,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_INT_OBJECT(PyObject *operand1, PyObject *operan
|
|
|
5367
5367
|
richcmpfunc f;
|
|
5368
5368
|
|
|
5369
5369
|
if (&PyInt_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyInt_Type)) {
|
|
5370
|
-
f =
|
|
5370
|
+
f = TP_RICHCOMPARE(type2);
|
|
5371
5371
|
|
|
5372
5372
|
if (f != NULL) {
|
|
5373
5373
|
checked_reverse_op = true;
|
|
@@ -5399,7 +5399,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_INT_OBJECT(PyObject *operand1, PyObject *operan
|
|
|
5399
5399
|
}
|
|
5400
5400
|
|
|
5401
5401
|
if (checked_reverse_op == false) {
|
|
5402
|
-
f =
|
|
5402
|
+
f = TP_RICHCOMPARE(type2);
|
|
5403
5403
|
|
|
5404
5404
|
if (f != NULL) {
|
|
5405
5405
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -5575,7 +5575,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_OBJECT_INT(PyObject *operand1, PyObject *opera
|
|
|
5575
5575
|
}
|
|
5576
5576
|
}
|
|
5577
5577
|
|
|
5578
|
-
f =
|
|
5578
|
+
f = TP_RICHCOMPARE(type1);
|
|
5579
5579
|
if (f != NULL) {
|
|
5580
5580
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
5581
5581
|
|
|
@@ -5734,7 +5734,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_OBJECT_INT(PyObject *operand1, PyObject *opera
|
|
|
5734
5734
|
}
|
|
5735
5735
|
}
|
|
5736
5736
|
|
|
5737
|
-
f =
|
|
5737
|
+
f = TP_RICHCOMPARE(type1);
|
|
5738
5738
|
|
|
5739
5739
|
if (f != NULL) {
|
|
5740
5740
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
@@ -5902,7 +5902,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_INT_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
5902
5902
|
richcmpfunc f;
|
|
5903
5903
|
|
|
5904
5904
|
if (&PyInt_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyInt_Type)) {
|
|
5905
|
-
f =
|
|
5905
|
+
f = TP_RICHCOMPARE(type2);
|
|
5906
5906
|
|
|
5907
5907
|
if (f != NULL) {
|
|
5908
5908
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -5946,7 +5946,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_INT_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
5946
5946
|
Py_DECREF_IMMORTAL(result);
|
|
5947
5947
|
}
|
|
5948
5948
|
|
|
5949
|
-
f =
|
|
5949
|
+
f = TP_RICHCOMPARE(type2);
|
|
5950
5950
|
if (f != NULL) {
|
|
5951
5951
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
5952
5952
|
|
|
@@ -6059,7 +6059,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_INT_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
6059
6059
|
richcmpfunc f;
|
|
6060
6060
|
|
|
6061
6061
|
if (&PyInt_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyInt_Type)) {
|
|
6062
|
-
f =
|
|
6062
|
+
f = TP_RICHCOMPARE(type2);
|
|
6063
6063
|
|
|
6064
6064
|
if (f != NULL) {
|
|
6065
6065
|
checked_reverse_op = true;
|
|
@@ -6107,7 +6107,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_INT_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
6107
6107
|
}
|
|
6108
6108
|
|
|
6109
6109
|
if (checked_reverse_op == false) {
|
|
6110
|
-
f =
|
|
6110
|
+
f = TP_RICHCOMPARE(type2);
|
|
6111
6111
|
|
|
6112
6112
|
if (f != NULL) {
|
|
6113
6113
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -6297,7 +6297,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_OBJECT_LONG(PyObject *operand1, PyObject *opera
|
|
|
6297
6297
|
}
|
|
6298
6298
|
}
|
|
6299
6299
|
|
|
6300
|
-
f =
|
|
6300
|
+
f = TP_RICHCOMPARE(type1);
|
|
6301
6301
|
if (f != NULL) {
|
|
6302
6302
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
6303
6303
|
|
|
@@ -6432,7 +6432,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_OBJECT_LONG(PyObject *operand1, PyObject *opera
|
|
|
6432
6432
|
}
|
|
6433
6433
|
}
|
|
6434
6434
|
|
|
6435
|
-
f =
|
|
6435
|
+
f = TP_RICHCOMPARE(type1);
|
|
6436
6436
|
|
|
6437
6437
|
if (f != NULL) {
|
|
6438
6438
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
@@ -6576,7 +6576,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_LONG_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
6576
6576
|
richcmpfunc f;
|
|
6577
6577
|
|
|
6578
6578
|
if (&PyLong_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyLong_Type)) {
|
|
6579
|
-
f =
|
|
6579
|
+
f = TP_RICHCOMPARE(type2);
|
|
6580
6580
|
|
|
6581
6581
|
if (f != NULL) {
|
|
6582
6582
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -6604,7 +6604,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_LONG_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
6604
6604
|
Py_DECREF_IMMORTAL(result);
|
|
6605
6605
|
}
|
|
6606
6606
|
|
|
6607
|
-
f =
|
|
6607
|
+
f = TP_RICHCOMPARE(type2);
|
|
6608
6608
|
if (f != NULL) {
|
|
6609
6609
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
6610
6610
|
|
|
@@ -6709,7 +6709,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_LONG_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
6709
6709
|
richcmpfunc f;
|
|
6710
6710
|
|
|
6711
6711
|
if (&PyLong_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyLong_Type)) {
|
|
6712
|
-
f =
|
|
6712
|
+
f = TP_RICHCOMPARE(type2);
|
|
6713
6713
|
|
|
6714
6714
|
if (f != NULL) {
|
|
6715
6715
|
checked_reverse_op = true;
|
|
@@ -6741,7 +6741,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_LONG_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
6741
6741
|
}
|
|
6742
6742
|
|
|
6743
6743
|
if (checked_reverse_op == false) {
|
|
6744
|
-
f =
|
|
6744
|
+
f = TP_RICHCOMPARE(type2);
|
|
6745
6745
|
|
|
6746
6746
|
if (f != NULL) {
|
|
6747
6747
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -6952,7 +6952,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_OBJECT_LONG(PyObject *operand1, PyObject *oper
|
|
|
6952
6952
|
}
|
|
6953
6953
|
}
|
|
6954
6954
|
|
|
6955
|
-
f =
|
|
6955
|
+
f = TP_RICHCOMPARE(type1);
|
|
6956
6956
|
if (f != NULL) {
|
|
6957
6957
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
6958
6958
|
|
|
@@ -7111,7 +7111,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_OBJECT_LONG(PyObject *operand1, PyObject *oper
|
|
|
7111
7111
|
}
|
|
7112
7112
|
}
|
|
7113
7113
|
|
|
7114
|
-
f =
|
|
7114
|
+
f = TP_RICHCOMPARE(type1);
|
|
7115
7115
|
|
|
7116
7116
|
if (f != NULL) {
|
|
7117
7117
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
@@ -7279,7 +7279,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_LONG_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
7279
7279
|
richcmpfunc f;
|
|
7280
7280
|
|
|
7281
7281
|
if (&PyLong_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyLong_Type)) {
|
|
7282
|
-
f =
|
|
7282
|
+
f = TP_RICHCOMPARE(type2);
|
|
7283
7283
|
|
|
7284
7284
|
if (f != NULL) {
|
|
7285
7285
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -7323,7 +7323,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_LONG_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
7323
7323
|
Py_DECREF_IMMORTAL(result);
|
|
7324
7324
|
}
|
|
7325
7325
|
|
|
7326
|
-
f =
|
|
7326
|
+
f = TP_RICHCOMPARE(type2);
|
|
7327
7327
|
if (f != NULL) {
|
|
7328
7328
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
7329
7329
|
|
|
@@ -7436,7 +7436,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_LONG_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
7436
7436
|
richcmpfunc f;
|
|
7437
7437
|
|
|
7438
7438
|
if (&PyLong_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyLong_Type)) {
|
|
7439
|
-
f =
|
|
7439
|
+
f = TP_RICHCOMPARE(type2);
|
|
7440
7440
|
|
|
7441
7441
|
if (f != NULL) {
|
|
7442
7442
|
checked_reverse_op = true;
|
|
@@ -7484,7 +7484,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_LONG_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
7484
7484
|
}
|
|
7485
7485
|
|
|
7486
7486
|
if (checked_reverse_op == false) {
|
|
7487
|
-
f =
|
|
7487
|
+
f = TP_RICHCOMPARE(type2);
|
|
7488
7488
|
|
|
7489
7489
|
if (f != NULL) {
|
|
7490
7490
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -7652,7 +7652,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_OBJECT_FLOAT(PyObject *operand1, PyObject *oper
|
|
|
7652
7652
|
}
|
|
7653
7653
|
}
|
|
7654
7654
|
|
|
7655
|
-
f =
|
|
7655
|
+
f = TP_RICHCOMPARE(type1);
|
|
7656
7656
|
if (f != NULL) {
|
|
7657
7657
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
7658
7658
|
|
|
@@ -7787,7 +7787,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_OBJECT_FLOAT(PyObject *operand1, PyObject *oper
|
|
|
7787
7787
|
}
|
|
7788
7788
|
}
|
|
7789
7789
|
|
|
7790
|
-
f =
|
|
7790
|
+
f = TP_RICHCOMPARE(type1);
|
|
7791
7791
|
|
|
7792
7792
|
if (f != NULL) {
|
|
7793
7793
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
@@ -7929,7 +7929,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_FLOAT_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
7929
7929
|
richcmpfunc f;
|
|
7930
7930
|
|
|
7931
7931
|
if (&PyFloat_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyFloat_Type)) {
|
|
7932
|
-
f =
|
|
7932
|
+
f = TP_RICHCOMPARE(type2);
|
|
7933
7933
|
|
|
7934
7934
|
if (f != NULL) {
|
|
7935
7935
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -7957,7 +7957,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_FLOAT_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
7957
7957
|
Py_DECREF_IMMORTAL(result);
|
|
7958
7958
|
}
|
|
7959
7959
|
|
|
7960
|
-
f =
|
|
7960
|
+
f = TP_RICHCOMPARE(type2);
|
|
7961
7961
|
if (f != NULL) {
|
|
7962
7962
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
7963
7963
|
|
|
@@ -8062,7 +8062,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_FLOAT_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
8062
8062
|
richcmpfunc f;
|
|
8063
8063
|
|
|
8064
8064
|
if (&PyFloat_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyFloat_Type)) {
|
|
8065
|
-
f =
|
|
8065
|
+
f = TP_RICHCOMPARE(type2);
|
|
8066
8066
|
|
|
8067
8067
|
if (f != NULL) {
|
|
8068
8068
|
checked_reverse_op = true;
|
|
@@ -8094,7 +8094,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_FLOAT_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
8094
8094
|
}
|
|
8095
8095
|
|
|
8096
8096
|
if (checked_reverse_op == false) {
|
|
8097
|
-
f =
|
|
8097
|
+
f = TP_RICHCOMPARE(type2);
|
|
8098
8098
|
|
|
8099
8099
|
if (f != NULL) {
|
|
8100
8100
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -8280,7 +8280,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_OBJECT_FLOAT(PyObject *operand1, PyObject *ope
|
|
|
8280
8280
|
}
|
|
8281
8281
|
}
|
|
8282
8282
|
|
|
8283
|
-
f =
|
|
8283
|
+
f = TP_RICHCOMPARE(type1);
|
|
8284
8284
|
if (f != NULL) {
|
|
8285
8285
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
8286
8286
|
|
|
@@ -8439,7 +8439,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_OBJECT_FLOAT(PyObject *operand1, PyObject *ope
|
|
|
8439
8439
|
}
|
|
8440
8440
|
}
|
|
8441
8441
|
|
|
8442
|
-
f =
|
|
8442
|
+
f = TP_RICHCOMPARE(type1);
|
|
8443
8443
|
|
|
8444
8444
|
if (f != NULL) {
|
|
8445
8445
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
@@ -8605,7 +8605,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_FLOAT_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
8605
8605
|
richcmpfunc f;
|
|
8606
8606
|
|
|
8607
8607
|
if (&PyFloat_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyFloat_Type)) {
|
|
8608
|
-
f =
|
|
8608
|
+
f = TP_RICHCOMPARE(type2);
|
|
8609
8609
|
|
|
8610
8610
|
if (f != NULL) {
|
|
8611
8611
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -8649,7 +8649,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_FLOAT_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
8649
8649
|
Py_DECREF_IMMORTAL(result);
|
|
8650
8650
|
}
|
|
8651
8651
|
|
|
8652
|
-
f =
|
|
8652
|
+
f = TP_RICHCOMPARE(type2);
|
|
8653
8653
|
if (f != NULL) {
|
|
8654
8654
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
8655
8655
|
|
|
@@ -8762,7 +8762,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_FLOAT_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
8762
8762
|
richcmpfunc f;
|
|
8763
8763
|
|
|
8764
8764
|
if (&PyFloat_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyFloat_Type)) {
|
|
8765
|
-
f =
|
|
8765
|
+
f = TP_RICHCOMPARE(type2);
|
|
8766
8766
|
|
|
8767
8767
|
if (f != NULL) {
|
|
8768
8768
|
checked_reverse_op = true;
|
|
@@ -8810,7 +8810,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_FLOAT_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
8810
8810
|
}
|
|
8811
8811
|
|
|
8812
8812
|
if (checked_reverse_op == false) {
|
|
8813
|
-
f =
|
|
8813
|
+
f = TP_RICHCOMPARE(type2);
|
|
8814
8814
|
|
|
8815
8815
|
if (f != NULL) {
|
|
8816
8816
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -9007,7 +9007,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_OBJECT_TUPLE(PyObject *operand1, PyObject *oper
|
|
|
9007
9007
|
}
|
|
9008
9008
|
}
|
|
9009
9009
|
|
|
9010
|
-
f =
|
|
9010
|
+
f = TP_RICHCOMPARE(type1);
|
|
9011
9011
|
if (f != NULL) {
|
|
9012
9012
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
9013
9013
|
|
|
@@ -9142,7 +9142,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_OBJECT_TUPLE(PyObject *operand1, PyObject *oper
|
|
|
9142
9142
|
}
|
|
9143
9143
|
}
|
|
9144
9144
|
|
|
9145
|
-
f =
|
|
9145
|
+
f = TP_RICHCOMPARE(type1);
|
|
9146
9146
|
|
|
9147
9147
|
if (f != NULL) {
|
|
9148
9148
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
@@ -9284,7 +9284,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_TUPLE_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
9284
9284
|
richcmpfunc f;
|
|
9285
9285
|
|
|
9286
9286
|
if (&PyTuple_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyTuple_Type)) {
|
|
9287
|
-
f =
|
|
9287
|
+
f = TP_RICHCOMPARE(type2);
|
|
9288
9288
|
|
|
9289
9289
|
if (f != NULL) {
|
|
9290
9290
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -9312,7 +9312,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_TUPLE_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
9312
9312
|
Py_DECREF_IMMORTAL(result);
|
|
9313
9313
|
}
|
|
9314
9314
|
|
|
9315
|
-
f =
|
|
9315
|
+
f = TP_RICHCOMPARE(type2);
|
|
9316
9316
|
if (f != NULL) {
|
|
9317
9317
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
9318
9318
|
|
|
@@ -9417,7 +9417,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_TUPLE_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
9417
9417
|
richcmpfunc f;
|
|
9418
9418
|
|
|
9419
9419
|
if (&PyTuple_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyTuple_Type)) {
|
|
9420
|
-
f =
|
|
9420
|
+
f = TP_RICHCOMPARE(type2);
|
|
9421
9421
|
|
|
9422
9422
|
if (f != NULL) {
|
|
9423
9423
|
checked_reverse_op = true;
|
|
@@ -9449,7 +9449,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_TUPLE_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
9449
9449
|
}
|
|
9450
9450
|
|
|
9451
9451
|
if (checked_reverse_op == false) {
|
|
9452
|
-
f =
|
|
9452
|
+
f = TP_RICHCOMPARE(type2);
|
|
9453
9453
|
|
|
9454
9454
|
if (f != NULL) {
|
|
9455
9455
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -9660,7 +9660,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_OBJECT_TUPLE(PyObject *operand1, PyObject *ope
|
|
|
9660
9660
|
}
|
|
9661
9661
|
}
|
|
9662
9662
|
|
|
9663
|
-
f =
|
|
9663
|
+
f = TP_RICHCOMPARE(type1);
|
|
9664
9664
|
if (f != NULL) {
|
|
9665
9665
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
9666
9666
|
|
|
@@ -9819,7 +9819,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_OBJECT_TUPLE(PyObject *operand1, PyObject *ope
|
|
|
9819
9819
|
}
|
|
9820
9820
|
}
|
|
9821
9821
|
|
|
9822
|
-
f =
|
|
9822
|
+
f = TP_RICHCOMPARE(type1);
|
|
9823
9823
|
|
|
9824
9824
|
if (f != NULL) {
|
|
9825
9825
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
@@ -9985,7 +9985,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_TUPLE_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
9985
9985
|
richcmpfunc f;
|
|
9986
9986
|
|
|
9987
9987
|
if (&PyTuple_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyTuple_Type)) {
|
|
9988
|
-
f =
|
|
9988
|
+
f = TP_RICHCOMPARE(type2);
|
|
9989
9989
|
|
|
9990
9990
|
if (f != NULL) {
|
|
9991
9991
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -10029,7 +10029,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_TUPLE_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
10029
10029
|
Py_DECREF_IMMORTAL(result);
|
|
10030
10030
|
}
|
|
10031
10031
|
|
|
10032
|
-
f =
|
|
10032
|
+
f = TP_RICHCOMPARE(type2);
|
|
10033
10033
|
if (f != NULL) {
|
|
10034
10034
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
10035
10035
|
|
|
@@ -10142,7 +10142,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_TUPLE_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
10142
10142
|
richcmpfunc f;
|
|
10143
10143
|
|
|
10144
10144
|
if (&PyTuple_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyTuple_Type)) {
|
|
10145
|
-
f =
|
|
10145
|
+
f = TP_RICHCOMPARE(type2);
|
|
10146
10146
|
|
|
10147
10147
|
if (f != NULL) {
|
|
10148
10148
|
checked_reverse_op = true;
|
|
@@ -10190,7 +10190,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_TUPLE_OBJECT(PyObject *operand1, PyObject *ope
|
|
|
10190
10190
|
}
|
|
10191
10191
|
|
|
10192
10192
|
if (checked_reverse_op == false) {
|
|
10193
|
-
f =
|
|
10193
|
+
f = TP_RICHCOMPARE(type2);
|
|
10194
10194
|
|
|
10195
10195
|
if (f != NULL) {
|
|
10196
10196
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -10394,7 +10394,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_OBJECT_LIST(PyObject *operand1, PyObject *opera
|
|
|
10394
10394
|
}
|
|
10395
10395
|
}
|
|
10396
10396
|
|
|
10397
|
-
f =
|
|
10397
|
+
f = TP_RICHCOMPARE(type1);
|
|
10398
10398
|
if (f != NULL) {
|
|
10399
10399
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
10400
10400
|
|
|
@@ -10529,7 +10529,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_OBJECT_LIST(PyObject *operand1, PyObject *opera
|
|
|
10529
10529
|
}
|
|
10530
10530
|
}
|
|
10531
10531
|
|
|
10532
|
-
f =
|
|
10532
|
+
f = TP_RICHCOMPARE(type1);
|
|
10533
10533
|
|
|
10534
10534
|
if (f != NULL) {
|
|
10535
10535
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
@@ -10671,7 +10671,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_LIST_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
10671
10671
|
richcmpfunc f;
|
|
10672
10672
|
|
|
10673
10673
|
if (&PyList_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyList_Type)) {
|
|
10674
|
-
f =
|
|
10674
|
+
f = TP_RICHCOMPARE(type2);
|
|
10675
10675
|
|
|
10676
10676
|
if (f != NULL) {
|
|
10677
10677
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -10699,7 +10699,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_LIST_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
10699
10699
|
Py_DECREF_IMMORTAL(result);
|
|
10700
10700
|
}
|
|
10701
10701
|
|
|
10702
|
-
f =
|
|
10702
|
+
f = TP_RICHCOMPARE(type2);
|
|
10703
10703
|
if (f != NULL) {
|
|
10704
10704
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
10705
10705
|
|
|
@@ -10804,7 +10804,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_LIST_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
10804
10804
|
richcmpfunc f;
|
|
10805
10805
|
|
|
10806
10806
|
if (&PyList_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyList_Type)) {
|
|
10807
|
-
f =
|
|
10807
|
+
f = TP_RICHCOMPARE(type2);
|
|
10808
10808
|
|
|
10809
10809
|
if (f != NULL) {
|
|
10810
10810
|
checked_reverse_op = true;
|
|
@@ -10836,7 +10836,7 @@ PyObject *RICH_COMPARE_LE_OBJECT_LIST_OBJECT(PyObject *operand1, PyObject *opera
|
|
|
10836
10836
|
}
|
|
10837
10837
|
|
|
10838
10838
|
if (checked_reverse_op == false) {
|
|
10839
|
-
f =
|
|
10839
|
+
f = TP_RICHCOMPARE(type2);
|
|
10840
10840
|
|
|
10841
10841
|
if (f != NULL) {
|
|
10842
10842
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -11048,7 +11048,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_OBJECT_LIST(PyObject *operand1, PyObject *oper
|
|
|
11048
11048
|
}
|
|
11049
11049
|
}
|
|
11050
11050
|
|
|
11051
|
-
f =
|
|
11051
|
+
f = TP_RICHCOMPARE(type1);
|
|
11052
11052
|
if (f != NULL) {
|
|
11053
11053
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
11054
11054
|
|
|
@@ -11207,7 +11207,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_OBJECT_LIST(PyObject *operand1, PyObject *oper
|
|
|
11207
11207
|
}
|
|
11208
11208
|
}
|
|
11209
11209
|
|
|
11210
|
-
f =
|
|
11210
|
+
f = TP_RICHCOMPARE(type1);
|
|
11211
11211
|
|
|
11212
11212
|
if (f != NULL) {
|
|
11213
11213
|
PyObject *result = (*f)(operand1, operand2, Py_LE);
|
|
@@ -11373,7 +11373,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_LIST_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
11373
11373
|
richcmpfunc f;
|
|
11374
11374
|
|
|
11375
11375
|
if (&PyList_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyList_Type)) {
|
|
11376
|
-
f =
|
|
11376
|
+
f = TP_RICHCOMPARE(type2);
|
|
11377
11377
|
|
|
11378
11378
|
if (f != NULL) {
|
|
11379
11379
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
@@ -11417,7 +11417,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_LIST_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
11417
11417
|
Py_DECREF_IMMORTAL(result);
|
|
11418
11418
|
}
|
|
11419
11419
|
|
|
11420
|
-
f =
|
|
11420
|
+
f = TP_RICHCOMPARE(type2);
|
|
11421
11421
|
if (f != NULL) {
|
|
11422
11422
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|
|
11423
11423
|
|
|
@@ -11530,7 +11530,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_LIST_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
11530
11530
|
richcmpfunc f;
|
|
11531
11531
|
|
|
11532
11532
|
if (&PyList_Type != type2 && Nuitka_Type_IsSubtype(type2, &PyList_Type)) {
|
|
11533
|
-
f =
|
|
11533
|
+
f = TP_RICHCOMPARE(type2);
|
|
11534
11534
|
|
|
11535
11535
|
if (f != NULL) {
|
|
11536
11536
|
checked_reverse_op = true;
|
|
@@ -11578,7 +11578,7 @@ nuitka_bool RICH_COMPARE_LE_NBOOL_LIST_OBJECT(PyObject *operand1, PyObject *oper
|
|
|
11578
11578
|
}
|
|
11579
11579
|
|
|
11580
11580
|
if (checked_reverse_op == false) {
|
|
11581
|
-
f =
|
|
11581
|
+
f = TP_RICHCOMPARE(type2);
|
|
11582
11582
|
|
|
11583
11583
|
if (f != NULL) {
|
|
11584
11584
|
PyObject *result = (*f)(operand2, operand1, Py_GE);
|