(o: *mut PyObject, attr_name: *const c_char)
| 6 | |
| 7 | #[inline] |
| 8 | pub unsafe fn PyObject_DelAttrString(o: *mut PyObject, attr_name: *const c_char) -> c_int { |
| 9 | PyObject_SetAttrString(o, attr_name, ptr::null_mut()) |
| 10 | } |
| 11 | |
| 12 | #[inline] |
| 13 | pub unsafe fn PyObject_DelAttr(o: *mut PyObject, attr_name: *mut PyObject) -> c_int { |
nothing calls this directly
no outgoing calls
no test coverage detected