We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4aa2ff5 + 0b45135 commit 1518767Copy full SHA for 1518767
src/python.rs
@@ -42,7 +42,7 @@ pub use gil::prepare_freethreaded_python;
42
/// * Thread 1 locks a mutex
43
/// * Thread 1 makes a call into the python interpreter, which releases the GIL
44
/// * Thread 2 acquires the GIL
45
-/// * Thraed 2 tries to locks the mutex, blocks
+/// * Thread 2 tries to locks the mutex, blocks
46
/// * Thread 1's python interpreter call blocks trying to reacquire the GIL held by thread 2
47
///
48
/// To avoid deadlocking, you should release the GIL before trying to lock a mutex, e.g. with
0 commit comments