Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit fe2a865

Browse files
Anselm KruisAnselm Kruis
Anselm Kruis
authored and
Anselm Kruis
committed
Stackless issue #187: add a missing semicolon
It breaks release builds but not debug builds.
1 parent cb1c4ea commit fe2a865

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/ceval.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3432,7 +3432,7 @@ _PyEval_EvalFrameDefault(PyFrameObject *f, int throwflag)
34323432
if (STACKLESS_UNWINDING(result)) {
34333433
(void) POP(); /* top of stack causes a GC related assertion error */
34343434
HANDLE_UNWINDING(NULL, 0, result);
3435-
PUSH(result)
3435+
PUSH(result);
34363436
} else
34373437
#endif
34383438
SET_TOP(result);

0 commit comments

Comments
 (0)