(
&self,
s: &S,
)
| 445 | } |
| 446 | |
| 447 | pub fn interned_str<S: MaybeInternedString + ?Sized>( |
| 448 | &self, |
| 449 | s: &S, |
| 450 | ) -> Option<&'static PyStrInterned> { |
| 451 | self.string_pool.interned(s) |
| 452 | } |
| 453 | |
| 454 | #[inline(always)] |
| 455 | pub fn none(&self) -> PyObjectRef { |
no test coverage detected