(&self)
| 126 | /// threads exist. |
| 127 | #[cfg(all(unix, feature = "threading"))] |
| 128 | unsafe fn reinit_stats_after_fork(&self) { |
| 129 | unsafe { crate::common::lock::reinit_mutex_after_fork(&self.stats) }; |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | /// Wrapper for NonNull<PyObject> to impl Hash/Eq for use in temporary collection sets. |
no test coverage detected