https://github.com/python/cpython
Raw File
Tip revision: 40d77b93672406d1c6e80760fec1321cb1b3473a authored by jkriegshauser on 27 March 2024, 15:24:46 UTC
[3.9] gh-116773: Fix overlapped memory corruption crash (GH-116774) (GH-117080)
Tip revision: 40d77b9
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