1 2 3 4 5 6 7
// This header is new in Python 3.6
use crate::object::PyObject;
#[cfg_attr(windows, link(name = "pythonXY"))]
extern "C" {
pub fn PyOS_FSPath(path: *mut PyObject) -> *mut PyObject;
}
1 2 3 4 5 6 7
// This header is new in Python 3.6
use crate::object::PyObject;
#[cfg_attr(windows, link(name = "pythonXY"))]
extern "C" {
pub fn PyOS_FSPath(path: *mut PyObject) -> *mut PyObject;
}