(o: *mut PyObject, key: *mut PyObject)
| 243 | |
| 244 | #[inline] |
| 245 | pub unsafe fn PyMapping_DelItem(o: *mut PyObject, key: *mut PyObject) -> c_int { |
| 246 | PyObject_DelItem(o, key) |
| 247 | } |
| 248 | |
| 249 | #[cfg_attr(windows, link(name = "pythonXY"))] |
| 250 | extern "C" { |
nothing calls this directly
no outgoing calls
no test coverage detected