Staging
v0.5.1
Revision e8a2076e149703ea043db5a9dfaaf8d9b7f37c3e authored by Andre Delfino on 27 September 2020, 00:47:25 UTC, committed by GitHub on 27 September 2020, 00:47:25 UTC
This commit reverts commit ac0333e1e117b7f61ed7ef1dbcdb6e515ada603b as the original links are working again and they provide extended features such as comments and alternative versions.
1 parent 2afd175
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