https://github.com/python/cpython
Raw File
Tip revision: 6de2ca5339a83edb957e5a657ee6d6183cb3914c authored by Ɓukasz Langa on 17 May 2022, 11:12:56 UTC
Python 3.9.13
Tip revision: 6de2ca5
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