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

Function PyMapping_DelItemString

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

Source from the content-addressed store, hash-verified

271
272#[inline]
273pub unsafe fn PyMapping_DelItemString(o: *mut PyObject, key: *mut c_char) -> c_int {
274 PyObject_DelItemString(o, key)
275}
276
277#[inline]
278pub 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