Skip to content

Commit b59a1ee

Browse files
committed
Merge branch 'hy/fix_issue_134163' of https://github.com/yihong0618/cpython into hy/fix_issue_134163
2 parents 4cd38e8 + 06eb1d5 commit b59a1ee

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Python/ceval.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -912,8 +912,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
912912
int frame_lasti = _PyInterpreterFrame_LASTI(frame);
913913
PyObject *lasti = PyLong_FromLong(frame_lasti);
914914
if (lasti == NULL) {
915-
// gh-134163
916-
// If we can't allocate memory for lasti during exception handling,
915+
// gh-134163: If we can't allocate memory for lasti during exception handling,
917916
// this likely means we're in a severe memory shortage situation.
918917
// Instead of going back to exception_unwind (which would cause
919918
// infinite recursion), directly exit to let the original exception

0 commit comments

Comments
 (0)