(&self, py: Python, key: PyBackedStr)
| 179 | |
| 180 | #[inline] |
| 181 | fn __contains__(&self, py: Python, key: PyBackedStr) -> bool { |
| 182 | self.contains_key(py, key) |
| 183 | } |
| 184 | |
| 185 | #[inline] |
| 186 | fn __len__(&self) -> usize { |
nothing calls this directly
no test coverage detected