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

Function PyEval_CallObject

python3-sys/src/ceval.rs:18–21  ·  view source on GitHub ↗
(callable: *mut PyObject, arg: *mut PyObject)

Source from the content-addressed store, hash-verified

16#[inline]
17#[deprecated(since = "0.5.2", note = "Deprecated since Python 3.9")]
18pub unsafe fn PyEval_CallObject(callable: *mut PyObject, arg: *mut PyObject) -> *mut PyObject {
19 #[allow(deprecated)]
20 PyEval_CallObjectWithKeywords(callable, arg, core::ptr::null_mut())
21}
22
23#[cfg_attr(windows, link(name = "pythonXY"))]
24extern "C" {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected