pyo3-ffi 0.28.3

Python-API bindings for the PyO3 ecosystem
Documentation
1
2
3
4
5
6
use crate::object::PyObject;

extern "C" {
    #[cfg_attr(PyPy, link_name = "PyPyOS_FSPath")]
    pub fn PyOS_FSPath(path: *mut PyObject) -> *mut PyObject;
}