Staging
v0.8.1
Revision 920ec4b7763d64b3742d7ddd339ad11cdbec62e9 authored by Miss Islington (bot) on 24 August 2019, 10:22:14 UTC, committed by GitHub on 24 August 2019, 10:22:14 UTC
(cherry picked from commit 05f2d84cae4ba1ff15b7a1d0347305393f4bdcc5)

Co-authored-by: Minmin Gong <gongminmin@msn.com>
1 parent 076d0b9
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