(o: *mut PyObject, key: *mut PyObject)
| 276 | |
| 277 | #[inline] |
| 278 | pub unsafe fn PyMapping_DelItem(o: *mut PyObject, key: *mut PyObject) -> c_int { |
| 279 | PyObject_DelItem(o, key) |
| 280 | } |
| 281 | |
| 282 | #[inline] |
| 283 | pub unsafe fn PyMapping_Keys(o: *mut PyObject) -> *mut PyObject { |
nothing calls this directly
no outgoing calls
no test coverage detected