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

Function PyMapping_DelItemString

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

Source from the content-addressed store, hash-verified

238
239#[inline]
240pub unsafe fn PyMapping_DelItemString(o: *mut PyObject, key: *mut c_char) -> c_int {
241 PyObject_DelItemString(o, key)
242}
243
244#[inline]
245pub unsafe fn PyMapping_DelItem(o: *mut PyObject, key: *mut PyObject) -> c_int {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected