pyo3-ffi 0.29.0

Python-API bindings for the PyO3 ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::object::PyObject;
use core::ffi::c_int;

extern_libpython! {
    pub fn PyErr_WarnExplicitObject(
        category: *mut PyObject,
        message: *mut PyObject,
        filename: *mut PyObject,
        lineno: c_int,
        module: *mut PyObject,
        registry: *mut PyObject,
    ) -> c_int;
}