(o: *mut PyObject)
| 233 | |
| 234 | #[inline] |
| 235 | pub unsafe fn PyMapping_Length(o: *mut PyObject) -> Py_ssize_t { |
| 236 | PyMapping_Size(o) |
| 237 | } |
| 238 | |
| 239 | #[inline] |
| 240 | pub unsafe fn PyMapping_DelItemString(o: *mut PyObject, key: *mut c_char) -> c_int { |
nothing calls this directly
no outgoing calls
no test coverage detected