Staging
v0.5.1
Revision 5de00f63d47b5aa1714ad2d88772ad55b10feea0 authored by Miss Islington (bot) on 11 August 2020, 17:03:21 UTC, committed by GitHub on 11 August 2020, 17:03:21 UTC
(cherry picked from commit 76643c10ede2813ca921464fe839e81caee21a84)

Co-authored-by: Ram Rachum <ram@rachum.com>
1 parent 2146e51
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