(callable: *mut PyObject, arg: *mut PyObject)
| 16 | #[inline] |
| 17 | #[deprecated(since = "0.5.2", note = "Deprecated since Python 3.9")] |
| 18 | pub 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"))] |
| 24 | extern "C" { |
nothing calls this directly
no outgoing calls
no test coverage detected