[go: up one dir, main page]

pyo3 0.3.2

Bindings to Python interpreter
1
2
3
4
5
6
// This header is new in Python 3.6
use ffi3::object::PyObject;

#[cfg_attr(windows, link(name="pythonXY"))] extern "C" {
    pub fn PyOS_FSPath(path: *mut PyObject) -> *mut PyObject;
}