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
|
@@ -80,7 +80,7 @@ static HEDLEY_NEVER_INLINE bool __INPLACE_OPERATION_LSHIFT_OBJECT_LONG(PyObject
|
|
|
80
80
|
goto exit_inplace_result_object;
|
|
81
81
|
}
|
|
82
82
|
|
|
83
|
-
|
|
83
|
+
Py_DECREF_IMMORTAL(x);
|
|
84
84
|
}
|
|
85
85
|
|
|
86
86
|
{
|
|
@@ -106,7 +106,7 @@ static HEDLEY_NEVER_INLINE bool __INPLACE_OPERATION_LSHIFT_OBJECT_LONG(PyObject
|
|
|
106
106
|
goto exit_inplace_result_object;
|
|
107
107
|
}
|
|
108
108
|
|
|
109
|
-
|
|
109
|
+
Py_DECREF_IMMORTAL(x);
|
|
110
110
|
}
|
|
111
111
|
|
|
112
112
|
if (slot2 != NULL) {
|
|
@@ -117,7 +117,7 @@ static HEDLEY_NEVER_INLINE bool __INPLACE_OPERATION_LSHIFT_OBJECT_LONG(PyObject
|
|
|
117
117
|
goto exit_inplace_result_object;
|
|
118
118
|
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
Py_DECREF_IMMORTAL(x);
|
|
121
121
|
}
|
|
122
122
|
|
|
123
123
|
#if PYTHON_VERSION < 0x300
|
|
@@ -312,7 +312,7 @@ static HEDLEY_NEVER_INLINE bool __INPLACE_OPERATION_LSHIFT_LONG_OBJECT(PyObject
|
|
|
312
312
|
goto exit_inplace_result_object;
|
|
313
313
|
}
|
|
314
314
|
|
|
315
|
-
|
|
315
|
+
Py_DECREF_IMMORTAL(x);
|
|
316
316
|
slot2 = NULL;
|
|
317
317
|
}
|
|
318
318
|
}
|
|
@@ -324,7 +324,7 @@ static HEDLEY_NEVER_INLINE bool __INPLACE_OPERATION_LSHIFT_LONG_OBJECT(PyObject
|
|
|
324
324
|
goto exit_inplace_result_object;
|
|
325
325
|
}
|
|
326
326
|
|
|
327
|
-
|
|
327
|
+
Py_DECREF_IMMORTAL(x);
|
|
328
328
|
}
|
|
329
329
|
|
|
330
330
|
if (slot2 != NULL) {
|
|
@@ -335,7 +335,7 @@ static HEDLEY_NEVER_INLINE bool __INPLACE_OPERATION_LSHIFT_LONG_OBJECT(PyObject
|
|
|
335
335
|
goto exit_inplace_result_object;
|
|
336
336
|
}
|
|
337
337
|
|
|
338
|
-
|
|
338
|
+
Py_DECREF_IMMORTAL(x);
|
|
339
339
|
}
|
|
340
340
|
|
|
341
341
|
#if PYTHON_VERSION < 0x300
|
|
@@ -623,7 +623,7 @@ static HEDLEY_NEVER_INLINE bool __INPLACE_OPERATION_LSHIFT_OBJECT_INT(PyObject *
|
|
|
623
623
|
goto exit_inplace_result_object;
|
|
624
624
|
}
|
|
625
625
|
|
|
626
|
-
|
|
626
|
+
Py_DECREF_IMMORTAL(x);
|
|
627
627
|
}
|
|
628
628
|
|
|
629
629
|
{
|
|
@@ -649,7 +649,7 @@ static HEDLEY_NEVER_INLINE bool __INPLACE_OPERATION_LSHIFT_OBJECT_INT(PyObject *
|
|
|
649
649
|
goto exit_inplace_result_object;
|
|
650
650
|
}
|
|
651
651
|
|
|
652
|
-
|
|
652
|
+
Py_DECREF_IMMORTAL(x);
|
|
653
653
|
}
|
|
654
654
|
|
|
655
655
|
if (slot2 != NULL) {
|
|
@@ -660,7 +660,7 @@ static HEDLEY_NEVER_INLINE bool __INPLACE_OPERATION_LSHIFT_OBJECT_INT(PyObject *
|
|
|
660
660
|
goto exit_inplace_result_object;
|
|
661
661
|
}
|
|
662
662
|
|
|
663
|
-
|
|
663
|
+
Py_DECREF_IMMORTAL(x);
|
|
664
664
|
}
|
|
665
665
|
|
|
666
666
|
#if PYTHON_VERSION < 0x300
|
|
@@ -913,7 +913,7 @@ static HEDLEY_NEVER_INLINE bool __INPLACE_OPERATION_LSHIFT_INT_OBJECT(PyObject *
|
|
|
913
913
|
goto exit_inplace_result_object;
|
|
914
914
|
}
|
|
915
915
|
|
|
916
|
-
|
|
916
|
+
Py_DECREF_IMMORTAL(x);
|
|
917
917
|
slot2 = NULL;
|
|
918
918
|
}
|
|
919
919
|
}
|
|
@@ -925,7 +925,7 @@ static HEDLEY_NEVER_INLINE bool __INPLACE_OPERATION_LSHIFT_INT_OBJECT(PyObject *
|
|
|
925
925
|
goto exit_inplace_result_object;
|
|
926
926
|
}
|
|
927
927
|
|
|
928
|
-
|
|
928
|
+
Py_DECREF_IMMORTAL(x);
|
|
929
929
|
}
|
|
930
930
|
|
|
931
931
|
if (slot2 != NULL) {
|
|
@@ -936,7 +936,7 @@ static HEDLEY_NEVER_INLINE bool __INPLACE_OPERATION_LSHIFT_INT_OBJECT(PyObject *
|
|
|
936
936
|
goto exit_inplace_result_object;
|
|
937
937
|
}
|
|
938
938
|
|
|
939
|
-
|
|
939
|
+
Py_DECREF_IMMORTAL(x);
|
|
940
940
|
}
|
|
941
941
|
|
|
942
942
|
#if PYTHON_VERSION < 0x300
|
|
@@ -1181,7 +1181,7 @@ static inline bool _INPLACE_OPERATION_LSHIFT_LONG_INT(PyObject **operand1, PyObj
|
|
|
1181
1181
|
goto exit_inplace_result_object;
|
|
1182
1182
|
}
|
|
1183
1183
|
|
|
1184
|
-
|
|
1184
|
+
Py_DECREF_IMMORTAL(x);
|
|
1185
1185
|
}
|
|
1186
1186
|
|
|
1187
1187
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -1253,7 +1253,7 @@ static inline bool _INPLACE_OPERATION_LSHIFT_INT_LONG(PyObject **operand1, PyObj
|
|
|
1253
1253
|
goto exit_inplace_result_object;
|
|
1254
1254
|
}
|
|
1255
1255
|
|
|
1256
|
-
|
|
1256
|
+
Py_DECREF_IMMORTAL(x);
|
|
1257
1257
|
}
|
|
1258
1258
|
|
|
1259
1259
|
// Statically recognized that coercion is not possible with these types
|
|
@@ -1421,7 +1421,7 @@ static inline bool _INPLACE_OPERATION_LSHIFT_OBJECT_OBJECT(PyObject **operand1,
|
|
|
1421
1421
|
goto exit_inplace_result_object;
|
|
1422
1422
|
}
|
|
1423
1423
|
|
|
1424
|
-
|
|
1424
|
+
Py_DECREF_IMMORTAL(x);
|
|
1425
1425
|
}
|
|
1426
1426
|
|
|
1427
1427
|
{
|
|
@@ -1450,7 +1450,7 @@ static inline bool _INPLACE_OPERATION_LSHIFT_OBJECT_OBJECT(PyObject **operand1,
|
|
|
1450
1450
|
goto exit_inplace_result_object;
|
|
1451
1451
|
}
|
|
1452
1452
|
|
|
1453
|
-
|
|
1453
|
+
Py_DECREF_IMMORTAL(x);
|
|
1454
1454
|
slot2 = NULL;
|
|
1455
1455
|
}
|
|
1456
1456
|
}
|
|
@@ -1462,7 +1462,7 @@ static inline bool _INPLACE_OPERATION_LSHIFT_OBJECT_OBJECT(PyObject **operand1,
|
|
|
1462
1462
|
goto exit_inplace_result_object;
|
|
1463
1463
|
}
|
|
1464
1464
|
|
|
1465
|
-
|
|
1465
|
+
Py_DECREF_IMMORTAL(x);
|
|
1466
1466
|
}
|
|
1467
1467
|
|
|
1468
1468
|
if (slot2 != NULL) {
|
|
@@ -1473,7 +1473,7 @@ static inline bool _INPLACE_OPERATION_LSHIFT_OBJECT_OBJECT(PyObject **operand1,
|
|
|
1473
1473
|
goto exit_inplace_result_object;
|
|
1474
1474
|
}
|
|
1475
1475
|
|
|
1476
|
-
|
|
1476
|
+
Py_DECREF_IMMORTAL(x);
|
|
1477
1477
|
}
|
|
1478
1478
|
|
|
1479
1479
|
#if PYTHON_VERSION < 0x300
|
|
@@ -85,7 +85,7 @@ static inline bool _INPLACE_OPERATION_MATMULT_OBJECT_LONG(PyObject **operand1, P
|
|
|
85
85
|
goto exit_inplace_result_object;
|
|
86
86
|
}
|
|
87
87
|
|
|
88
|
-
|
|
88
|
+
Py_DECREF_IMMORTAL(x);
|
|
89
89
|
}
|
|
90
90
|
|
|
91
91
|
{
|
|
@@ -101,7 +101,7 @@ static inline bool _INPLACE_OPERATION_MATMULT_OBJECT_LONG(PyObject **operand1, P
|
|
|
101
101
|
goto exit_inplace_result_object;
|
|
102
102
|
}
|
|
103
103
|
|
|
104
|
-
|
|
104
|
+
Py_DECREF_IMMORTAL(x);
|
|
105
105
|
}
|
|
106
106
|
|
|
107
107
|
// Statically recognized that coercion is not possible with Python3 only operator '@'
|
|
@@ -179,7 +179,7 @@ static inline bool _INPLACE_OPERATION_MATMULT_LONG_OBJECT(PyObject **operand1, P
|
|
|
179
179
|
goto exit_inplace_result_object;
|
|
180
180
|
}
|
|
181
181
|
|
|
182
|
-
|
|
182
|
+
Py_DECREF_IMMORTAL(x);
|
|
183
183
|
}
|
|
184
184
|
|
|
185
185
|
// Statically recognized that coercion is not possible with Python3 only operator '@'
|
|
@@ -287,7 +287,7 @@ static inline bool _INPLACE_OPERATION_MATMULT_OBJECT_FLOAT(PyObject **operand1,
|
|
|
287
287
|
goto exit_inplace_result_object;
|
|
288
288
|
}
|
|
289
289
|
|
|
290
|
-
|
|
290
|
+
Py_DECREF_IMMORTAL(x);
|
|
291
291
|
}
|
|
292
292
|
|
|
293
293
|
{
|
|
@@ -303,7 +303,7 @@ static inline bool _INPLACE_OPERATION_MATMULT_OBJECT_FLOAT(PyObject **operand1,
|
|
|
303
303
|
goto exit_inplace_result_object;
|
|
304
304
|
}
|
|
305
305
|
|
|
306
|
-
|
|
306
|
+
Py_DECREF_IMMORTAL(x);
|
|
307
307
|
}
|
|
308
308
|
|
|
309
309
|
// Statically recognized that coercion is not possible with Python3 only operator '@'
|
|
@@ -377,7 +377,7 @@ static inline bool _INPLACE_OPERATION_MATMULT_FLOAT_OBJECT(PyObject **operand1,
|
|
|
377
377
|
goto exit_inplace_result_object;
|
|
378
378
|
}
|
|
379
379
|
|
|
380
|
-
|
|
380
|
+
Py_DECREF_IMMORTAL(x);
|
|
381
381
|
}
|
|
382
382
|
|
|
383
383
|
// Statically recognized that coercion is not possible with Python3 only operator '@'
|
|
@@ -499,7 +499,7 @@ static inline bool _INPLACE_OPERATION_MATMULT_OBJECT_OBJECT(PyObject **operand1,
|
|
|
499
499
|
goto exit_inplace_result_object;
|
|
500
500
|
}
|
|
501
501
|
|
|
502
|
-
|
|
502
|
+
Py_DECREF_IMMORTAL(x);
|
|
503
503
|
}
|
|
504
504
|
|
|
505
505
|
{
|
|
@@ -530,7 +530,7 @@ static inline bool _INPLACE_OPERATION_MATMULT_OBJECT_OBJECT(PyObject **operand1,
|
|
|
530
530
|
goto exit_inplace_result_object;
|
|
531
531
|
}
|
|
532
532
|
|
|
533
|
-
|
|
533
|
+
Py_DECREF_IMMORTAL(x);
|
|
534
534
|
slot2 = NULL;
|
|
535
535
|
}
|
|
536
536
|
}
|
|
@@ -542,7 +542,7 @@ static inline bool _INPLACE_OPERATION_MATMULT_OBJECT_OBJECT(PyObject **operand1,
|
|
|
542
542
|
goto exit_inplace_result_object;
|
|
543
543
|
}
|
|
544
544
|
|
|
545
|
-
|
|
545
|
+
Py_DECREF_IMMORTAL(x);
|
|
546
546
|
}
|
|
547
547
|
|
|
548
548
|
if (slot2 != NULL) {
|
|
@@ -553,7 +553,7 @@ static inline bool _INPLACE_OPERATION_MATMULT_OBJECT_OBJECT(PyObject **operand1,
|
|
|
553
553
|
goto exit_inplace_result_object;
|
|
554
554
|
}
|
|
555
555
|
|
|
556
|
-
|
|
556
|
+
Py_DECREF_IMMORTAL(x);
|
|
557
557
|
}
|
|
558
558
|
|
|
559
559
|
// Statically recognized that coercion is not possible with Python3 only operator '@'
|