From 2fc22e95bbd5ce0f73124263d8574513853cd8b4 Mon Sep 17 00:00:00 2001 From: Nathan Goldbaum Date: Fri, 13 Dec 2024 10:20:55 -0700 Subject: [PATCH] Update guide/src/free-threading.md Co-authored-by: Bruno Kolenbrander <59372212+mejrs@users.noreply.github.com> --- guide/src/free-threading.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/src/free-threading.md b/guide/src/free-threading.md index 7179c9e08fb..d6d406a9a25 100644 --- a/guide/src/free-threading.md +++ b/guide/src/free-threading.md @@ -163,7 +163,7 @@ function. Threads created via the Python [`threading`] module do not not need to do this, and pyo3 will handle setting up the [`Python<'py>`] token when CPython calls into your extension, but all other OS threads that interact with the Python runtime must explicitly attach using `with_gil` and obtain a `'py` -liftime. +lifetime. ### Global synchronization events can cause hangs and deadlocks