We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8559fb8 commit 7bfdedbCopy full SHA for 7bfdedb
Python/bytecodes.c
@@ -801,6 +801,8 @@ dummy_func(
801
STAT_INC(BINARY_OP, hit);
802
double dres = ((PyFloatObject *)left_o)->ob_fval + ((PyFloatObject *)right_o)->ob_fval;
803
((PyFloatObject *)left_o)->ob_fval = dres;
804
+ // Transfer ownership of left to res.
805
+ // Original left is now dead.
806
res = left;
807
l = PyStackRef_NULL;
808
r = right;
0 commit comments