(&self)
| 417 | } |
| 418 | |
| 419 | pub fn source_path(&self) -> &'static PyStrInterned { |
| 420 | // SAFETY: always points to a valid &'static PyStrInterned (interned strings are never deallocated) |
| 421 | unsafe { &*self.source_path.load(Ordering::Relaxed) } |
| 422 | } |
| 423 | |
| 424 | pub fn set_source_path(&self, new: &'static PyStrInterned) { |
| 425 | self.source_path.store( |
no test coverage detected