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

Function PyMapping_Keys

python27-sys/src/objectabstract.rs:283–285  ·  view source on GitHub ↗
(o: *mut PyObject)

Source from the content-addressed store, hash-verified

281
282#[inline]
283pub unsafe fn PyMapping_Keys(o: *mut PyObject) -> *mut PyObject {
284 PyObject_CallMethod(o, "keys\0".as_ptr() as *mut _, ptr::null_mut())
285}
286
287#[inline]
288pub unsafe fn PyMapping_Values(o: *mut PyObject) -> *mut PyObject {

Callers

nothing calls this directly

Calls 1

as_ptrMethod · 0.45

Tested by

no test coverage detected