summaryrefslogtreecommitdiffstats
path: root/Python/executor_cases.c.h
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2025-03-27 08:32:45 (GMT)
committerGitHub <noreply@github.com>2025-03-27 08:32:45 (GMT)
commitd836d287a7bd1392f6d011888a7469854b0f4325 (patch)
tree8c4583a9c077b4e25dd495021c48a518be093afa /Python/executor_cases.c.h
parent316938bddf1d321234debecc4561d8f5cd6403a0 (diff)
downloadcpython-d836d287a7bd1392f6d011888a7469854b0f4325.zip
cpython-d836d287a7bd1392f6d011888a7469854b0f4325.tar.gz
cpython-d836d287a7bd1392f6d011888a7469854b0f4325.tar.bz2
GH-131729: Consider in-memory state when merging storage and stack (GH-131773)
Diffstat (limited to 'Python/executor_cases.c.h')
-rw-r--r--Python/executor_cases.c.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Python/executor_cases.c.h b/Python/executor_cases.c.h
index 6d5f3dd..b3c32c5 100644
--- a/Python/executor_cases.c.h
+++ b/Python/executor_cases.c.h
@@ -3933,6 +3933,7 @@
PyStackRef_CLOSE(tmp);
stack_pointer = _PyFrame_GetStackPointer(frame);
}
+ stack_pointer[-1] = b;
break;
}
@@ -4116,6 +4117,7 @@
stack_pointer = _PyFrame_GetStackPointer(frame);
}
}
+ stack_pointer[-1] = iter;
break;
}