Staging
v0.5.1
Revision 6f8c8320e9eac9bc7a7f653b43506e75916ce8e8 authored by Łukasz Langa on 13 May 2020, 17:31:54 UTC, committed by Łukasz Langa on 13 May 2020, 17:31:54 UTC
1 parent a63c611
Raw File
osmodule.h

/* os module interface */

#ifndef Py_OSMODULE_H
#define Py_OSMODULE_H
#ifdef __cplusplus
extern "C" {
#endif

#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03060000
PyAPI_FUNC(PyObject *) PyOS_FSPath(PyObject *path);
#endif

#ifdef __cplusplus
}
#endif
#endif /* !Py_OSMODULE_H */
back to top