()
| 227 | /// See [prepare_freethreaded_python()](fn.prepare_freethreaded_python.html) for details. |
| 228 | #[inline] |
| 229 | pub fn acquire_gil() -> GILGuard { |
| 230 | GILGuard::acquire() |
| 231 | } |
| 232 | |
| 233 | /// Temporarily releases the GIL, thus allowing other Python threads to run. |
| 234 | pub fn allow_threads<T, F>(self, f: F) -> T |
nothing calls this directly
no outgoing calls
no test coverage detected