Nuitka-winsvc 2.2.3__cp311-cp311-win_amd64.whl → 2.3__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.
- {Nuitka_winsvc-2.2.3.dist-info → Nuitka_winsvc-2.3.dist-info}/METADATA +1 -1
- {Nuitka_winsvc-2.2.3.dist-info → Nuitka_winsvc-2.3.dist-info}/RECORD +198 -197
- nuitka/Bytecodes.py +4 -2
- nuitka/HardImportRegistry.py +1 -0
- nuitka/MainControl.py +16 -10
- nuitka/ModuleRegistry.py +15 -0
- nuitka/OptionParsing.py +30 -8
- nuitka/Options.py +104 -44
- nuitka/PostProcessing.py +9 -8
- nuitka/PythonVersions.py +2 -1
- nuitka/Serialization.py +47 -30
- nuitka/Version.py +1 -1
- nuitka/build/Backend.scons +46 -19
- nuitka/build/CCompilerVersion.scons +3 -3
- nuitka/build/Onefile.scons +4 -4
- nuitka/build/SconsCaching.py +3 -2
- nuitka/build/SconsCompilerSettings.py +11 -5
- nuitka/build/SconsInterface.py +22 -6
- nuitka/build/SconsUtils.py +9 -1
- nuitka/build/include/nuitka/allocator.h +58 -2
- nuitka/build/include/nuitka/compiled_frame.h +48 -13
- nuitka/build/include/nuitka/compiled_function.h +4 -0
- nuitka/build/include/nuitka/constants.h +6 -0
- nuitka/build/include/nuitka/exception_groups.h +6 -6
- nuitka/build/include/nuitka/exceptions.h +3 -3
- nuitka/build/include/nuitka/freelists.h +11 -0
- nuitka/build/include/nuitka/helper/dictionaries.h +5 -4
- nuitka/build/include/nuitka/helper/lists.h +5 -5
- nuitka/build/include/nuitka/helper/lists_generated.h +12 -12
- nuitka/build/include/nuitka/helper/sequences.h +6 -0
- nuitka/build/include/nuitka/helper/slices.h +14 -8
- nuitka/build/include/nuitka/helper/subscripts.h +1 -184
- nuitka/build/include/nuitka/helper/tuples.h +42 -33
- nuitka/build/include/nuitka/importing.h +5 -0
- nuitka/build/include/nuitka/prelude.h +35 -2
- nuitka/build/include/nuitka/safe_string_ops.h +1 -0
- nuitka/build/include/nuitka/threading.h +13 -10
- nuitka/build/static_src/CompiledAsyncgenType.c +19 -8
- nuitka/build/static_src/CompiledCellType.c +1 -1
- nuitka/build/static_src/CompiledCodeHelpers.c +18 -16
- nuitka/build/static_src/CompiledCoroutineType.c +23 -19
- nuitka/build/static_src/CompiledFrameType.c +46 -34
- nuitka/build/static_src/CompiledFunctionType.c +55 -34
- nuitka/build/static_src/CompiledGeneratorType.c +21 -19
- nuitka/build/static_src/CompiledGeneratorTypeUncompiledIntegration.c +127 -130
- nuitka/build/static_src/CompiledMethodType.c +15 -17
- nuitka/build/static_src/HelpersAllocator.c +71 -0
- nuitka/build/static_src/HelpersAttributes.c +1 -1
- nuitka/build/static_src/HelpersBuiltin.c +5 -5
- nuitka/build/static_src/HelpersBytes.c +2 -2
- nuitka/build/static_src/HelpersCalling.c +3 -0
- nuitka/build/static_src/HelpersCallingGenerated.c +131 -131
- nuitka/build/static_src/HelpersComparisonEq.c +329 -329
- nuitka/build/static_src/HelpersComparisonEqUtils.c +3 -1
- nuitka/build/static_src/HelpersComparisonGe.c +322 -322
- nuitka/build/static_src/HelpersComparisonGt.c +321 -321
- nuitka/build/static_src/HelpersComparisonLe.c +322 -322
- nuitka/build/static_src/HelpersComparisonLt.c +321 -321
- nuitka/build/static_src/HelpersComparisonNe.c +329 -329
- nuitka/build/static_src/HelpersConsole.c +96 -0
- nuitka/build/static_src/HelpersConstantsBlob.c +10 -6
- nuitka/build/static_src/HelpersDeepcopy.c +10 -8
- nuitka/build/static_src/HelpersDictionaries.c +17 -11
- nuitka/build/static_src/HelpersDictionariesGenerated.c +65 -29
- nuitka/build/static_src/HelpersExceptions.c +107 -9
- nuitka/build/static_src/HelpersFilesystemPaths.c +64 -4
- nuitka/build/static_src/HelpersFloats.c +20 -14
- nuitka/build/static_src/HelpersImport.c +1 -1
- nuitka/build/static_src/HelpersJitSources.c +1 -1
- nuitka/build/static_src/HelpersLists.c +29 -19
- nuitka/build/static_src/HelpersListsGenerated.c +24 -24
- nuitka/build/static_src/HelpersMatching.c +32 -5
- nuitka/build/static_src/HelpersOperationBinaryAdd.c +90 -63
- nuitka/build/static_src/HelpersOperationBinaryAddUtils.c +4 -4
- nuitka/build/static_src/HelpersOperationBinaryBitand.c +33 -33
- nuitka/build/static_src/HelpersOperationBinaryBitor.c +33 -33
- nuitka/build/static_src/HelpersOperationBinaryBitxor.c +33 -33
- nuitka/build/static_src/HelpersOperationBinaryDivmod.c +24 -24
- nuitka/build/static_src/HelpersOperationBinaryFloordiv.c +24 -24
- nuitka/build/static_src/HelpersOperationBinaryLshift.c +30 -30
- nuitka/build/static_src/HelpersOperationBinaryMatmult.c +7 -7
- nuitka/build/static_src/HelpersOperationBinaryMod.c +90 -90
- nuitka/build/static_src/HelpersOperationBinaryMult.c +64 -58
- nuitka/build/static_src/HelpersOperationBinaryOlddiv.c +24 -24
- nuitka/build/static_src/HelpersOperationBinaryPow.c +27 -27
- nuitka/build/static_src/HelpersOperationBinaryRshift.c +30 -30
- nuitka/build/static_src/HelpersOperationBinarySub.c +24 -24
- nuitka/build/static_src/HelpersOperationBinaryTruediv.c +24 -24
- nuitka/build/static_src/HelpersOperationInplaceAdd.c +67 -49
- nuitka/build/static_src/HelpersOperationInplaceBitand.c +25 -25
- nuitka/build/static_src/HelpersOperationInplaceBitor.c +25 -25
- nuitka/build/static_src/HelpersOperationInplaceBitxor.c +25 -25
- nuitka/build/static_src/HelpersOperationInplaceFloordiv.c +28 -28
- nuitka/build/static_src/HelpersOperationInplaceLshift.c +18 -18
- nuitka/build/static_src/HelpersOperationInplaceMatmult.c +10 -10
- nuitka/build/static_src/HelpersOperationInplaceMod.c +70 -70
- nuitka/build/static_src/HelpersOperationInplaceMult.c +33 -33
- nuitka/build/static_src/HelpersOperationInplaceOlddiv.c +28 -28
- nuitka/build/static_src/HelpersOperationInplacePow.c +28 -28
- nuitka/build/static_src/HelpersOperationInplaceRshift.c +18 -18
- nuitka/build/static_src/HelpersOperationInplaceSub.c +28 -28
- nuitka/build/static_src/HelpersOperationInplaceTruediv.c +28 -28
- nuitka/build/static_src/HelpersRaising.c +10 -3
- nuitka/build/static_src/HelpersSafeStrings.c +14 -4
- nuitka/build/static_src/HelpersSlices.c +12 -5
- nuitka/build/static_src/HelpersStrings.c +1 -1
- nuitka/build/static_src/HelpersTuples.c +20 -15
- nuitka/build/static_src/InspectPatcher.c +74 -6
- nuitka/build/static_src/MainProgram.c +90 -25
- nuitka/build/static_src/MetaPathBasedLoader.c +81 -45
- nuitka/build/static_src/MetaPathBasedLoaderResourceReaderFiles.c +2 -2
- nuitka/build/static_src/OnefileBootstrap.c +16 -17
- nuitka/code_generation/CodeGeneration.py +5 -2
- nuitka/code_generation/ConstantCodes.py +2 -2
- nuitka/code_generation/DictCodes.py +2 -2
- nuitka/code_generation/GlobalConstants.py +5 -0
- nuitka/code_generation/GlobalsLocalsCodes.py +2 -2
- nuitka/code_generation/ListCodes.py +2 -2
- nuitka/code_generation/LocalsDictCodes.py +1 -1
- nuitka/code_generation/ModuleCodes.py +19 -0
- nuitka/code_generation/PackageResourceCodes.py +14 -0
- nuitka/code_generation/SliceCodes.py +3 -3
- nuitka/code_generation/SubscriptCodes.py +5 -13
- nuitka/code_generation/TupleCodes.py +1 -1
- nuitka/code_generation/c_types/CTypePyObjectPointers.py +7 -7
- nuitka/code_generation/templates/CodeTemplatesConstants.py +7 -5
- nuitka/code_generation/templates/CodeTemplatesLoader.py +2 -0
- nuitka/code_generation/templates/CodeTemplatesModules.py +78 -54
- nuitka/code_generation/templates_c/CodeTemplateCallsMixed.c.j2 +1 -1
- nuitka/code_generation/templates_c/CodeTemplateCallsPositional.c.j2 +8 -8
- nuitka/code_generation/templates_c/CodeTemplateCallsPositionalMethodDescr.c.j2 +5 -5
- nuitka/code_generation/templates_c/CodeTemplateMakeListHinted.c.j2 +2 -2
- nuitka/code_generation/templates_c/CodeTemplateMakeListSmall.c.j2 +2 -2
- nuitka/code_generation/templates_c/HelperDictionaryCopy.c.j2 +57 -21
- nuitka/code_generation/templates_c/HelperImportHard.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperOperationBinary.c.j2 +5 -5
- nuitka/code_generation/templates_c/HelperOperationComparison.c.j2 +18 -18
- nuitka/code_generation/templates_c/HelperOperationComparisonBytes.c.j2 +11 -11
- nuitka/code_generation/templates_c/HelperOperationComparisonFloat.c.j2 +3 -3
- nuitka/code_generation/templates_c/HelperOperationComparisonInt.c.j2 +3 -3
- nuitka/code_generation/templates_c/HelperOperationComparisonList.c.j2 +7 -7
- nuitka/code_generation/templates_c/HelperOperationComparisonLong.c.j2 +3 -3
- nuitka/code_generation/templates_c/HelperOperationComparisonStr.c.j2 +11 -11
- nuitka/code_generation/templates_c/HelperOperationComparisonTuple.c.j2 +7 -7
- nuitka/code_generation/templates_c/HelperOperationComparisonUnicode.c.j2 +10 -10
- nuitka/code_generation/templates_c/HelperOperationInplace.c.j2 +1 -1
- nuitka/code_generation/templates_c/HelperSlotsBinary.c.j2 +3 -3
- nuitka/code_generation/templates_c/HelperSlotsList.c.j2 +4 -1
- nuitka/code_generation/templates_c/HelperSlotsTuple.c.j2 +4 -1
- nuitka/finalizations/FinalizeMarkups.py +0 -18
- nuitka/freezer/DependsExe.py +9 -4
- nuitka/freezer/DllDependenciesMacOS.py +1 -1
- nuitka/freezer/DllDependenciesWin32.py +1 -1
- nuitka/freezer/ImportDetection.py +1 -0
- nuitka/freezer/IncludedDataFiles.py +13 -4
- nuitka/freezer/Onefile.py +0 -1
- nuitka/freezer/Standalone.py +3 -1
- nuitka/importing/ImportCache.py +3 -2
- nuitka/importing/Importing.py +16 -3
- nuitka/importing/StandardLibrary.py +4 -0
- nuitka/nodes/ChildrenHavingMixins.py +2 -0
- nuitka/nodes/ExpressionBasesGenerated.py +4 -0
- nuitka/nodes/HardImportNodesGenerated.py +83 -0
- nuitka/nodes/ModuleNodes.py +10 -2
- nuitka/nodes/OsSysNodes.py +16 -0
- nuitka/nodes/SubscriptNodes.py +3 -3
- nuitka/plugins/PluginBase.py +2 -0
- nuitka/plugins/standard/DataFilesPlugin.py +22 -1
- nuitka/plugins/standard/DillPlugin/DillPlugin.c +3 -3
- nuitka/plugins/standard/OptionsNannyPlugin.py +9 -41
- nuitka/plugins/standard/PkgResourcesPlugin.py +8 -2
- nuitka/plugins/standard/PySidePyQtPlugin.py +3 -0
- nuitka/plugins/standard/standard.nuitka-package.config.yml +18 -12
- nuitka/plugins/standard/stdlib2.nuitka-package.config.yml +2 -2
- nuitka/plugins/standard/stdlib3.nuitka-package.config.yml +2 -2
- nuitka/specs/HardImportSpecs.py +3 -0
- nuitka/specs/ParameterSpecs.py +26 -15
- nuitka/tools/general/find_module/FindModuleCode.py +3 -2
- nuitka/tools/specialize/CTypeDescriptions.py +11 -9
- nuitka/tools/testing/Common.py +12 -5
- nuitka/tools/testing/SearchModes.py +5 -1
- nuitka/tools/watch/GitHub.py +1 -7
- nuitka/tree/Building.py +9 -6
- nuitka/tree/ReformulationMatchStatements.py +39 -3
- nuitka/tree/TreeHelpers.py +8 -0
- nuitka/utils/CStrings.py +7 -0
- nuitka/utils/Execution.py +10 -1
- nuitka/utils/FileOperations.py +21 -13
- nuitka/utils/Importing.py +24 -0
- nuitka/utils/ReExecute.py +7 -3
- nuitka/utils/SharedLibraries.py +17 -0
- nuitka/utils/Yaml.py +9 -1
- {Nuitka_winsvc-2.2.3.data → Nuitka_winsvc-2.3.data}/scripts/nuitka-run.bat +0 -0
- {Nuitka_winsvc-2.2.3.data → Nuitka_winsvc-2.3.data}/scripts/nuitka.bat +0 -0
- {Nuitka_winsvc-2.2.3.dist-info → Nuitka_winsvc-2.3.dist-info}/LICENSE.txt +0 -0
- {Nuitka_winsvc-2.2.3.dist-info → Nuitka_winsvc-2.3.dist-info}/WHEEL +0 -0
- {Nuitka_winsvc-2.2.3.dist-info → Nuitka_winsvc-2.3.dist-info}/entry_points.txt +0 -0
- {Nuitka_winsvc-2.2.3.dist-info → Nuitka_winsvc-2.3.dist-info}/top_level.txt +0 -0
|
@@ -128,7 +128,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_MOD_OBJECT_OBJECT_INT(Py
|
|
|
128
128
|
goto exit_binary_result_object;
|
|
129
129
|
}
|
|
130
130
|
|
|
131
|
-
|
|
131
|
+
Py_DECREF_IMMORTAL(x);
|
|
132
132
|
}
|
|
133
133
|
|
|
134
134
|
if (slot2 != NULL) {
|
|
@@ -139,7 +139,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_MOD_OBJECT_OBJECT_INT(Py
|
|
|
139
139
|
goto exit_binary_result_object;
|
|
140
140
|
}
|
|
141
141
|
|
|
142
|
-
|
|
142
|
+
Py_DECREF_IMMORTAL(x);
|
|
143
143
|
}
|
|
144
144
|
|
|
145
145
|
#if PYTHON_VERSION < 0x300
|
|
@@ -351,7 +351,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_MOD_OBJECT_INT_OBJECT(Py
|
|
|
351
351
|
goto exit_binary_result_object;
|
|
352
352
|
}
|
|
353
353
|
|
|
354
|
-
|
|
354
|
+
Py_DECREF_IMMORTAL(x);
|
|
355
355
|
slot2 = NULL;
|
|
356
356
|
}
|
|
357
357
|
}
|
|
@@ -363,7 +363,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_MOD_OBJECT_INT_OBJECT(Py
|
|
|
363
363
|
goto exit_binary_result_object;
|
|
364
364
|
}
|
|
365
365
|
|
|
366
|
-
|
|
366
|
+
Py_DECREF_IMMORTAL(x);
|
|
367
367
|
}
|
|
368
368
|
|
|
369
369
|
if (slot2 != NULL) {
|
|
@@ -374,7 +374,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_MOD_OBJECT_INT_OBJECT(Py
|
|
|
374
374
|
goto exit_binary_result_object;
|
|
375
375
|
}
|
|
376
376
|
|
|
377
|
-
|
|
377
|
+
Py_DECREF_IMMORTAL(x);
|
|
378
378
|
}
|
|
379
379
|
|
|
380
380
|
#if PYTHON_VERSION < 0x300
|
|
@@ -667,7 +667,7 @@ static HEDLEY_NEVER_INLINE nuitka_bool __BINARY_OPERATION_MOD_NBOOL_OBJECT_INT(P
|
|
|
667
667
|
goto exit_binary_result_object;
|
|
668
668
|
}
|
|
669
669
|
|
|
670
|
-
|
|
670
|
+
Py_DECREF_IMMORTAL(x);
|
|
671
671
|
}
|
|
672
672
|
|
|
673
673
|
if (slot2 != NULL) {
|
|
@@ -678,7 +678,7 @@ static HEDLEY_NEVER_INLINE nuitka_bool __BINARY_OPERATION_MOD_NBOOL_OBJECT_INT(P
|
|
|
678
678
|
goto exit_binary_result_object;
|
|
679
679
|
}
|
|
680
680
|
|
|
681
|
-
|
|
681
|
+
Py_DECREF_IMMORTAL(x);
|
|
682
682
|
}
|
|
683
683
|
|
|
684
684
|
#if PYTHON_VERSION < 0x300
|
|
@@ -899,7 +899,7 @@ static HEDLEY_NEVER_INLINE nuitka_bool __BINARY_OPERATION_MOD_NBOOL_INT_OBJECT(P
|
|
|
899
899
|
goto exit_binary_result_object;
|
|
900
900
|
}
|
|
901
901
|
|
|
902
|
-
|
|
902
|
+
Py_DECREF_IMMORTAL(x);
|
|
903
903
|
slot2 = NULL;
|
|
904
904
|
}
|
|
905
905
|
}
|
|
@@ -911,7 +911,7 @@ static HEDLEY_NEVER_INLINE nuitka_bool __BINARY_OPERATION_MOD_NBOOL_INT_OBJECT(P
|
|
|
911
911
|
goto exit_binary_result_object;
|
|
912
912
|
}
|
|
913
913
|
|
|
914
|
-
|
|
914
|
+
Py_DECREF_IMMORTAL(x);
|
|
915
915
|
}
|
|
916
916
|
|
|
917
917
|
if (slot2 != NULL) {
|
|
@@ -922,7 +922,7 @@ static HEDLEY_NEVER_INLINE nuitka_bool __BINARY_OPERATION_MOD_NBOOL_INT_OBJECT(P
|
|
|
922
922
|
goto exit_binary_result_object;
|
|
923
923
|
}
|
|
924
924
|
|
|
925
|
-
|
|
925
|
+
Py_DECREF_IMMORTAL(x);
|
|
926
926
|
}
|
|
927
927
|
|
|
928
928
|
#if PYTHON_VERSION < 0x300
|
|
@@ -1184,7 +1184,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_MOD_OBJECT_OBJECT_LONG(P
|
|
|
1184
1184
|
goto exit_binary_result_object;
|
|
1185
1185
|
}
|
|
1186
1186
|
|
|
1187
|
-
|
|
1187
|
+
Py_DECREF_IMMORTAL(x);
|
|
1188
1188
|
}
|
|
1189
1189
|
|
|
1190
1190
|
if (slot2 != NULL) {
|
|
@@ -1195,7 +1195,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_MOD_OBJECT_OBJECT_LONG(P
|
|
|
1195
1195
|
goto exit_binary_result_object;
|
|
1196
1196
|
}
|
|
1197
1197
|
|
|
1198
|
-
|
|
1198
|
+
Py_DECREF_IMMORTAL(x);
|
|
1199
1199
|
}
|
|
1200
1200
|
|
|
1201
1201
|
#if PYTHON_VERSION < 0x300
|
|
@@ -1373,7 +1373,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_MOD_OBJECT_LONG_OBJECT(P
|
|
|
1373
1373
|
goto exit_binary_result_object;
|
|
1374
1374
|
}
|
|
1375
1375
|
|
|
1376
|
-
|
|
1376
|
+
Py_DECREF_IMMORTAL(x);
|
|
1377
1377
|
slot2 = NULL;
|
|
1378
1378
|
}
|
|
1379
1379
|
}
|
|
@@ -1385,7 +1385,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_MOD_OBJECT_LONG_OBJECT(P
|
|
|
1385
1385
|
goto exit_binary_result_object;
|
|
1386
1386
|
}
|
|
1387
1387
|
|
|
1388
|
-
|
|
1388
|
+
Py_DECREF_IMMORTAL(x);
|
|
1389
1389
|
}
|
|
1390
1390
|
|
|
1391
1391
|
if (slot2 != NULL) {
|
|
@@ -1396,7 +1396,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_MOD_OBJECT_LONG_OBJECT(P
|
|
|
1396
1396
|
goto exit_binary_result_object;
|
|
1397
1397
|
}
|
|
1398
1398
|
|
|
1399
|
-
|
|
1399
|
+
Py_DECREF_IMMORTAL(x);
|
|
1400
1400
|
}
|
|
1401
1401
|
|
|
1402
1402
|
#if PYTHON_VERSION < 0x300
|
|
@@ -1618,7 +1618,7 @@ static HEDLEY_NEVER_INLINE nuitka_bool __BINARY_OPERATION_MOD_NBOOL_OBJECT_LONG(
|
|
|
1618
1618
|
goto exit_binary_result_object;
|
|
1619
1619
|
}
|
|
1620
1620
|
|
|
1621
|
-
|
|
1621
|
+
Py_DECREF_IMMORTAL(x);
|
|
1622
1622
|
}
|
|
1623
1623
|
|
|
1624
1624
|
if (slot2 != NULL) {
|
|
@@ -1629,7 +1629,7 @@ static HEDLEY_NEVER_INLINE nuitka_bool __BINARY_OPERATION_MOD_NBOOL_OBJECT_LONG(
|
|
|
1629
1629
|
goto exit_binary_result_object;
|
|
1630
1630
|
}
|
|
1631
1631
|
|
|
1632
|
-
|
|
1632
|
+
Py_DECREF_IMMORTAL(x);
|
|
1633
1633
|
}
|
|
1634
1634
|
|
|
1635
1635
|
#if PYTHON_VERSION < 0x300
|
|
@@ -1817,7 +1817,7 @@ static HEDLEY_NEVER_INLINE nuitka_bool __BINARY_OPERATION_MOD_NBOOL_LONG_OBJECT(
|
|
|
1817
1817
|
goto exit_binary_result_object;
|
|
1818
1818
|
}
|
|
1819
1819
|
|
|
1820
|
-
|
|
1820
|
+
Py_DECREF_IMMORTAL(x);
|
|
1821
1821
|
slot2 = NULL;
|
|
1822
1822
|
}
|
|
1823
1823
|
}
|
|
@@ -1829,7 +1829,7 @@ static HEDLEY_NEVER_INLINE nuitka_bool __BINARY_OPERATION_MOD_NBOOL_LONG_OBJECT(
|
|
|
1829
1829
|
goto exit_binary_result_object;
|
|
1830
1830
|
}
|
|
1831
1831
|
|
|
1832
|
-
|
|
1832
|
+
Py_DECREF_IMMORTAL(x);
|
|
1833
1833
|
}
|
|
1834
1834
|
|
|
1835
1835
|
if (slot2 != NULL) {
|
|
@@ -1840,7 +1840,7 @@ static HEDLEY_NEVER_INLINE nuitka_bool __BINARY_OPERATION_MOD_NBOOL_LONG_OBJECT(
|
|
|
1840
1840
|
goto exit_binary_result_object;
|
|
1841
1841
|
}
|
|
1842
1842
|
|
|
1843
|
-
|
|
1843
|
+
Py_DECREF_IMMORTAL(x);
|
|
1844
1844
|
}
|
|
1845
1845
|
|
|
1846
1846
|
#if PYTHON_VERSION < 0x300
|
|
@@ -2091,7 +2091,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_MOD_OBJECT_OBJECT_FLOAT(
|
|
|
2091
2091
|
goto exit_binary_result_object;
|
|
2092
2092
|
}
|
|
2093
2093
|
|
|
2094
|
-
|
|
2094
|
+
Py_DECREF_IMMORTAL(x);
|
|
2095
2095
|
}
|
|
2096
2096
|
|
|
2097
2097
|
if (slot2 != NULL) {
|
|
@@ -2102,7 +2102,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_MOD_OBJECT_OBJECT_FLOAT(
|
|
|
2102
2102
|
goto exit_binary_result_object;
|
|
2103
2103
|
}
|
|
2104
2104
|
|
|
2105
|
-
|
|
2105
|
+
Py_DECREF_IMMORTAL(x);
|
|
2106
2106
|
}
|
|
2107
2107
|
|
|
2108
2108
|
#if PYTHON_VERSION < 0x300
|
|
@@ -2298,7 +2298,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_MOD_OBJECT_FLOAT_OBJECT(
|
|
|
2298
2298
|
goto exit_binary_result_object;
|
|
2299
2299
|
}
|
|
2300
2300
|
|
|
2301
|
-
|
|
2301
|
+
Py_DECREF_IMMORTAL(x);
|
|
2302
2302
|
slot2 = NULL;
|
|
2303
2303
|
}
|
|
2304
2304
|
}
|
|
@@ -2310,7 +2310,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_MOD_OBJECT_FLOAT_OBJECT(
|
|
|
2310
2310
|
goto exit_binary_result_object;
|
|
2311
2311
|
}
|
|
2312
2312
|
|
|
2313
|
-
|
|
2313
|
+
Py_DECREF_IMMORTAL(x);
|
|
2314
2314
|
}
|
|
2315
2315
|
|
|
2316
2316
|
if (slot2 != NULL) {
|
|
@@ -2321,7 +2321,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_MOD_OBJECT_FLOAT_OBJECT(
|
|
|
2321
2321
|
goto exit_binary_result_object;
|
|
2322
2322
|
}
|
|
2323
2323
|
|
|
2324
|
-
|
|
2324
|
+
Py_DECREF_IMMORTAL(x);
|
|
2325
2325
|
}
|
|
2326
2326
|
|
|
2327
2327
|
#if PYTHON_VERSION < 0x300
|
|
@@ -2580,7 +2580,7 @@ static HEDLEY_NEVER_INLINE nuitka_bool __BINARY_OPERATION_MOD_NBOOL_OBJECT_FLOAT
|
|
|
2580
2580
|
goto exit_binary_result_object;
|
|
2581
2581
|
}
|
|
2582
2582
|
|
|
2583
|
-
|
|
2583
|
+
Py_DECREF_IMMORTAL(x);
|
|
2584
2584
|
}
|
|
2585
2585
|
|
|
2586
2586
|
if (slot2 != NULL) {
|
|
@@ -2591,7 +2591,7 @@ static HEDLEY_NEVER_INLINE nuitka_bool __BINARY_OPERATION_MOD_NBOOL_OBJECT_FLOAT
|
|
|
2591
2591
|
goto exit_binary_result_object;
|
|
2592
2592
|
}
|
|
2593
2593
|
|
|
2594
|
-
|
|
2594
|
+
Py_DECREF_IMMORTAL(x);
|
|
2595
2595
|
}
|
|
2596
2596
|
|
|
2597
2597
|
#if PYTHON_VERSION < 0x300
|
|
@@ -2795,7 +2795,7 @@ static HEDLEY_NEVER_INLINE nuitka_bool __BINARY_OPERATION_MOD_NBOOL_FLOAT_OBJECT
|
|
|
2795
2795
|
goto exit_binary_result_object;
|
|
2796
2796
|
}
|
|
2797
2797
|
|
|
2798
|
-
|
|
2798
|
+
Py_DECREF_IMMORTAL(x);
|
|
2799
2799
|
slot2 = NULL;
|
|
2800
2800
|
}
|
|
2801
2801
|
}
|
|
@@ -2807,7 +2807,7 @@ static HEDLEY_NEVER_INLINE nuitka_bool __BINARY_OPERATION_MOD_NBOOL_FLOAT_OBJECT
|
|
|
2807
2807
|
goto exit_binary_result_object;
|
|
2808
2808
|
}
|
|
2809
2809
|
|
|
2810
|
-
|
|
2810
|
+
Py_DECREF_IMMORTAL(x);
|
|
2811
2811
|
}
|
|
2812
2812
|
|
|
2813
2813
|
if (slot2 != NULL) {
|
|
@@ -2818,7 +2818,7 @@ static HEDLEY_NEVER_INLINE nuitka_bool __BINARY_OPERATION_MOD_NBOOL_FLOAT_OBJECT
|
|
|
2818
2818
|
goto exit_binary_result_object;
|
|
2819
2819
|
}
|
|
2820
2820
|
|
|
2821
|
-
|
|
2821
|
+
Py_DECREF_IMMORTAL(x);
|
|
2822
2822
|
}
|
|
2823
2823
|
|
|
2824
2824
|
#if PYTHON_VERSION < 0x300
|
|
@@ -3011,7 +3011,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_FLOAT_LONG(PyObject *operand1, PyO
|
|
|
3011
3011
|
goto exit_binary_result_object;
|
|
3012
3012
|
}
|
|
3013
3013
|
|
|
3014
|
-
|
|
3014
|
+
Py_DECREF_IMMORTAL(x);
|
|
3015
3015
|
}
|
|
3016
3016
|
|
|
3017
3017
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -3068,7 +3068,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_LONG_FLOAT(PyObject *operand1, PyO
|
|
|
3068
3068
|
goto exit_binary_result_object;
|
|
3069
3069
|
}
|
|
3070
3070
|
|
|
3071
|
-
|
|
3071
|
+
Py_DECREF_IMMORTAL(x);
|
|
3072
3072
|
}
|
|
3073
3073
|
|
|
3074
3074
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -3119,7 +3119,7 @@ static nuitka_bool _BINARY_OPERATION_MOD_NBOOL_FLOAT_LONG(PyObject *operand1, Py
|
|
|
3119
3119
|
goto exit_binary_result_object;
|
|
3120
3120
|
}
|
|
3121
3121
|
|
|
3122
|
-
|
|
3122
|
+
Py_DECREF_IMMORTAL(x);
|
|
3123
3123
|
}
|
|
3124
3124
|
|
|
3125
3125
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -3184,7 +3184,7 @@ static nuitka_bool _BINARY_OPERATION_MOD_NBOOL_LONG_FLOAT(PyObject *operand1, Py
|
|
|
3184
3184
|
goto exit_binary_result_object;
|
|
3185
3185
|
}
|
|
3186
3186
|
|
|
3187
|
-
|
|
3187
|
+
Py_DECREF_IMMORTAL(x);
|
|
3188
3188
|
}
|
|
3189
3189
|
|
|
3190
3190
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -3244,7 +3244,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_FLOAT_INT(PyObject *operand1, PyOb
|
|
|
3244
3244
|
goto exit_binary_result_object;
|
|
3245
3245
|
}
|
|
3246
3246
|
|
|
3247
|
-
|
|
3247
|
+
Py_DECREF_IMMORTAL(x);
|
|
3248
3248
|
}
|
|
3249
3249
|
|
|
3250
3250
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -3299,7 +3299,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_INT_FLOAT(PyObject *operand1, PyOb
|
|
|
3299
3299
|
goto exit_binary_result_object;
|
|
3300
3300
|
}
|
|
3301
3301
|
|
|
3302
|
-
|
|
3302
|
+
Py_DECREF_IMMORTAL(x);
|
|
3303
3303
|
}
|
|
3304
3304
|
|
|
3305
3305
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -3348,7 +3348,7 @@ static nuitka_bool _BINARY_OPERATION_MOD_NBOOL_FLOAT_INT(PyObject *operand1, PyO
|
|
|
3348
3348
|
goto exit_binary_result_object;
|
|
3349
3349
|
}
|
|
3350
3350
|
|
|
3351
|
-
|
|
3351
|
+
Py_DECREF_IMMORTAL(x);
|
|
3352
3352
|
}
|
|
3353
3353
|
|
|
3354
3354
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -3411,7 +3411,7 @@ static nuitka_bool _BINARY_OPERATION_MOD_NBOOL_INT_FLOAT(PyObject *operand1, PyO
|
|
|
3411
3411
|
goto exit_binary_result_object;
|
|
3412
3412
|
}
|
|
3413
3413
|
|
|
3414
|
-
|
|
3414
|
+
Py_DECREF_IMMORTAL(x);
|
|
3415
3415
|
}
|
|
3416
3416
|
|
|
3417
3417
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -3468,7 +3468,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_LONG_INT(PyObject *operand1, PyObj
|
|
|
3468
3468
|
goto exit_binary_result_object;
|
|
3469
3469
|
}
|
|
3470
3470
|
|
|
3471
|
-
|
|
3471
|
+
Py_DECREF_IMMORTAL(x);
|
|
3472
3472
|
}
|
|
3473
3473
|
|
|
3474
3474
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -3523,7 +3523,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_INT_LONG(PyObject *operand1, PyObj
|
|
|
3523
3523
|
goto exit_binary_result_object;
|
|
3524
3524
|
}
|
|
3525
3525
|
|
|
3526
|
-
|
|
3526
|
+
Py_DECREF_IMMORTAL(x);
|
|
3527
3527
|
}
|
|
3528
3528
|
|
|
3529
3529
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -3572,7 +3572,7 @@ static nuitka_bool _BINARY_OPERATION_MOD_NBOOL_LONG_INT(PyObject *operand1, PyOb
|
|
|
3572
3572
|
goto exit_binary_result_object;
|
|
3573
3573
|
}
|
|
3574
3574
|
|
|
3575
|
-
|
|
3575
|
+
Py_DECREF_IMMORTAL(x);
|
|
3576
3576
|
}
|
|
3577
3577
|
|
|
3578
3578
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -3635,7 +3635,7 @@ static nuitka_bool _BINARY_OPERATION_MOD_NBOOL_INT_LONG(PyObject *operand1, PyOb
|
|
|
3635
3635
|
goto exit_binary_result_object;
|
|
3636
3636
|
}
|
|
3637
3637
|
|
|
3638
|
-
|
|
3638
|
+
Py_DECREF_IMMORTAL(x);
|
|
3639
3639
|
}
|
|
3640
3640
|
|
|
3641
3641
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -4268,7 +4268,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_STR_INT(PyObject *operand1, PyObje
|
|
|
4268
4268
|
goto exit_binary_result_object;
|
|
4269
4269
|
}
|
|
4270
4270
|
|
|
4271
|
-
|
|
4271
|
+
Py_DECREF_IMMORTAL(x);
|
|
4272
4272
|
}
|
|
4273
4273
|
|
|
4274
4274
|
if (slot2 != NULL) {
|
|
@@ -4279,7 +4279,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_STR_INT(PyObject *operand1, PyObje
|
|
|
4279
4279
|
goto exit_binary_result_object;
|
|
4280
4280
|
}
|
|
4281
4281
|
|
|
4282
|
-
|
|
4282
|
+
Py_DECREF_IMMORTAL(x);
|
|
4283
4283
|
}
|
|
4284
4284
|
|
|
4285
4285
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -4334,7 +4334,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_STR_LONG(PyObject *operand1, PyObj
|
|
|
4334
4334
|
goto exit_binary_result_object;
|
|
4335
4335
|
}
|
|
4336
4336
|
|
|
4337
|
-
|
|
4337
|
+
Py_DECREF_IMMORTAL(x);
|
|
4338
4338
|
}
|
|
4339
4339
|
|
|
4340
4340
|
if (slot2 != NULL) {
|
|
@@ -4345,7 +4345,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_STR_LONG(PyObject *operand1, PyObj
|
|
|
4345
4345
|
goto exit_binary_result_object;
|
|
4346
4346
|
}
|
|
4347
4347
|
|
|
4348
|
-
|
|
4348
|
+
Py_DECREF_IMMORTAL(x);
|
|
4349
4349
|
}
|
|
4350
4350
|
|
|
4351
4351
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -4400,7 +4400,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_STR_FLOAT(PyObject *operand1, PyOb
|
|
|
4400
4400
|
goto exit_binary_result_object;
|
|
4401
4401
|
}
|
|
4402
4402
|
|
|
4403
|
-
|
|
4403
|
+
Py_DECREF_IMMORTAL(x);
|
|
4404
4404
|
}
|
|
4405
4405
|
|
|
4406
4406
|
if (slot2 != NULL) {
|
|
@@ -4411,7 +4411,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_STR_FLOAT(PyObject *operand1, PyOb
|
|
|
4411
4411
|
goto exit_binary_result_object;
|
|
4412
4412
|
}
|
|
4413
4413
|
|
|
4414
|
-
|
|
4414
|
+
Py_DECREF_IMMORTAL(x);
|
|
4415
4415
|
}
|
|
4416
4416
|
|
|
4417
4417
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -4503,7 +4503,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_STR_UNICODE(PyObject *operand1, Py
|
|
|
4503
4503
|
goto exit_binary_result_object;
|
|
4504
4504
|
}
|
|
4505
4505
|
|
|
4506
|
-
|
|
4506
|
+
Py_DECREF_IMMORTAL(x);
|
|
4507
4507
|
}
|
|
4508
4508
|
|
|
4509
4509
|
if (slot2 != NULL) {
|
|
@@ -4514,7 +4514,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_STR_UNICODE(PyObject *operand1, Py
|
|
|
4514
4514
|
goto exit_binary_result_object;
|
|
4515
4515
|
}
|
|
4516
4516
|
|
|
4517
|
-
|
|
4517
|
+
Py_DECREF_IMMORTAL(x);
|
|
4518
4518
|
}
|
|
4519
4519
|
|
|
4520
4520
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -4562,7 +4562,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_STR_TUPLE(PyObject *operand1, PyOb
|
|
|
4562
4562
|
goto exit_binary_result_object;
|
|
4563
4563
|
}
|
|
4564
4564
|
|
|
4565
|
-
|
|
4565
|
+
Py_DECREF_IMMORTAL(x);
|
|
4566
4566
|
}
|
|
4567
4567
|
|
|
4568
4568
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -4610,7 +4610,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_STR_LIST(PyObject *operand1, PyObj
|
|
|
4610
4610
|
goto exit_binary_result_object;
|
|
4611
4611
|
}
|
|
4612
4612
|
|
|
4613
|
-
|
|
4613
|
+
Py_DECREF_IMMORTAL(x);
|
|
4614
4614
|
}
|
|
4615
4615
|
|
|
4616
4616
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -4658,7 +4658,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_STR_DICT(PyObject *operand1, PyObj
|
|
|
4658
4658
|
goto exit_binary_result_object;
|
|
4659
4659
|
}
|
|
4660
4660
|
|
|
4661
|
-
|
|
4661
|
+
Py_DECREF_IMMORTAL(x);
|
|
4662
4662
|
}
|
|
4663
4663
|
|
|
4664
4664
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -4717,7 +4717,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_MOD_OBJECT_STR_OBJECT(Py
|
|
|
4717
4717
|
goto exit_binary_result_object;
|
|
4718
4718
|
}
|
|
4719
4719
|
|
|
4720
|
-
|
|
4720
|
+
Py_DECREF_IMMORTAL(x);
|
|
4721
4721
|
slot2 = NULL;
|
|
4722
4722
|
}
|
|
4723
4723
|
}
|
|
@@ -4729,7 +4729,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_MOD_OBJECT_STR_OBJECT(Py
|
|
|
4729
4729
|
goto exit_binary_result_object;
|
|
4730
4730
|
}
|
|
4731
4731
|
|
|
4732
|
-
|
|
4732
|
+
Py_DECREF_IMMORTAL(x);
|
|
4733
4733
|
}
|
|
4734
4734
|
|
|
4735
4735
|
if (slot2 != NULL) {
|
|
@@ -4740,7 +4740,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_MOD_OBJECT_STR_OBJECT(Py
|
|
|
4740
4740
|
goto exit_binary_result_object;
|
|
4741
4741
|
}
|
|
4742
4742
|
|
|
4743
|
-
|
|
4743
|
+
Py_DECREF_IMMORTAL(x);
|
|
4744
4744
|
}
|
|
4745
4745
|
|
|
4746
4746
|
#if PYTHON_VERSION < 0x300
|
|
@@ -4869,7 +4869,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_UNICODE_INT(PyObject *operand1, Py
|
|
|
4869
4869
|
goto exit_binary_result_object;
|
|
4870
4870
|
}
|
|
4871
4871
|
|
|
4872
|
-
|
|
4872
|
+
Py_DECREF_IMMORTAL(x);
|
|
4873
4873
|
}
|
|
4874
4874
|
|
|
4875
4875
|
if (slot2 != NULL) {
|
|
@@ -4880,7 +4880,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_UNICODE_INT(PyObject *operand1, Py
|
|
|
4880
4880
|
goto exit_binary_result_object;
|
|
4881
4881
|
}
|
|
4882
4882
|
|
|
4883
|
-
|
|
4883
|
+
Py_DECREF_IMMORTAL(x);
|
|
4884
4884
|
}
|
|
4885
4885
|
|
|
4886
4886
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -4935,7 +4935,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_UNICODE_LONG(PyObject *operand1, P
|
|
|
4935
4935
|
goto exit_binary_result_object;
|
|
4936
4936
|
}
|
|
4937
4937
|
|
|
4938
|
-
|
|
4938
|
+
Py_DECREF_IMMORTAL(x);
|
|
4939
4939
|
}
|
|
4940
4940
|
|
|
4941
4941
|
if (slot2 != NULL) {
|
|
@@ -4946,7 +4946,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_UNICODE_LONG(PyObject *operand1, P
|
|
|
4946
4946
|
goto exit_binary_result_object;
|
|
4947
4947
|
}
|
|
4948
4948
|
|
|
4949
|
-
|
|
4949
|
+
Py_DECREF_IMMORTAL(x);
|
|
4950
4950
|
}
|
|
4951
4951
|
|
|
4952
4952
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -5003,7 +5003,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_UNICODE_FLOAT(PyObject *operand1,
|
|
|
5003
5003
|
goto exit_binary_result_object;
|
|
5004
5004
|
}
|
|
5005
5005
|
|
|
5006
|
-
|
|
5006
|
+
Py_DECREF_IMMORTAL(x);
|
|
5007
5007
|
}
|
|
5008
5008
|
|
|
5009
5009
|
if (slot2 != NULL) {
|
|
@@ -5014,7 +5014,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_UNICODE_FLOAT(PyObject *operand1,
|
|
|
5014
5014
|
goto exit_binary_result_object;
|
|
5015
5015
|
}
|
|
5016
5016
|
|
|
5017
|
-
|
|
5017
|
+
Py_DECREF_IMMORTAL(x);
|
|
5018
5018
|
}
|
|
5019
5019
|
|
|
5020
5020
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -5072,7 +5072,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_UNICODE_STR(PyObject *operand1, Py
|
|
|
5072
5072
|
goto exit_binary_result_object;
|
|
5073
5073
|
}
|
|
5074
5074
|
|
|
5075
|
-
|
|
5075
|
+
Py_DECREF_IMMORTAL(x);
|
|
5076
5076
|
}
|
|
5077
5077
|
|
|
5078
5078
|
if (slot2 != NULL) {
|
|
@@ -5083,7 +5083,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_UNICODE_STR(PyObject *operand1, Py
|
|
|
5083
5083
|
goto exit_binary_result_object;
|
|
5084
5084
|
}
|
|
5085
5085
|
|
|
5086
|
-
|
|
5086
|
+
Py_DECREF_IMMORTAL(x);
|
|
5087
5087
|
}
|
|
5088
5088
|
|
|
5089
5089
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -5138,7 +5138,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_UNICODE_BYTES(PyObject *operand1,
|
|
|
5138
5138
|
goto exit_binary_result_object;
|
|
5139
5139
|
}
|
|
5140
5140
|
|
|
5141
|
-
|
|
5141
|
+
Py_DECREF_IMMORTAL(x);
|
|
5142
5142
|
}
|
|
5143
5143
|
|
|
5144
5144
|
if (slot2 != NULL) {
|
|
@@ -5149,7 +5149,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_UNICODE_BYTES(PyObject *operand1,
|
|
|
5149
5149
|
goto exit_binary_result_object;
|
|
5150
5150
|
}
|
|
5151
5151
|
|
|
5152
|
-
|
|
5152
|
+
Py_DECREF_IMMORTAL(x);
|
|
5153
5153
|
}
|
|
5154
5154
|
|
|
5155
5155
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -5232,7 +5232,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_UNICODE_TUPLE(PyObject *operand1,
|
|
|
5232
5232
|
goto exit_binary_result_object;
|
|
5233
5233
|
}
|
|
5234
5234
|
|
|
5235
|
-
|
|
5235
|
+
Py_DECREF_IMMORTAL(x);
|
|
5236
5236
|
}
|
|
5237
5237
|
|
|
5238
5238
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -5282,7 +5282,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_UNICODE_LIST(PyObject *operand1, P
|
|
|
5282
5282
|
goto exit_binary_result_object;
|
|
5283
5283
|
}
|
|
5284
5284
|
|
|
5285
|
-
|
|
5285
|
+
Py_DECREF_IMMORTAL(x);
|
|
5286
5286
|
}
|
|
5287
5287
|
|
|
5288
5288
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -5332,7 +5332,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_UNICODE_DICT(PyObject *operand1, P
|
|
|
5332
5332
|
goto exit_binary_result_object;
|
|
5333
5333
|
}
|
|
5334
5334
|
|
|
5335
|
-
|
|
5335
|
+
Py_DECREF_IMMORTAL(x);
|
|
5336
5336
|
}
|
|
5337
5337
|
|
|
5338
5338
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -5394,7 +5394,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_MOD_OBJECT_UNICODE_OBJEC
|
|
|
5394
5394
|
goto exit_binary_result_object;
|
|
5395
5395
|
}
|
|
5396
5396
|
|
|
5397
|
-
|
|
5397
|
+
Py_DECREF_IMMORTAL(x);
|
|
5398
5398
|
slot2 = NULL;
|
|
5399
5399
|
}
|
|
5400
5400
|
}
|
|
@@ -5406,7 +5406,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_MOD_OBJECT_UNICODE_OBJEC
|
|
|
5406
5406
|
goto exit_binary_result_object;
|
|
5407
5407
|
}
|
|
5408
5408
|
|
|
5409
|
-
|
|
5409
|
+
Py_DECREF_IMMORTAL(x);
|
|
5410
5410
|
}
|
|
5411
5411
|
|
|
5412
5412
|
if (slot2 != NULL) {
|
|
@@ -5417,7 +5417,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_MOD_OBJECT_UNICODE_OBJEC
|
|
|
5417
5417
|
goto exit_binary_result_object;
|
|
5418
5418
|
}
|
|
5419
5419
|
|
|
5420
|
-
|
|
5420
|
+
Py_DECREF_IMMORTAL(x);
|
|
5421
5421
|
}
|
|
5422
5422
|
|
|
5423
5423
|
#if PYTHON_VERSION < 0x300
|
|
@@ -5549,7 +5549,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_BYTES_LONG(PyObject *operand1, PyO
|
|
|
5549
5549
|
goto exit_binary_result_object;
|
|
5550
5550
|
}
|
|
5551
5551
|
|
|
5552
|
-
|
|
5552
|
+
Py_DECREF_IMMORTAL(x);
|
|
5553
5553
|
}
|
|
5554
5554
|
|
|
5555
5555
|
if (slot2 != NULL) {
|
|
@@ -5560,7 +5560,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_BYTES_LONG(PyObject *operand1, PyO
|
|
|
5560
5560
|
goto exit_binary_result_object;
|
|
5561
5561
|
}
|
|
5562
5562
|
|
|
5563
|
-
|
|
5563
|
+
Py_DECREF_IMMORTAL(x);
|
|
5564
5564
|
}
|
|
5565
5565
|
|
|
5566
5566
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -5615,7 +5615,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_BYTES_FLOAT(PyObject *operand1, Py
|
|
|
5615
5615
|
goto exit_binary_result_object;
|
|
5616
5616
|
}
|
|
5617
5617
|
|
|
5618
|
-
|
|
5618
|
+
Py_DECREF_IMMORTAL(x);
|
|
5619
5619
|
}
|
|
5620
5620
|
|
|
5621
5621
|
if (slot2 != NULL) {
|
|
@@ -5626,7 +5626,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_BYTES_FLOAT(PyObject *operand1, Py
|
|
|
5626
5626
|
goto exit_binary_result_object;
|
|
5627
5627
|
}
|
|
5628
5628
|
|
|
5629
|
-
|
|
5629
|
+
Py_DECREF_IMMORTAL(x);
|
|
5630
5630
|
}
|
|
5631
5631
|
|
|
5632
5632
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -5719,7 +5719,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_BYTES_UNICODE(PyObject *operand1,
|
|
|
5719
5719
|
goto exit_binary_result_object;
|
|
5720
5720
|
}
|
|
5721
5721
|
|
|
5722
|
-
|
|
5722
|
+
Py_DECREF_IMMORTAL(x);
|
|
5723
5723
|
}
|
|
5724
5724
|
|
|
5725
5725
|
if (slot2 != NULL) {
|
|
@@ -5730,7 +5730,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_BYTES_UNICODE(PyObject *operand1,
|
|
|
5730
5730
|
goto exit_binary_result_object;
|
|
5731
5731
|
}
|
|
5732
5732
|
|
|
5733
|
-
|
|
5733
|
+
Py_DECREF_IMMORTAL(x);
|
|
5734
5734
|
}
|
|
5735
5735
|
|
|
5736
5736
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -5778,7 +5778,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_BYTES_TUPLE(PyObject *operand1, Py
|
|
|
5778
5778
|
goto exit_binary_result_object;
|
|
5779
5779
|
}
|
|
5780
5780
|
|
|
5781
|
-
|
|
5781
|
+
Py_DECREF_IMMORTAL(x);
|
|
5782
5782
|
}
|
|
5783
5783
|
|
|
5784
5784
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -5826,7 +5826,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_BYTES_LIST(PyObject *operand1, PyO
|
|
|
5826
5826
|
goto exit_binary_result_object;
|
|
5827
5827
|
}
|
|
5828
5828
|
|
|
5829
|
-
|
|
5829
|
+
Py_DECREF_IMMORTAL(x);
|
|
5830
5830
|
}
|
|
5831
5831
|
|
|
5832
5832
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -5874,7 +5874,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_BYTES_DICT(PyObject *operand1, PyO
|
|
|
5874
5874
|
goto exit_binary_result_object;
|
|
5875
5875
|
}
|
|
5876
5876
|
|
|
5877
|
-
|
|
5877
|
+
Py_DECREF_IMMORTAL(x);
|
|
5878
5878
|
}
|
|
5879
5879
|
|
|
5880
5880
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -5934,7 +5934,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_MOD_OBJECT_BYTES_OBJECT(
|
|
|
5934
5934
|
goto exit_binary_result_object;
|
|
5935
5935
|
}
|
|
5936
5936
|
|
|
5937
|
-
|
|
5937
|
+
Py_DECREF_IMMORTAL(x);
|
|
5938
5938
|
slot2 = NULL;
|
|
5939
5939
|
}
|
|
5940
5940
|
}
|
|
@@ -5946,7 +5946,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_MOD_OBJECT_BYTES_OBJECT(
|
|
|
5946
5946
|
goto exit_binary_result_object;
|
|
5947
5947
|
}
|
|
5948
5948
|
|
|
5949
|
-
|
|
5949
|
+
Py_DECREF_IMMORTAL(x);
|
|
5950
5950
|
}
|
|
5951
5951
|
|
|
5952
5952
|
if (slot2 != NULL) {
|
|
@@ -5957,7 +5957,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_MOD_OBJECT_BYTES_OBJECT(
|
|
|
5957
5957
|
goto exit_binary_result_object;
|
|
5958
5958
|
}
|
|
5959
5959
|
|
|
5960
|
-
|
|
5960
|
+
Py_DECREF_IMMORTAL(x);
|
|
5961
5961
|
}
|
|
5962
5962
|
|
|
5963
5963
|
#if PYTHON_VERSION < 0x300
|
|
@@ -6167,7 +6167,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_OBJECT_OBJECT(PyObject *operand1,
|
|
|
6167
6167
|
goto exit_binary_result_object;
|
|
6168
6168
|
}
|
|
6169
6169
|
|
|
6170
|
-
|
|
6170
|
+
Py_DECREF_IMMORTAL(x);
|
|
6171
6171
|
slot2 = NULL;
|
|
6172
6172
|
}
|
|
6173
6173
|
}
|
|
@@ -6179,7 +6179,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_OBJECT_OBJECT(PyObject *operand1,
|
|
|
6179
6179
|
goto exit_binary_result_object;
|
|
6180
6180
|
}
|
|
6181
6181
|
|
|
6182
|
-
|
|
6182
|
+
Py_DECREF_IMMORTAL(x);
|
|
6183
6183
|
}
|
|
6184
6184
|
|
|
6185
6185
|
if (slot2 != NULL) {
|
|
@@ -6190,7 +6190,7 @@ static PyObject *_BINARY_OPERATION_MOD_OBJECT_OBJECT_OBJECT(PyObject *operand1,
|
|
|
6190
6190
|
goto exit_binary_result_object;
|
|
6191
6191
|
}
|
|
6192
6192
|
|
|
6193
|
-
|
|
6193
|
+
Py_DECREF_IMMORTAL(x);
|
|
6194
6194
|
}
|
|
6195
6195
|
|
|
6196
6196
|
#if PYTHON_VERSION < 0x300
|
|
@@ -6398,7 +6398,7 @@ static nuitka_bool _BINARY_OPERATION_MOD_NBOOL_OBJECT_OBJECT(PyObject *operand1,
|
|
|
6398
6398
|
goto exit_binary_result_object;
|
|
6399
6399
|
}
|
|
6400
6400
|
|
|
6401
|
-
|
|
6401
|
+
Py_DECREF_IMMORTAL(x);
|
|
6402
6402
|
slot2 = NULL;
|
|
6403
6403
|
}
|
|
6404
6404
|
}
|
|
@@ -6410,7 +6410,7 @@ static nuitka_bool _BINARY_OPERATION_MOD_NBOOL_OBJECT_OBJECT(PyObject *operand1,
|
|
|
6410
6410
|
goto exit_binary_result_object;
|
|
6411
6411
|
}
|
|
6412
6412
|
|
|
6413
|
-
|
|
6413
|
+
Py_DECREF_IMMORTAL(x);
|
|
6414
6414
|
}
|
|
6415
6415
|
|
|
6416
6416
|
if (slot2 != NULL) {
|
|
@@ -6421,7 +6421,7 @@ static nuitka_bool _BINARY_OPERATION_MOD_NBOOL_OBJECT_OBJECT(PyObject *operand1,
|
|
|
6421
6421
|
goto exit_binary_result_object;
|
|
6422
6422
|
}
|
|
6423
6423
|
|
|
6424
|
-
|
|
6424
|
+
Py_DECREF_IMMORTAL(x);
|
|
6425
6425
|
}
|
|
6426
6426
|
|
|
6427
6427
|
#if PYTHON_VERSION < 0x300
|