MCPcopy Create free account
hub / github.com/dgrunwald/rust-cpython / PyMapping_DelItem

Function PyMapping_DelItem

python3-sys/src/objectabstract.rs:245–247  ·  view source on GitHub ↗
(o: *mut PyObject, key: *mut PyObject)

Source from the content-addressed store, hash-verified

243
244#[inline]
245pub 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"))]
250extern "C" {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected