(&self, s: impl Into<PyUtf8Str>)
| 536 | |
| 537 | #[inline] |
| 538 | pub fn new_utf8_str(&self, s: impl Into<PyUtf8Str>) -> PyRef<PyUtf8Str> { |
| 539 | s.into().into_ref(self) |
| 540 | } |
| 541 | |
| 542 | pub fn interned_or_new_str<S, M>(&self, s: S) -> PyRef<PyStr> |
| 543 | where |
no test coverage detected