(&mut self)
| 103 | /// The Drop implementation for GILGuard will release the GIL. |
| 104 | impl Drop for GILGuard { |
| 105 | fn drop(&mut self) { |
| 106 | unsafe { ffi::PyGILState_Release(self.gstate) } |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | impl GILGuard { |
nothing calls this directly
no outgoing calls
no test coverage detected