python3_sys/
osmodule.rs

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