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

Commit 2fadd97

Browse files
author
Anselm Kruis
committed
Stackless issue #254: bpo-36710: Add tstate parameter in ceval.c
Adapt Stackless to upstream commit 438a12d. Add missing "tstate" parameters.
1 parent 87ecb52 commit 2fadd97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/ceval.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,7 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
700700
(!((x) >> 24) ? 2 : 3 ))))
701701
#ifdef LLTRACE
702702
#define LLTRACE_HANDLE_UNWINDING(obj__, msg__) \
703-
(void)(lltrace && prtrace((obj__), (msg__)))
703+
(void)(lltrace && prtrace(tstate, (obj__), (msg__)))
704704
#else
705705
#define LLTRACE_HANDLE_UNWINDING(obj__, msg__) (void)1
706706
#endif

0 commit comments

Comments
 (0)