Nuitka-winsvc 2.2.3__cp311-cp311-win_amd64.whl → 2.3.2__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.2.3.dist-info → Nuitka_winsvc-2.3.2.dist-info}/METADATA +2 -1
- {Nuitka_winsvc-2.2.3.dist-info → Nuitka_winsvc-2.3.2.dist-info}/RECORD +201 -200
- 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 +106 -45
- 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 +18 -6
- nuitka/build/SconsInterface.py +28 -8
- 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 +49 -5
- 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 +952 -133
- 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 +80 -54
- nuitka/code_generation/templates_c/CodeTemplateCallsMixed.c.j2 +1 -1
- nuitka/code_generation/templates_c/CodeTemplateCallsPositional.c.j2 +59 -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/IncludedEntryPoints.py +16 -0
- nuitka/freezer/Onefile.py +0 -1
- nuitka/freezer/Standalone.py +38 -21
- 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/ImplicitImports.py +3 -0
- 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 +28 -13
- nuitka/plugins/standard/stdlib2.nuitka-package.config.yml +2 -2
- nuitka/plugins/standard/stdlib3.nuitka-package.config.yml +7 -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/testing/run_nuitka_tests/__main__.py +37 -0
- nuitka/tools/watch/GitHub.py +1 -7
- nuitka/tree/Building.py +9 -6
- nuitka/tree/ReformulationMatchStatements.py +51 -14
- 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 +12 -3
- nuitka/utils/SharedLibraries.py +26 -1
- nuitka/utils/Yaml.py +9 -1
- {Nuitka_winsvc-2.2.3.data → Nuitka_winsvc-2.3.2.data}/scripts/nuitka-run.bat +0 -0
- {Nuitka_winsvc-2.2.3.data → Nuitka_winsvc-2.3.2.data}/scripts/nuitka.bat +0 -0
- {Nuitka_winsvc-2.2.3.dist-info → Nuitka_winsvc-2.3.2.dist-info}/LICENSE.txt +0 -0
- {Nuitka_winsvc-2.2.3.dist-info → Nuitka_winsvc-2.3.2.dist-info}/WHEEL +0 -0
- {Nuitka_winsvc-2.2.3.dist-info → Nuitka_winsvc-2.3.2.dist-info}/entry_points.txt +0 -0
- {Nuitka_winsvc-2.2.3.dist-info → Nuitka_winsvc-2.3.2.dist-info}/top_level.txt +0 -0
|
@@ -137,7 +137,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_OLDDIV_OBJECT_OBJECT_INT
|
|
|
137
137
|
goto exit_binary_result_object;
|
|
138
138
|
}
|
|
139
139
|
|
|
140
|
-
|
|
140
|
+
Py_DECREF_IMMORTAL(x);
|
|
141
141
|
}
|
|
142
142
|
|
|
143
143
|
if (slot2 != NULL) {
|
|
@@ -148,7 +148,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_OLDDIV_OBJECT_OBJECT_INT
|
|
|
148
148
|
goto exit_binary_result_object;
|
|
149
149
|
}
|
|
150
150
|
|
|
151
|
-
|
|
151
|
+
Py_DECREF_IMMORTAL(x);
|
|
152
152
|
}
|
|
153
153
|
|
|
154
154
|
#if PYTHON_VERSION < 0x300
|
|
@@ -368,7 +368,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_OLDDIV_OBJECT_INT_OBJECT
|
|
|
368
368
|
goto exit_binary_result_object;
|
|
369
369
|
}
|
|
370
370
|
|
|
371
|
-
|
|
371
|
+
Py_DECREF_IMMORTAL(x);
|
|
372
372
|
slot2 = NULL;
|
|
373
373
|
}
|
|
374
374
|
}
|
|
@@ -380,7 +380,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_OLDDIV_OBJECT_INT_OBJECT
|
|
|
380
380
|
goto exit_binary_result_object;
|
|
381
381
|
}
|
|
382
382
|
|
|
383
|
-
|
|
383
|
+
Py_DECREF_IMMORTAL(x);
|
|
384
384
|
}
|
|
385
385
|
|
|
386
386
|
if (slot2 != NULL) {
|
|
@@ -391,7 +391,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_OLDDIV_OBJECT_INT_OBJECT
|
|
|
391
391
|
goto exit_binary_result_object;
|
|
392
392
|
}
|
|
393
393
|
|
|
394
|
-
|
|
394
|
+
Py_DECREF_IMMORTAL(x);
|
|
395
395
|
}
|
|
396
396
|
|
|
397
397
|
#if PYTHON_VERSION < 0x300
|
|
@@ -656,7 +656,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_OLDDIV_OBJECT_OBJECT_LON
|
|
|
656
656
|
goto exit_binary_result_object;
|
|
657
657
|
}
|
|
658
658
|
|
|
659
|
-
|
|
659
|
+
Py_DECREF_IMMORTAL(x);
|
|
660
660
|
}
|
|
661
661
|
|
|
662
662
|
if (slot2 != NULL) {
|
|
@@ -667,7 +667,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_OLDDIV_OBJECT_OBJECT_LON
|
|
|
667
667
|
goto exit_binary_result_object;
|
|
668
668
|
}
|
|
669
669
|
|
|
670
|
-
|
|
670
|
+
Py_DECREF_IMMORTAL(x);
|
|
671
671
|
}
|
|
672
672
|
|
|
673
673
|
#if PYTHON_VERSION < 0x300
|
|
@@ -847,7 +847,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_OLDDIV_OBJECT_LONG_OBJEC
|
|
|
847
847
|
goto exit_binary_result_object;
|
|
848
848
|
}
|
|
849
849
|
|
|
850
|
-
|
|
850
|
+
Py_DECREF_IMMORTAL(x);
|
|
851
851
|
slot2 = NULL;
|
|
852
852
|
}
|
|
853
853
|
}
|
|
@@ -859,7 +859,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_OLDDIV_OBJECT_LONG_OBJEC
|
|
|
859
859
|
goto exit_binary_result_object;
|
|
860
860
|
}
|
|
861
861
|
|
|
862
|
-
|
|
862
|
+
Py_DECREF_IMMORTAL(x);
|
|
863
863
|
}
|
|
864
864
|
|
|
865
865
|
if (slot2 != NULL) {
|
|
@@ -870,7 +870,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_OLDDIV_OBJECT_LONG_OBJEC
|
|
|
870
870
|
goto exit_binary_result_object;
|
|
871
871
|
}
|
|
872
872
|
|
|
873
|
-
|
|
873
|
+
Py_DECREF_IMMORTAL(x);
|
|
874
874
|
}
|
|
875
875
|
|
|
876
876
|
#if PYTHON_VERSION < 0x300
|
|
@@ -1109,7 +1109,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_OLDDIV_OBJECT_OBJECT_FLO
|
|
|
1109
1109
|
goto exit_binary_result_object;
|
|
1110
1110
|
}
|
|
1111
1111
|
|
|
1112
|
-
|
|
1112
|
+
Py_DECREF_IMMORTAL(x);
|
|
1113
1113
|
}
|
|
1114
1114
|
|
|
1115
1115
|
if (slot2 != NULL) {
|
|
@@ -1120,7 +1120,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_OLDDIV_OBJECT_OBJECT_FLO
|
|
|
1120
1120
|
goto exit_binary_result_object;
|
|
1121
1121
|
}
|
|
1122
1122
|
|
|
1123
|
-
|
|
1123
|
+
Py_DECREF_IMMORTAL(x);
|
|
1124
1124
|
}
|
|
1125
1125
|
|
|
1126
1126
|
#if PYTHON_VERSION < 0x300
|
|
@@ -1310,7 +1310,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_OLDDIV_OBJECT_FLOAT_OBJE
|
|
|
1310
1310
|
goto exit_binary_result_object;
|
|
1311
1311
|
}
|
|
1312
1312
|
|
|
1313
|
-
|
|
1313
|
+
Py_DECREF_IMMORTAL(x);
|
|
1314
1314
|
slot2 = NULL;
|
|
1315
1315
|
}
|
|
1316
1316
|
}
|
|
@@ -1322,7 +1322,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_OLDDIV_OBJECT_FLOAT_OBJE
|
|
|
1322
1322
|
goto exit_binary_result_object;
|
|
1323
1323
|
}
|
|
1324
1324
|
|
|
1325
|
-
|
|
1325
|
+
Py_DECREF_IMMORTAL(x);
|
|
1326
1326
|
}
|
|
1327
1327
|
|
|
1328
1328
|
if (slot2 != NULL) {
|
|
@@ -1333,7 +1333,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_OLDDIV_OBJECT_FLOAT_OBJE
|
|
|
1333
1333
|
goto exit_binary_result_object;
|
|
1334
1334
|
}
|
|
1335
1335
|
|
|
1336
|
-
|
|
1336
|
+
Py_DECREF_IMMORTAL(x);
|
|
1337
1337
|
}
|
|
1338
1338
|
|
|
1339
1339
|
#if PYTHON_VERSION < 0x300
|
|
@@ -1513,7 +1513,7 @@ static PyObject *_BINARY_OPERATION_OLDDIV_OBJECT_FLOAT_LONG(PyObject *operand1,
|
|
|
1513
1513
|
goto exit_binary_result_object;
|
|
1514
1514
|
}
|
|
1515
1515
|
|
|
1516
|
-
|
|
1516
|
+
Py_DECREF_IMMORTAL(x);
|
|
1517
1517
|
}
|
|
1518
1518
|
|
|
1519
1519
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -1572,7 +1572,7 @@ static PyObject *_BINARY_OPERATION_OLDDIV_OBJECT_LONG_FLOAT(PyObject *operand1,
|
|
|
1572
1572
|
goto exit_binary_result_object;
|
|
1573
1573
|
}
|
|
1574
1574
|
|
|
1575
|
-
|
|
1575
|
+
Py_DECREF_IMMORTAL(x);
|
|
1576
1576
|
}
|
|
1577
1577
|
|
|
1578
1578
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -1625,7 +1625,7 @@ static PyObject *_BINARY_OPERATION_OLDDIV_OBJECT_FLOAT_INT(PyObject *operand1, P
|
|
|
1625
1625
|
goto exit_binary_result_object;
|
|
1626
1626
|
}
|
|
1627
1627
|
|
|
1628
|
-
|
|
1628
|
+
Py_DECREF_IMMORTAL(x);
|
|
1629
1629
|
}
|
|
1630
1630
|
|
|
1631
1631
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -1680,7 +1680,7 @@ static PyObject *_BINARY_OPERATION_OLDDIV_OBJECT_INT_FLOAT(PyObject *operand1, P
|
|
|
1680
1680
|
goto exit_binary_result_object;
|
|
1681
1681
|
}
|
|
1682
1682
|
|
|
1683
|
-
|
|
1683
|
+
Py_DECREF_IMMORTAL(x);
|
|
1684
1684
|
}
|
|
1685
1685
|
|
|
1686
1686
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -1729,7 +1729,7 @@ static PyObject *_BINARY_OPERATION_OLDDIV_OBJECT_LONG_INT(PyObject *operand1, Py
|
|
|
1729
1729
|
goto exit_binary_result_object;
|
|
1730
1730
|
}
|
|
1731
1731
|
|
|
1732
|
-
|
|
1732
|
+
Py_DECREF_IMMORTAL(x);
|
|
1733
1733
|
}
|
|
1734
1734
|
|
|
1735
1735
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -1784,7 +1784,7 @@ static PyObject *_BINARY_OPERATION_OLDDIV_OBJECT_INT_LONG(PyObject *operand1, Py
|
|
|
1784
1784
|
goto exit_binary_result_object;
|
|
1785
1785
|
}
|
|
1786
1786
|
|
|
1787
|
-
|
|
1787
|
+
Py_DECREF_IMMORTAL(x);
|
|
1788
1788
|
}
|
|
1789
1789
|
|
|
1790
1790
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -2217,7 +2217,7 @@ static PyObject *_BINARY_OPERATION_OLDDIV_OBJECT_OBJECT_OBJECT(PyObject *operand
|
|
|
2217
2217
|
goto exit_binary_result_object;
|
|
2218
2218
|
}
|
|
2219
2219
|
|
|
2220
|
-
|
|
2220
|
+
Py_DECREF_IMMORTAL(x);
|
|
2221
2221
|
slot2 = NULL;
|
|
2222
2222
|
}
|
|
2223
2223
|
}
|
|
@@ -2229,7 +2229,7 @@ static PyObject *_BINARY_OPERATION_OLDDIV_OBJECT_OBJECT_OBJECT(PyObject *operand
|
|
|
2229
2229
|
goto exit_binary_result_object;
|
|
2230
2230
|
}
|
|
2231
2231
|
|
|
2232
|
-
|
|
2232
|
+
Py_DECREF_IMMORTAL(x);
|
|
2233
2233
|
}
|
|
2234
2234
|
|
|
2235
2235
|
if (slot2 != NULL) {
|
|
@@ -2240,7 +2240,7 @@ static PyObject *_BINARY_OPERATION_OLDDIV_OBJECT_OBJECT_OBJECT(PyObject *operand
|
|
|
2240
2240
|
goto exit_binary_result_object;
|
|
2241
2241
|
}
|
|
2242
2242
|
|
|
2243
|
-
|
|
2243
|
+
Py_DECREF_IMMORTAL(x);
|
|
2244
2244
|
}
|
|
2245
2245
|
|
|
2246
2246
|
#if PYTHON_VERSION < 0x300
|
|
@@ -214,7 +214,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_POW_OBJECT_OBJECT_FLOAT(
|
|
|
214
214
|
goto exit_binary_result_object;
|
|
215
215
|
}
|
|
216
216
|
|
|
217
|
-
|
|
217
|
+
Py_DECREF_IMMORTAL(x);
|
|
218
218
|
}
|
|
219
219
|
|
|
220
220
|
if (slot2 != NULL) {
|
|
@@ -225,7 +225,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_POW_OBJECT_OBJECT_FLOAT(
|
|
|
225
225
|
goto exit_binary_result_object;
|
|
226
226
|
}
|
|
227
227
|
|
|
228
|
-
|
|
228
|
+
Py_DECREF_IMMORTAL(x);
|
|
229
229
|
}
|
|
230
230
|
|
|
231
231
|
#if PYTHON_VERSION < 0x300
|
|
@@ -522,7 +522,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_POW_OBJECT_FLOAT_OBJECT(
|
|
|
522
522
|
goto exit_binary_result_object;
|
|
523
523
|
}
|
|
524
524
|
|
|
525
|
-
|
|
525
|
+
Py_DECREF_IMMORTAL(x);
|
|
526
526
|
slot2 = NULL;
|
|
527
527
|
}
|
|
528
528
|
}
|
|
@@ -534,7 +534,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_POW_OBJECT_FLOAT_OBJECT(
|
|
|
534
534
|
goto exit_binary_result_object;
|
|
535
535
|
}
|
|
536
536
|
|
|
537
|
-
|
|
537
|
+
Py_DECREF_IMMORTAL(x);
|
|
538
538
|
}
|
|
539
539
|
|
|
540
540
|
if (slot2 != NULL) {
|
|
@@ -545,7 +545,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_POW_OBJECT_FLOAT_OBJECT(
|
|
|
545
545
|
goto exit_binary_result_object;
|
|
546
546
|
}
|
|
547
547
|
|
|
548
|
-
|
|
548
|
+
Py_DECREF_IMMORTAL(x);
|
|
549
549
|
}
|
|
550
550
|
|
|
551
551
|
#if PYTHON_VERSION < 0x300
|
|
@@ -884,7 +884,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_POW_OBJECT_OBJECT_LONG(P
|
|
|
884
884
|
goto exit_binary_result_object;
|
|
885
885
|
}
|
|
886
886
|
|
|
887
|
-
|
|
887
|
+
Py_DECREF_IMMORTAL(x);
|
|
888
888
|
}
|
|
889
889
|
|
|
890
890
|
if (slot2 != NULL) {
|
|
@@ -895,7 +895,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_POW_OBJECT_OBJECT_LONG(P
|
|
|
895
895
|
goto exit_binary_result_object;
|
|
896
896
|
}
|
|
897
897
|
|
|
898
|
-
|
|
898
|
+
Py_DECREF_IMMORTAL(x);
|
|
899
899
|
}
|
|
900
900
|
|
|
901
901
|
#if PYTHON_VERSION < 0x300
|
|
@@ -1072,7 +1072,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_POW_OBJECT_LONG_OBJECT(P
|
|
|
1072
1072
|
goto exit_binary_result_object;
|
|
1073
1073
|
}
|
|
1074
1074
|
|
|
1075
|
-
|
|
1075
|
+
Py_DECREF_IMMORTAL(x);
|
|
1076
1076
|
slot2 = NULL;
|
|
1077
1077
|
}
|
|
1078
1078
|
}
|
|
@@ -1084,7 +1084,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_POW_OBJECT_LONG_OBJECT(P
|
|
|
1084
1084
|
goto exit_binary_result_object;
|
|
1085
1085
|
}
|
|
1086
1086
|
|
|
1087
|
-
|
|
1087
|
+
Py_DECREF_IMMORTAL(x);
|
|
1088
1088
|
}
|
|
1089
1089
|
|
|
1090
1090
|
if (slot2 != NULL) {
|
|
@@ -1095,7 +1095,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_POW_OBJECT_LONG_OBJECT(P
|
|
|
1095
1095
|
goto exit_binary_result_object;
|
|
1096
1096
|
}
|
|
1097
1097
|
|
|
1098
|
-
|
|
1098
|
+
Py_DECREF_IMMORTAL(x);
|
|
1099
1099
|
}
|
|
1100
1100
|
|
|
1101
1101
|
#if PYTHON_VERSION < 0x300
|
|
@@ -1388,7 +1388,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_POW_OBJECT_OBJECT_INT(Py
|
|
|
1388
1388
|
goto exit_binary_result_object;
|
|
1389
1389
|
}
|
|
1390
1390
|
|
|
1391
|
-
|
|
1391
|
+
Py_DECREF_IMMORTAL(x);
|
|
1392
1392
|
}
|
|
1393
1393
|
|
|
1394
1394
|
if (slot2 != NULL) {
|
|
@@ -1399,7 +1399,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_POW_OBJECT_OBJECT_INT(Py
|
|
|
1399
1399
|
goto exit_binary_result_object;
|
|
1400
1400
|
}
|
|
1401
1401
|
|
|
1402
|
-
|
|
1402
|
+
Py_DECREF_IMMORTAL(x);
|
|
1403
1403
|
}
|
|
1404
1404
|
|
|
1405
1405
|
#if PYTHON_VERSION < 0x300
|
|
@@ -1644,7 +1644,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_POW_OBJECT_INT_OBJECT(Py
|
|
|
1644
1644
|
goto exit_binary_result_object;
|
|
1645
1645
|
}
|
|
1646
1646
|
|
|
1647
|
-
|
|
1647
|
+
Py_DECREF_IMMORTAL(x);
|
|
1648
1648
|
slot2 = NULL;
|
|
1649
1649
|
}
|
|
1650
1650
|
}
|
|
@@ -1656,7 +1656,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_POW_OBJECT_INT_OBJECT(Py
|
|
|
1656
1656
|
goto exit_binary_result_object;
|
|
1657
1657
|
}
|
|
1658
1658
|
|
|
1659
|
-
|
|
1659
|
+
Py_DECREF_IMMORTAL(x);
|
|
1660
1660
|
}
|
|
1661
1661
|
|
|
1662
1662
|
if (slot2 != NULL) {
|
|
@@ -1667,7 +1667,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_POW_OBJECT_INT_OBJECT(Py
|
|
|
1667
1667
|
goto exit_binary_result_object;
|
|
1668
1668
|
}
|
|
1669
1669
|
|
|
1670
|
-
|
|
1670
|
+
Py_DECREF_IMMORTAL(x);
|
|
1671
1671
|
}
|
|
1672
1672
|
|
|
1673
1673
|
#if PYTHON_VERSION < 0x300
|
|
@@ -1902,7 +1902,7 @@ static PyObject *_BINARY_OPERATION_POW_OBJECT_FLOAT_LONG(PyObject *operand1, PyO
|
|
|
1902
1902
|
goto exit_binary_result_object;
|
|
1903
1903
|
}
|
|
1904
1904
|
|
|
1905
|
-
|
|
1905
|
+
Py_DECREF_IMMORTAL(x);
|
|
1906
1906
|
}
|
|
1907
1907
|
|
|
1908
1908
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -1959,7 +1959,7 @@ static PyObject *_BINARY_OPERATION_POW_OBJECT_LONG_FLOAT(PyObject *operand1, PyO
|
|
|
1959
1959
|
goto exit_binary_result_object;
|
|
1960
1960
|
}
|
|
1961
1961
|
|
|
1962
|
-
|
|
1962
|
+
Py_DECREF_IMMORTAL(x);
|
|
1963
1963
|
}
|
|
1964
1964
|
|
|
1965
1965
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -2011,7 +2011,7 @@ static PyObject *_BINARY_OPERATION_POW_OBJECT_FLOAT_INT(PyObject *operand1, PyOb
|
|
|
2011
2011
|
goto exit_binary_result_object;
|
|
2012
2012
|
}
|
|
2013
2013
|
|
|
2014
|
-
|
|
2014
|
+
Py_DECREF_IMMORTAL(x);
|
|
2015
2015
|
}
|
|
2016
2016
|
|
|
2017
2017
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -2066,7 +2066,7 @@ static PyObject *_BINARY_OPERATION_POW_OBJECT_INT_FLOAT(PyObject *operand1, PyOb
|
|
|
2066
2066
|
goto exit_binary_result_object;
|
|
2067
2067
|
}
|
|
2068
2068
|
|
|
2069
|
-
|
|
2069
|
+
Py_DECREF_IMMORTAL(x);
|
|
2070
2070
|
}
|
|
2071
2071
|
|
|
2072
2072
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -2115,7 +2115,7 @@ static PyObject *_BINARY_OPERATION_POW_OBJECT_LONG_INT(PyObject *operand1, PyObj
|
|
|
2115
2115
|
goto exit_binary_result_object;
|
|
2116
2116
|
}
|
|
2117
2117
|
|
|
2118
|
-
|
|
2118
|
+
Py_DECREF_IMMORTAL(x);
|
|
2119
2119
|
}
|
|
2120
2120
|
|
|
2121
2121
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -2170,7 +2170,7 @@ static PyObject *_BINARY_OPERATION_POW_OBJECT_INT_LONG(PyObject *operand1, PyObj
|
|
|
2170
2170
|
goto exit_binary_result_object;
|
|
2171
2171
|
}
|
|
2172
2172
|
|
|
2173
|
-
|
|
2173
|
+
Py_DECREF_IMMORTAL(x);
|
|
2174
2174
|
}
|
|
2175
2175
|
|
|
2176
2176
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -2338,7 +2338,7 @@ static PyObject *_BINARY_OPERATION_POW_OBJECT_OBJECT_OBJECT(PyObject *operand1,
|
|
|
2338
2338
|
goto exit_binary_result_object;
|
|
2339
2339
|
}
|
|
2340
2340
|
|
|
2341
|
-
|
|
2341
|
+
Py_DECREF_IMMORTAL(x);
|
|
2342
2342
|
slot2 = NULL;
|
|
2343
2343
|
}
|
|
2344
2344
|
}
|
|
@@ -2350,7 +2350,7 @@ static PyObject *_BINARY_OPERATION_POW_OBJECT_OBJECT_OBJECT(PyObject *operand1,
|
|
|
2350
2350
|
goto exit_binary_result_object;
|
|
2351
2351
|
}
|
|
2352
2352
|
|
|
2353
|
-
|
|
2353
|
+
Py_DECREF_IMMORTAL(x);
|
|
2354
2354
|
}
|
|
2355
2355
|
|
|
2356
2356
|
if (slot2 != NULL) {
|
|
@@ -2361,7 +2361,7 @@ static PyObject *_BINARY_OPERATION_POW_OBJECT_OBJECT_OBJECT(PyObject *operand1,
|
|
|
2361
2361
|
goto exit_binary_result_object;
|
|
2362
2362
|
}
|
|
2363
2363
|
|
|
2364
|
-
|
|
2364
|
+
Py_DECREF_IMMORTAL(x);
|
|
2365
2365
|
}
|
|
2366
2366
|
|
|
2367
2367
|
#if PYTHON_VERSION < 0x300
|
|
@@ -2603,7 +2603,7 @@ static nuitka_bool _BINARY_OPERATION_POW_NBOOL_OBJECT_OBJECT(PyObject *operand1,
|
|
|
2603
2603
|
goto exit_binary_result_object;
|
|
2604
2604
|
}
|
|
2605
2605
|
|
|
2606
|
-
|
|
2606
|
+
Py_DECREF_IMMORTAL(x);
|
|
2607
2607
|
slot2 = NULL;
|
|
2608
2608
|
}
|
|
2609
2609
|
}
|
|
@@ -2615,7 +2615,7 @@ static nuitka_bool _BINARY_OPERATION_POW_NBOOL_OBJECT_OBJECT(PyObject *operand1,
|
|
|
2615
2615
|
goto exit_binary_result_object;
|
|
2616
2616
|
}
|
|
2617
2617
|
|
|
2618
|
-
|
|
2618
|
+
Py_DECREF_IMMORTAL(x);
|
|
2619
2619
|
}
|
|
2620
2620
|
|
|
2621
2621
|
if (slot2 != NULL) {
|
|
@@ -2626,7 +2626,7 @@ static nuitka_bool _BINARY_OPERATION_POW_NBOOL_OBJECT_OBJECT(PyObject *operand1,
|
|
|
2626
2626
|
goto exit_binary_result_object;
|
|
2627
2627
|
}
|
|
2628
2628
|
|
|
2629
|
-
|
|
2629
|
+
Py_DECREF_IMMORTAL(x);
|
|
2630
2630
|
}
|
|
2631
2631
|
|
|
2632
2632
|
#if PYTHON_VERSION < 0x300
|
|
@@ -90,7 +90,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_RSHIFT_OBJECT_OBJECT_LON
|
|
|
90
90
|
goto exit_binary_result_object;
|
|
91
91
|
}
|
|
92
92
|
|
|
93
|
-
|
|
93
|
+
Py_DECREF_IMMORTAL(x);
|
|
94
94
|
}
|
|
95
95
|
|
|
96
96
|
if (slot2 != NULL) {
|
|
@@ -101,7 +101,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_RSHIFT_OBJECT_OBJECT_LON
|
|
|
101
101
|
goto exit_binary_result_object;
|
|
102
102
|
}
|
|
103
103
|
|
|
104
|
-
|
|
104
|
+
Py_DECREF_IMMORTAL(x);
|
|
105
105
|
}
|
|
106
106
|
|
|
107
107
|
#if PYTHON_VERSION < 0x300
|
|
@@ -279,7 +279,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_RSHIFT_OBJECT_LONG_OBJEC
|
|
|
279
279
|
goto exit_binary_result_object;
|
|
280
280
|
}
|
|
281
281
|
|
|
282
|
-
|
|
282
|
+
Py_DECREF_IMMORTAL(x);
|
|
283
283
|
slot2 = NULL;
|
|
284
284
|
}
|
|
285
285
|
}
|
|
@@ -291,7 +291,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_RSHIFT_OBJECT_LONG_OBJEC
|
|
|
291
291
|
goto exit_binary_result_object;
|
|
292
292
|
}
|
|
293
293
|
|
|
294
|
-
|
|
294
|
+
Py_DECREF_IMMORTAL(x);
|
|
295
295
|
}
|
|
296
296
|
|
|
297
297
|
if (slot2 != NULL) {
|
|
@@ -302,7 +302,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_RSHIFT_OBJECT_LONG_OBJEC
|
|
|
302
302
|
goto exit_binary_result_object;
|
|
303
303
|
}
|
|
304
304
|
|
|
305
|
-
|
|
305
|
+
Py_DECREF_IMMORTAL(x);
|
|
306
306
|
}
|
|
307
307
|
|
|
308
308
|
#if PYTHON_VERSION < 0x300
|
|
@@ -524,7 +524,7 @@ static HEDLEY_NEVER_INLINE nuitka_bool __BINARY_OPERATION_RSHIFT_NBOOL_OBJECT_LO
|
|
|
524
524
|
goto exit_binary_result_object;
|
|
525
525
|
}
|
|
526
526
|
|
|
527
|
-
|
|
527
|
+
Py_DECREF_IMMORTAL(x);
|
|
528
528
|
}
|
|
529
529
|
|
|
530
530
|
if (slot2 != NULL) {
|
|
@@ -535,7 +535,7 @@ static HEDLEY_NEVER_INLINE nuitka_bool __BINARY_OPERATION_RSHIFT_NBOOL_OBJECT_LO
|
|
|
535
535
|
goto exit_binary_result_object;
|
|
536
536
|
}
|
|
537
537
|
|
|
538
|
-
|
|
538
|
+
Py_DECREF_IMMORTAL(x);
|
|
539
539
|
}
|
|
540
540
|
|
|
541
541
|
#if PYTHON_VERSION < 0x300
|
|
@@ -722,7 +722,7 @@ static HEDLEY_NEVER_INLINE nuitka_bool __BINARY_OPERATION_RSHIFT_NBOOL_LONG_OBJE
|
|
|
722
722
|
goto exit_binary_result_object;
|
|
723
723
|
}
|
|
724
724
|
|
|
725
|
-
|
|
725
|
+
Py_DECREF_IMMORTAL(x);
|
|
726
726
|
slot2 = NULL;
|
|
727
727
|
}
|
|
728
728
|
}
|
|
@@ -734,7 +734,7 @@ static HEDLEY_NEVER_INLINE nuitka_bool __BINARY_OPERATION_RSHIFT_NBOOL_LONG_OBJE
|
|
|
734
734
|
goto exit_binary_result_object;
|
|
735
735
|
}
|
|
736
736
|
|
|
737
|
-
|
|
737
|
+
Py_DECREF_IMMORTAL(x);
|
|
738
738
|
}
|
|
739
739
|
|
|
740
740
|
if (slot2 != NULL) {
|
|
@@ -745,7 +745,7 @@ static HEDLEY_NEVER_INLINE nuitka_bool __BINARY_OPERATION_RSHIFT_NBOOL_LONG_OBJE
|
|
|
745
745
|
goto exit_binary_result_object;
|
|
746
746
|
}
|
|
747
747
|
|
|
748
|
-
|
|
748
|
+
Py_DECREF_IMMORTAL(x);
|
|
749
749
|
}
|
|
750
750
|
|
|
751
751
|
#if PYTHON_VERSION < 0x300
|
|
@@ -1017,7 +1017,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_RSHIFT_OBJECT_OBJECT_INT
|
|
|
1017
1017
|
goto exit_binary_result_object;
|
|
1018
1018
|
}
|
|
1019
1019
|
|
|
1020
|
-
|
|
1020
|
+
Py_DECREF_IMMORTAL(x);
|
|
1021
1021
|
}
|
|
1022
1022
|
|
|
1023
1023
|
if (slot2 != NULL) {
|
|
@@ -1028,7 +1028,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_RSHIFT_OBJECT_OBJECT_INT
|
|
|
1028
1028
|
goto exit_binary_result_object;
|
|
1029
1029
|
}
|
|
1030
1030
|
|
|
1031
|
-
|
|
1031
|
+
Py_DECREF_IMMORTAL(x);
|
|
1032
1032
|
}
|
|
1033
1033
|
|
|
1034
1034
|
#if PYTHON_VERSION < 0x300
|
|
@@ -1243,7 +1243,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_RSHIFT_OBJECT_INT_OBJECT
|
|
|
1243
1243
|
goto exit_binary_result_object;
|
|
1244
1244
|
}
|
|
1245
1245
|
|
|
1246
|
-
|
|
1246
|
+
Py_DECREF_IMMORTAL(x);
|
|
1247
1247
|
slot2 = NULL;
|
|
1248
1248
|
}
|
|
1249
1249
|
}
|
|
@@ -1255,7 +1255,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_RSHIFT_OBJECT_INT_OBJECT
|
|
|
1255
1255
|
goto exit_binary_result_object;
|
|
1256
1256
|
}
|
|
1257
1257
|
|
|
1258
|
-
|
|
1258
|
+
Py_DECREF_IMMORTAL(x);
|
|
1259
1259
|
}
|
|
1260
1260
|
|
|
1261
1261
|
if (slot2 != NULL) {
|
|
@@ -1266,7 +1266,7 @@ static HEDLEY_NEVER_INLINE PyObject *__BINARY_OPERATION_RSHIFT_OBJECT_INT_OBJECT
|
|
|
1266
1266
|
goto exit_binary_result_object;
|
|
1267
1267
|
}
|
|
1268
1268
|
|
|
1269
|
-
|
|
1269
|
+
Py_DECREF_IMMORTAL(x);
|
|
1270
1270
|
}
|
|
1271
1271
|
|
|
1272
1272
|
#if PYTHON_VERSION < 0x300
|
|
@@ -1562,7 +1562,7 @@ static HEDLEY_NEVER_INLINE nuitka_bool __BINARY_OPERATION_RSHIFT_NBOOL_OBJECT_IN
|
|
|
1562
1562
|
goto exit_binary_result_object;
|
|
1563
1563
|
}
|
|
1564
1564
|
|
|
1565
|
-
|
|
1565
|
+
Py_DECREF_IMMORTAL(x);
|
|
1566
1566
|
}
|
|
1567
1567
|
|
|
1568
1568
|
if (slot2 != NULL) {
|
|
@@ -1573,7 +1573,7 @@ static HEDLEY_NEVER_INLINE nuitka_bool __BINARY_OPERATION_RSHIFT_NBOOL_OBJECT_IN
|
|
|
1573
1573
|
goto exit_binary_result_object;
|
|
1574
1574
|
}
|
|
1575
1575
|
|
|
1576
|
-
|
|
1576
|
+
Py_DECREF_IMMORTAL(x);
|
|
1577
1577
|
}
|
|
1578
1578
|
|
|
1579
1579
|
#if PYTHON_VERSION < 0x300
|
|
@@ -1793,7 +1793,7 @@ static HEDLEY_NEVER_INLINE nuitka_bool __BINARY_OPERATION_RSHIFT_NBOOL_INT_OBJEC
|
|
|
1793
1793
|
goto exit_binary_result_object;
|
|
1794
1794
|
}
|
|
1795
1795
|
|
|
1796
|
-
|
|
1796
|
+
Py_DECREF_IMMORTAL(x);
|
|
1797
1797
|
slot2 = NULL;
|
|
1798
1798
|
}
|
|
1799
1799
|
}
|
|
@@ -1805,7 +1805,7 @@ static HEDLEY_NEVER_INLINE nuitka_bool __BINARY_OPERATION_RSHIFT_NBOOL_INT_OBJEC
|
|
|
1805
1805
|
goto exit_binary_result_object;
|
|
1806
1806
|
}
|
|
1807
1807
|
|
|
1808
|
-
|
|
1808
|
+
Py_DECREF_IMMORTAL(x);
|
|
1809
1809
|
}
|
|
1810
1810
|
|
|
1811
1811
|
if (slot2 != NULL) {
|
|
@@ -1816,7 +1816,7 @@ static HEDLEY_NEVER_INLINE nuitka_bool __BINARY_OPERATION_RSHIFT_NBOOL_INT_OBJEC
|
|
|
1816
1816
|
goto exit_binary_result_object;
|
|
1817
1817
|
}
|
|
1818
1818
|
|
|
1819
|
-
|
|
1819
|
+
Py_DECREF_IMMORTAL(x);
|
|
1820
1820
|
}
|
|
1821
1821
|
|
|
1822
1822
|
#if PYTHON_VERSION < 0x300
|
|
@@ -2026,7 +2026,7 @@ static PyObject *_BINARY_OPERATION_RSHIFT_OBJECT_LONG_INT(PyObject *operand1, Py
|
|
|
2026
2026
|
goto exit_binary_result_object;
|
|
2027
2027
|
}
|
|
2028
2028
|
|
|
2029
|
-
|
|
2029
|
+
Py_DECREF_IMMORTAL(x);
|
|
2030
2030
|
}
|
|
2031
2031
|
|
|
2032
2032
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -2081,7 +2081,7 @@ static PyObject *_BINARY_OPERATION_RSHIFT_OBJECT_INT_LONG(PyObject *operand1, Py
|
|
|
2081
2081
|
goto exit_binary_result_object;
|
|
2082
2082
|
}
|
|
2083
2083
|
|
|
2084
|
-
|
|
2084
|
+
Py_DECREF_IMMORTAL(x);
|
|
2085
2085
|
}
|
|
2086
2086
|
|
|
2087
2087
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -2130,7 +2130,7 @@ static nuitka_bool _BINARY_OPERATION_RSHIFT_NBOOL_LONG_INT(PyObject *operand1, P
|
|
|
2130
2130
|
goto exit_binary_result_object;
|
|
2131
2131
|
}
|
|
2132
2132
|
|
|
2133
|
-
|
|
2133
|
+
Py_DECREF_IMMORTAL(x);
|
|
2134
2134
|
}
|
|
2135
2135
|
|
|
2136
2136
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -2193,7 +2193,7 @@ static nuitka_bool _BINARY_OPERATION_RSHIFT_NBOOL_INT_LONG(PyObject *operand1, P
|
|
|
2193
2193
|
goto exit_binary_result_object;
|
|
2194
2194
|
}
|
|
2195
2195
|
|
|
2196
|
-
|
|
2196
|
+
Py_DECREF_IMMORTAL(x);
|
|
2197
2197
|
}
|
|
2198
2198
|
|
|
2199
2199
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -2338,7 +2338,7 @@ static PyObject *_BINARY_OPERATION_RSHIFT_OBJECT_OBJECT_OBJECT(PyObject *operand
|
|
|
2338
2338
|
goto exit_binary_result_object;
|
|
2339
2339
|
}
|
|
2340
2340
|
|
|
2341
|
-
|
|
2341
|
+
Py_DECREF_IMMORTAL(x);
|
|
2342
2342
|
slot2 = NULL;
|
|
2343
2343
|
}
|
|
2344
2344
|
}
|
|
@@ -2350,7 +2350,7 @@ static PyObject *_BINARY_OPERATION_RSHIFT_OBJECT_OBJECT_OBJECT(PyObject *operand
|
|
|
2350
2350
|
goto exit_binary_result_object;
|
|
2351
2351
|
}
|
|
2352
2352
|
|
|
2353
|
-
|
|
2353
|
+
Py_DECREF_IMMORTAL(x);
|
|
2354
2354
|
}
|
|
2355
2355
|
|
|
2356
2356
|
if (slot2 != NULL) {
|
|
@@ -2361,7 +2361,7 @@ static PyObject *_BINARY_OPERATION_RSHIFT_OBJECT_OBJECT_OBJECT(PyObject *operand
|
|
|
2361
2361
|
goto exit_binary_result_object;
|
|
2362
2362
|
}
|
|
2363
2363
|
|
|
2364
|
-
|
|
2364
|
+
Py_DECREF_IMMORTAL(x);
|
|
2365
2365
|
}
|
|
2366
2366
|
|
|
2367
2367
|
#if PYTHON_VERSION < 0x300
|
|
@@ -2567,7 +2567,7 @@ static nuitka_bool _BINARY_OPERATION_RSHIFT_NBOOL_OBJECT_OBJECT(PyObject *operan
|
|
|
2567
2567
|
goto exit_binary_result_object;
|
|
2568
2568
|
}
|
|
2569
2569
|
|
|
2570
|
-
|
|
2570
|
+
Py_DECREF_IMMORTAL(x);
|
|
2571
2571
|
slot2 = NULL;
|
|
2572
2572
|
}
|
|
2573
2573
|
}
|
|
@@ -2579,7 +2579,7 @@ static nuitka_bool _BINARY_OPERATION_RSHIFT_NBOOL_OBJECT_OBJECT(PyObject *operan
|
|
|
2579
2579
|
goto exit_binary_result_object;
|
|
2580
2580
|
}
|
|
2581
2581
|
|
|
2582
|
-
|
|
2582
|
+
Py_DECREF_IMMORTAL(x);
|
|
2583
2583
|
}
|
|
2584
2584
|
|
|
2585
2585
|
if (slot2 != NULL) {
|
|
@@ -2590,7 +2590,7 @@ static nuitka_bool _BINARY_OPERATION_RSHIFT_NBOOL_OBJECT_OBJECT(PyObject *operan
|
|
|
2590
2590
|
goto exit_binary_result_object;
|
|
2591
2591
|
}
|
|
2592
2592
|
|
|
2593
|
-
|
|
2593
|
+
Py_DECREF_IMMORTAL(x);
|
|
2594
2594
|
}
|
|
2595
2595
|
|
|
2596
2596
|
#if PYTHON_VERSION < 0x300
|