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

Function PyMapping_DelItem

python27-sys/src/objectabstract.rs:278–280  ·  view source on GitHub ↗
(o: *mut PyObject, key: *mut PyObject)

Source from the content-addressed store, hash-verified

276
277#[inline]
278pub unsafe fn PyMapping_DelItem(o: *mut PyObject, key: *mut PyObject) -> c_int {
279 PyObject_DelItem(o, key)
280}
281
282#[inline]
283pub unsafe fn PyMapping_Keys(o: *mut PyObject) -> *mut PyObject {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected