pub fn run_with_gil<R, F: FnOnce() -> R>(f: F) -> RAvailable on crate feature
object only.Expand description
Run the given function while holding the GIL.
This is sometimes used to avoid the overhead of repeatedly releasing and acquiring the GIL.