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

Function PyMapping_Length

python3-sys/src/objectabstract.rs:235–237  ·  view source on GitHub ↗
(o: *mut PyObject)

Source from the content-addressed store, hash-verified

233
234#[inline]
235pub unsafe fn PyMapping_Length(o: *mut PyObject) -> Py_ssize_t {
236 PyMapping_Size(o)
237}
238
239#[inline]
240pub unsafe fn PyMapping_DelItemString(o: *mut PyObject, key: *mut c_char) -> c_int {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected