(&self, obj: &PyObject, format_spec: PyStrRef)
| 575 | }) |
| 576 | } |
| 577 | pub fn format_utf8(&self, obj: &PyObject, format_spec: PyStrRef) -> PyResult<PyRef<PyUtf8Str>> { |
| 578 | self.format(obj, format_spec)?.try_into_utf8(self) |
| 579 | } |
| 580 | |
| 581 | pub fn _contains(&self, haystack: &PyObject, needle: &PyObject) -> PyResult<bool> { |
| 582 | let seq = haystack.sequence_unchecked(); |
nothing calls this directly
no test coverage detected